diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-08-16 21:15:07 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-08-16 21:15:07 +0200 |
commit | aedcfd6fd3ea99d9d418b81d376590bdb00c2c5c (patch) | |
tree | aa1fc8ef23397a367a08fcb204b91b12b1a89799 /techlibs/ice40/Makefile.inc | |
parent | d5b1a90b33458616c9c002062330c5420335ed31 (diff) | |
download | yosys-aedcfd6fd3ea99d9d418b81d376590bdb00c2c5c.tar.gz yosys-aedcfd6fd3ea99d9d418b81d376590bdb00c2c5c.tar.bz2 yosys-aedcfd6fd3ea99d9d418b81d376590bdb00c2c5c.zip |
Fixed Makefile rules for generated share files
Diffstat (limited to 'techlibs/ice40/Makefile.inc')
-rw-r--r-- | techlibs/ice40/Makefile.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/techlibs/ice40/Makefile.inc b/techlibs/ice40/Makefile.inc index 6907f0a0e..d7fec5685 100644 --- a/techlibs/ice40/Makefile.inc +++ b/techlibs/ice40/Makefile.inc @@ -11,7 +11,8 @@ EXTRA_OBJS += techlibs/ice40/brams_init.mk .SECONDARY: techlibs/ice40/brams_init.mk techlibs/ice40/brams_init.mk: techlibs/ice40/brams_init.py - $(P) cd share/ice40 && python $< + $(Q) mkdir -p techlibs/ice40 + $(P) cd techlibs/ice40 && python $< $(Q) touch techlibs/ice40/brams_init.mk techlibs/ice40/brams_init1.vh: techlibs/ice40/brams_init.mk @@ -24,3 +25,7 @@ $(eval $(call add_share_file,share/ice40,techlibs/ice40/cells_sim.v)) $(eval $(call add_share_file,share/ice40,techlibs/ice40/brams.txt)) $(eval $(call add_share_file,share/ice40,techlibs/ice40/brams_map.v)) +$(eval $(call add_gen_share_file,share/ice40,techlibs/ice40/brams_init1.vh)) +$(eval $(call add_gen_share_file,share/ice40,techlibs/ice40/brams_init2.vh)) +$(eval $(call add_gen_share_file,share/ice40,techlibs/ice40/brams_init3.vh)) + |