litex/examples/de0_nano/Makefile

16 lines
235 B
Makefile
Raw Normal View History

2013-02-28 16:40:35 -05:00
PYTHON=C:\Python32\python
2012-09-09 15:18:09 -04:00
2013-02-28 16:40:35 -05:00
all: build/top.sta
2012-09-09 15:18:09 -04:00
2013-02-28 16:40:35 -05:00
build/top.sta:
cp top.sdc build/top.sdc
2012-09-09 15:18:09 -04:00
$(PYTHON) build.py
2012-09-09 17:27:51 -04:00
load:
2013-02-28 16:40:35 -05:00
cd build && quartus_pgm.exe -m jtag -c USB-Blaster[USB-0] -o "p;top.sof"
2012-09-09 15:18:09 -04:00
clean:
rm -rf build/*
.PHONY: load clean