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