Rename make target to bitstream | Delete unused make stuff / tcl

This commit is contained in:
abejgonzalez
2020-11-12 15:41:05 -08:00
parent 63b3d4290f
commit d4d989ce0f
2 changed files with 2 additions and 85 deletions

View File

@@ -103,8 +103,8 @@ $(BIT_FILE): $(synth_list_f)
-ip-vivado-tcls "$(shell find '$(build_dir)' -name '*.vivado.tcl')" \
-board "$(BOARD)"
.PHONY: bit
bit: $(BIT_FILE)
.PHONY: bitstream
bitstream: $(BIT_FILE)
.PHONY: debug-bitstream
debug-bitstream: $(build_dir)/obj/post_synth.dcp
@@ -116,14 +116,6 @@ debug-bitstream: $(build_dir)/obj/post_synth.dcp
xcvu9p-flga2104-2l-e \
$(build_dir)/obj/debug_output
# Build .mcs
MCS_FILE := $(build_dir)/obj/$(MODEL).mcs
$(MCS_FILE): $(BIT_FILE)
cd $(build_dir); vivado -nojournal -mode batch -source $(fpga_common_script_dir)/write_cfgmem.tcl -tclargs $(BOARD) $@ $<
.PHONY: mcs
mcs: $(MCS_FILE)
#########################################################################################
# general cleanup rules
#########################################################################################