diff options
author | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-06-23 22:53:54 -0700 |
---|---|---|
committer | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-06-23 22:53:54 -0700 |
commit | a25c8679ac37df5219e1d7a8cdd932288cd596b1 (patch) | |
tree | 1b6a0bc0c5b1dd39e210429a934918cb6b4c44a1 /icefuzz/Makefile | |
parent | 2a7139115c08af847a5e9d19be3229dd627f4be9 (diff) | |
download | icestorm-a25c8679ac37df5219e1d7a8cdd932288cd596b1.tar.gz icestorm-a25c8679ac37df5219e1d7a8cdd932288cd596b1.tar.bz2 icestorm-a25c8679ac37df5219e1d7a8cdd932288cd596b1.zip |
More work figuring out values in icebox.py
Diffstat (limited to 'icefuzz/Makefile')
-rw-r--r-- | icefuzz/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/icefuzz/Makefile b/icefuzz/Makefile index 47aeb0c..b3e3b95 100644 --- a/icefuzz/Makefile +++ b/icefuzz/Makefile @@ -47,9 +47,14 @@ database: bitdata_io.txt bitdata_logic.txt bitdata_ramb$(RAM_SUFFIX).txt bitdata ifneq ($(RAM_SUFFIX),) cp cached_ramb.txt bitdata_ramb.txt cp cached_ramt.txt bitdata_ramt.txt -else - cp cached_ramb$(RAM_SUFFIX).txt bitdata_ramb$(RAM_SUFFIX).txt - cp cached_ramt$(RAM_SUFFIX).txt bitdata_ramt$(RAM_SUFFIX).txt +endif +ifneq ($(RAM_SUFFIX),_8k) + cp cached_ramb_8k.txt bitdata_ramb_8k.txt + cp cached_ramt_8k.txt bitdata_ramt_8k.txt +endif +ifneq ($(RAM_SUFFIX),_5k) + cp cached_ramb_5k.txt bitdata_ramb_5k.txt + cp cached_ramt_5k.txt bitdata_ramt_5k.txt endif ICEDEVICE=$(DEVICECLASS) python3 database.py python3 export.py |