aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbryan newbold <bnewbold@leaflabs.com>2013-11-13 12:45:11 -0500
committerbryan newbold <bnewbold@leaflabs.com>2013-11-13 12:45:11 -0500
commitc1c89f3cbc619b6b5ff000cdfcef743fca6900ea (patch)
tree268b6f3fe7841ffdac05f4bbee8c91a3030e202d
parentb4d8c0079602c8cf3f8404184dd12d03a2de9f17 (diff)
downloadbasic-hdl-template-c1c89f3cbc619b6b5ff000cdfcef743fca6900ea.tar.gz
basic-hdl-template-c1c89f3cbc619b6b5ff000cdfcef743fca6900ea.zip
add 'xreport' launcher target
-rw-r--r--contrib/README2
-rw-r--r--contrib/xilinx.mk6
2 files changed, 6 insertions, 2 deletions
diff --git a/contrib/README b/contrib/README
index 05ece66..0a1bbb1 100644
--- a/contrib/README
+++ b/contrib/README
@@ -44,4 +44,4 @@ 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
-
+make xreport - launches Xilinx log/warning browser
diff --git a/contrib/xilinx.mk b/contrib/xilinx.mk
index f971c83..9af368d 100644
--- a/contrib/xilinx.mk
+++ b/contrib/xilinx.mk
@@ -45,7 +45,7 @@
# These dot-targets must come first in the file
.PHONY: default xilinx_cores clean twr_map twr_par ise isim coregen \
impact ldimpact lint planahead partial_fpga_editor final_fpga_editor \
- partial_timing final_timing tests all bit mcs
+ partial_timing final_timing tests all bit mcs xreport
# "PRECIOUS" files will not be deleted by make as casually
.PRECIOUS: tb/%.isim tb/isim/unenclib/%.sdb
@@ -361,6 +361,10 @@ timingan:
@bash -c "$(xil_env); \
timingan &"
+xreport:
+ @bash -c "$(xil_env); \
+ xreport &"
+
map_timingan: build/$(project)_post_map.twr
@bash -c "$(xil_env); \
timingan -ucf ../$(ucf_file) $(project).ncd $(project).pcf $(project)_post_map.twx &"