diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-10-14 16:27:42 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-10-14 16:27:42 +0200 |
commit | 7d3a3a317351d0f63f01a134f450bb81ba67fff7 (patch) | |
tree | 1c6c92b55e82e1c36bb2750549fc5a86402a2643 /techlibs/common/Makefile.inc | |
parent | 3c315721525d40c14b4a29daf9983be474374908 (diff) | |
download | yosys-7d3a3a317351d0f63f01a134f450bb81ba67fff7.tar.gz yosys-7d3a3a317351d0f63f01a134f450bb81ba67fff7.tar.bz2 yosys-7d3a3a317351d0f63f01a134f450bb81ba67fff7.zip |
Added first help messages for cell types
Diffstat (limited to 'techlibs/common/Makefile.inc')
-rw-r--r-- | techlibs/common/Makefile.inc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/techlibs/common/Makefile.inc b/techlibs/common/Makefile.inc index f222a0289..5c50dea01 100644 --- a/techlibs/common/Makefile.inc +++ b/techlibs/common/Makefile.inc @@ -3,6 +3,21 @@ ifneq ($(SMALL),1) OBJS += techlibs/common/synth.o endif +GENFILES += techlibs/common/simlib_help.inc +GENFILES += techlibs/common/simcells_help.inc + +techlibs/common/simlib_help.inc: techlibs/common/cellhelp.py techlibs/common/simlib.v + $(Q) mkdir -p techlibs/common + $(P) python3 $^ > $@.new + $(Q) mv $@.new $@ + +techlibs/common/simcells_help.inc: techlibs/common/cellhelp.py techlibs/common/simcells.v + $(Q) mkdir -p techlibs/common + $(P) python3 $^ > $@.new + $(Q) mv $@.new $@ + +kernel/register.o: techlibs/common/simlib_help.inc techlibs/common/simcells_help.inc + $(eval $(call add_share_file,share,techlibs/common/simlib.v)) $(eval $(call add_share_file,share,techlibs/common/simcells.v)) $(eval $(call add_share_file,share,techlibs/common/techmap.v)) |