diff options
author | bryan newbold <bnewbold@leaflabs.com> | 2014-01-28 14:00:27 -0500 |
---|---|---|
committer | bryan newbold <bnewbold@leaflabs.com> | 2014-01-28 14:02:35 -0500 |
commit | d5d7b2f8718107a17945a4411930141f32148b7c (patch) | |
tree | 83ab76f733feb2c95d72dde98b9f083c63624b37 /contrib | |
parent | 86efd8161eee99f148e299ec36a0cfda02f710d9 (diff) | |
download | basic-hdl-template-d5d7b2f8718107a17945a4411930141f32148b7c.tar.gz basic-hdl-template-d5d7b2f8718107a17945a4411930141f32148b7c.zip |
fix bitfile outputs
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/xilinx.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/xilinx.mk b/contrib/xilinx.mk index 0ad51ec..90cc82a 100644 --- a/contrib/xilinx.mk +++ b/contrib/xilinx.mk @@ -171,7 +171,8 @@ bitfiles: $(bitfile_list) @mkdir -p $@/latest/logs @# NB: _bd.bmm was listed below in the past... @for x in $(bitfile_list); do \ - cp $$x $@/$(timestamp)/$(project)$$x || true; \ + cp $$x $@/$(timestamp)/ || true; \ + cp $$x $@/latest/ || true; \ done; @for x in .cfi _par.ncd _post_par.twr _post_par.twx; do \ cp build/$(project)$$x $@/$(timestamp)/$(project)$$x || true; \ |