diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-07-24 19:03:57 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-07-24 19:03:57 +0200 |
commit | 45b4154b3799178a432d1f14dcaf51787b86f35d (patch) | |
tree | 488b298f5b715f49b954886d172d0aff0a3478c4 /passes | |
parent | 34ea9e3f098925a7e107f2da265ff27b6b9985be (diff) | |
download | yosys-45b4154b3799178a432d1f14dcaf51787b86f35d.tar.gz yosys-45b4154b3799178a432d1f14dcaf51787b86f35d.tar.bz2 yosys-45b4154b3799178a432d1f14dcaf51787b86f35d.zip |
Added "make SMALL=1"
Diffstat (limited to 'passes')
-rw-r--r-- | passes/techmap/Makefile.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/passes/techmap/Makefile.inc b/passes/techmap/Makefile.inc index c901da1c9..e54c018aa 100644 --- a/passes/techmap/Makefile.inc +++ b/passes/techmap/Makefile.inc @@ -2,10 +2,13 @@ OBJS += passes/techmap/techmap.o OBJS += passes/techmap/simplemap.o OBJS += passes/techmap/dfflibmap.o +OBJS += passes/techmap/libparse.o + +ifneq ($(SMALL),1) OBJS += passes/techmap/iopadmap.o OBJS += passes/techmap/hilomap.o -OBJS += passes/techmap/libparse.o OBJS += passes/techmap/extract.o +endif GENFILES += passes/techmap/stdcells.inc |