litex/examples/de0_nano/Makefile

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