From dc35d064b8b3b5e1cc62d5f58a24dd4d5aa36996 Mon Sep 17 00:00:00 2001 From: bryan newbold Date: Tue, 12 Nov 2013 20:36:54 -0500 Subject: misc small improvements more aliases help target --- contrib/README | 23 +++++++++++++++++++++++ contrib/xilinx.mk | 22 +++++++++++++++++----- 2 files changed, 40 insertions(+), 5 deletions(-) create mode 100644 contrib/README diff --git a/contrib/README b/contrib/README new file mode 100644 index 0000000..55508f8 --- /dev/null +++ b/contrib/README @@ -0,0 +1,23 @@ + +make bitfiles - synths bitfiles and copies to ./bitfiles/ (DEFAULT) +make synth - compiles and synthesizes bitfiles (no copying) +make tests - runs all unittests +make lint - runs lint program on synthesizable Verilog files +make mostlyclean - cleans most sim and synth files +make clean - cleans all sim and synth files, incl. coregen'd + +make isim/_tb - compiles sim files, then launches simulator GUI +make resim/_tb - recompiles sim files w/o launching GUI +make test/_tb - runs a single unit test + +make par_timingan - launches timing GUI with most recent build results +make par_fpga_editor - launches FPGA visualizer GUI for last build (slow!) + +make coregen - launches Xilinx Coregen tool +make isim - launches Xilinx simulator GUI (no testbench loaded) +make ise - launches new Xilinx IDE GUI (no project selected) +make ise - launches Xilinx IDE GUI (no project selected) +make impact - launches Xilinx JTAG program GUI (no bitfile) +make ldimpact - launches JTAG GUI with libusb libraries selected (Linux) +make timingan - launches Xilinx timing analysis GUI + diff --git a/contrib/xilinx.mk b/contrib/xilinx.mk index 3453ccb..87fe12b 100644 --- a/contrib/xilinx.mk +++ b/contrib/xilinx.mk @@ -45,15 +45,15 @@ # These dot-targets must come first in the file .PHONY: default xilinx_cores clean twr_map twr_par ise isim simulate coregen \ impact ldimpact lint planahead partial_fpga_editor final_fpga_editor \ - partial_timing final_timing tests all + partial_timing final_timing tests all bit mcs # "PRECIOUS" files will not be deleted by make as casually .PRECIOUS: tb/%.isim # Setup default targets default: bitfiles -all: default -.DEFAULT_GOAL: default +all: bitfiles +.DEFAULT_GOAL: bitfiles # This file only works with Xilinx stuff vendor = xilinx @@ -111,8 +111,12 @@ $(2): $(1) endef $(foreach ngc,$(corengcs),$(eval $(call cp_template,$(ngc),$(notdir $(ngc))))) +# Aliases twr_map: build/$(project)_post_map.twr twr_par: build/$(project)_post_par.twr +bit: build/$(project).bit +mcs: build/$(project).mcs +synth: build/$(project).bit $(coregen_work_dir)/$(project).cgp: contrib/template.cgp @if [ -d $(coregen_work_dir) ]; then \ @@ -143,16 +147,19 @@ $(coregen_work_dir)/$(project).cgp: contrib/template.cgp cp $(coregen_work_dir)/$$basename.v $(coregen_work_dir)/$$basename.ngc $$xcodir; \ fi + timestamp = $(shell date +%F-%H%M) bitfiles: build/$(project).bit build/$(project).mcs - @mkdir -p $@/$(timestamp) - @mkdir -p $@/latest + @mkdir -p $@/$(timestamp)/logs + @mkdir -p $@/latest/logs @# NB: _bd.bmm was listed below in the past... @for x in .bit .mcs .cfi _par.ncd _post_par.twr _post_par.twx; do \ cp build/$(project)$$x $@/$(timestamp)/$(project)$$x || true; \ cp build/$(project)$$x $@/latest/$(project)$$x || true; \ done + @cp -R build/$(project)/__xmsgs $@/$(timestamp)/$(project)/logs || true; \ + @cp -R build/$(project)/__xmsgs $@/latest/$(project)/logs || true; \ @bash -c "$(xil_env); \ cd ..; \ xst -help | head -1 | sed 's/^/#/' | cat - build/$(project).scr > $@/$(timestamp)/$(project).scr" @@ -359,6 +366,11 @@ par_timingan: build/$(project)_post_par.twr lint: verilator --lint-only -I./hdl -I./cores -Wall -Wno-DECLFILENAME hdl/$(top_module)_$(board) || true +help: + @cat ./contrib/README + @echo + @echo "See README for general help" + clean: clean_synth clean_sim clean_ise rm -rf coregen-tmp -- cgit v1.2.3