litex/examples/de1/Makefile

16 lines
235 B
Makefile
Raw Normal View History

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