mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-15 16:43:09 +02:00
11 lines
148 B
Makefile
11 lines
148 B
Makefile
.PHONY: boot clean
|
|
|
|
boot: boot.jtag boot.bit
|
|
jtag boot.jtag
|
|
|
|
boot.bit: mkboot
|
|
./mkboot >$@ || { rm -rf $@; exit 1; }
|
|
|
|
clean:
|
|
rm -f boot.bit
|