diff options
author | bryan newbold <bnewbold@leaflabs.com> | 2013-03-14 12:50:17 -0400 |
---|---|---|
committer | bryan newbold <bnewbold@leaflabs.com> | 2013-03-14 12:50:17 -0400 |
commit | 7d9fb988443e94507a7d3ca6e0137aaf49af42e1 (patch) | |
tree | 31e6d5bf72d3df45dc8636283b3b75b861532fbc /Makefile | |
parent | 0b157a316fce0ebc5ba020e8b8d710a644727ad5 (diff) | |
download | basic-hdl-template-7d9fb988443e94507a7d3ca6e0137aaf49af42e1.tar.gz basic-hdl-template-7d9fb988443e94507a7d3ca6e0137aaf49af42e1.zip |
improvements
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -4,13 +4,18 @@ vendor = xilinx # This is the chipset from the Xilinx SP605 dev board family = spartan6 -part = xc6slx45t-3-fgg484 +device = xc6slx45t +speedgrade = -3 +device_package = fgg484 +part = $(device)$(speedgrade)-$(device_package) + # is this build host 64 or 32 bits? hostbits = 64 iseenv= /opt/Xilinx/14.3/ISE_DS/ -vfiles = ./hdl/project.v -tbfiles = ./tb/tb.v +vfiles = ./hdl/*.v +tbfiles = ./tb/*.v +xilinx_cores = include ./contrib/xilinx.mk |