diff options
author | bryan newbold <bnewbold@leaflabs.com> | 2013-11-13 10:28:11 -0500 |
---|---|---|
committer | bryan newbold <bnewbold@leaflabs.com> | 2013-11-13 10:36:16 -0500 |
commit | 2bb33bb1491fa9f47fd1da0785f7cbdaab0b7d63 (patch) | |
tree | 84d164b1dd4c682b6ebae3f196c3393278841cb7 | |
parent | 21396c5235adfe7703b220a7b7aad99225d225ba (diff) | |
download | basic-hdl-template-2bb33bb1491fa9f47fd1da0785f7cbdaab0b7d63.tar.gz basic-hdl-template-2bb33bb1491fa9f47fd1da0785f7cbdaab0b7d63.zip |
add status messages to bitfile generation
-rw-r--r-- | contrib/xilinx.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/xilinx.mk b/contrib/xilinx.mk index 8f1ace8..7c16cd7 100644 --- a/contrib/xilinx.mk +++ b/contrib/xilinx.mk @@ -165,11 +165,13 @@ bitfiles: build/$(project).bit build/$(project).mcs xst -help | head -1 | sed 's/^/#/' | cat - build/$(project).scr > $@/$(timestamp)/$(project).scr" build/$(project).mcs: build/$(project).bit + @echo "Generating $@..." @bash -c "$(xil_env); \ promgen -w -data_width $(mcs_datawidth) -s $(flashsize) -p mcs -o $(project).mcs \ -u 0 $(project).bit" build/$(project).bit: build/$(project)_par.ncd build/$(project)_post_par.twr $(bitconf_file) + @echo "Generating $@..." @bash -c "$(xil_env); \ bitgen $(intstyle) -f ../$(bitconf_file) -w $(project)_par.ncd $(project).bit \ $(project).pcf" |