diff options
author | James McKenzie <james.mckenzie@hp.com> | 2023-05-02 12:22:04 +0100 |
---|---|---|
committer | James McKenzie <james.mckenzie@hp.com> | 2023-05-02 12:22:04 +0100 |
commit | 58bd38ccfd0cde824830a93e309e4f9d8d29ed27 (patch) | |
tree | 66d1155f801076ef772368a9eef32a9be8bf41df /src/vhdl-demo/Makefile | |
parent | 605179b018fd2d562716cb1880bdc22a441c815d (diff) | |
download | tim_ac3rf_fpga_kit-master.tar.gz tim_ac3rf_fpga_kit-master.tar.bz2 tim_ac3rf_fpga_kit-master.zip |
Diffstat (limited to 'src/vhdl-demo/Makefile')
-rw-r--r-- | src/vhdl-demo/Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/vhdl-demo/Makefile b/src/vhdl-demo/Makefile new file mode 100644 index 0000000..8a68e1f --- /dev/null +++ b/src/vhdl-demo/Makefile @@ -0,0 +1,45 @@ +PREFIX=../.. +BINDIR=${PREFIX}/bin + +YOSYS=${BINDIR}/yosys +NEXTPNR=${BINDIR}/nextpnr-ice40 +ICEPACK=${BINDIR}/icepack +ICETIME=${BINDIR}/icetime +FLASH=${BINDIR}/flash +GHDL=${BINDIR}/ghdl + +BUILDDIR = ./build +FPGA_TYPE = hx8k +FPGA_PKG = ct256 +PCF = ice40hx8k-evb.pcf +RMDIR = rmdir + +# Targets +top: $(BUILDDIR)/top.rpt $(BUILDDIR)/top.bin + +flash: $(BUILDDIR)/top.bin + ${FLASH} $(BUILDDIR)/top.bin + +$(BUILDDIR)/%.json: %.vhd + @mkdir -p $(@D) + ${YOSYS} -m ghdl -ql $(subst .json,,$@).log -p 'ghdl $< -e ${<:%.vhd=%}; synth_ice40 -abc9 -device u -top top -json $@' + +%.asc: %.json + ${NEXTPNR} --${FPGA_TYPE} --package ${FPGA_PKG} --json $< --pcf ${PCF} --asc $@ + +%.bin: %.asc + ${ICEPACK} $< $@ + +%.rpt: %.asc + ${ICETIME} -d $(FPGA_TYPE) -mtr $@ $< + +all: top + +clean: + rm -f $(BUILDDIR)/*.asc $(BUILDDIR)/*.bin $(BUILDDIR)/*.rpt $(BUILDDIR)/*.log $(BUILDDIR)/*.json + $(RMDIR) $(BUILDDIR) + +# Uncomment this line if you want to keep the intermediate .json and .asc files +# .PRECIOUS: $(BUILDDIR)/%.json %.asc + +.PHONY: all prog clean top |