diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-12-30 11:41:24 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-12-30 11:41:24 +0100 |
commit | c64b1de11da8db9e912e0a293d5c9c8a9bc31096 (patch) | |
tree | 8ff348b1fed8a2a43982480d248a5e7c8e42a62f /passes/opt/Makefile.inc | |
parent | d72a66644035d43f81afa78283ecf15c520909ec (diff) | |
download | yosys-c64b1de11da8db9e912e0a293d5c9c8a9bc31096.tar.gz yosys-c64b1de11da8db9e912e0a293d5c9c8a9bc31096.tar.bz2 yosys-c64b1de11da8db9e912e0a293d5c9c8a9bc31096.zip |
Fixed build with SMALL=1
Diffstat (limited to 'passes/opt/Makefile.inc')
-rw-r--r-- | passes/opt/Makefile.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/passes/opt/Makefile.inc b/passes/opt/Makefile.inc index 3a8d27f93..6b075cd9a 100644 --- a/passes/opt/Makefile.inc +++ b/passes/opt/Makefile.inc @@ -6,6 +6,9 @@ OBJS += passes/opt/opt_reduce.o OBJS += passes/opt/opt_rmdff.o OBJS += passes/opt/opt_clean.o OBJS += passes/opt/opt_const.o + +ifneq ($(SMALL),1) OBJS += passes/opt/share.o OBJS += passes/opt/wreduce.o +endif |