litex/examples/de0_nano/Makefile
2012-09-09 21:18:09 +02:00

18 lines
332 B
Makefile

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
cp soc.qpf build/soc.qpf
cd build && quartus_map soc.qpf
clean:
rm -rf build/*
.PHONY: load clean