litex/examples/de0_nano/Makefile

14 lines
169 B
Makefile
Raw Normal View History

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:
./build.py
load:
cd build && quartus_pgm -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