litex/examples/de0_nano/Makefile

19 lines
342 B
Makefile
Raw Normal View History

2012-09-09 15:18:09 -04:00
PYTHON=
all: build/soc.map
# We need to change to the build directory because the Quartus tools
# tend to dump a mess of various files in the current directory.
build/soc.qsf:
$(PYTHON) build.py
build/soc.map: build/soc.qsf
2012-09-09 16:32:09 -04:00
cp soc.qpf build/de0_nano.qpf
cd build && quartus_map de0_nano.qpf
2012-09-09 15:18:09 -04:00
clean:
rm -rf build/*
.PHONY: load clean