3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-02 17:30:24 +00:00

Fixed build with SMALL=1

This commit is contained in:
Clifford Wolf 2014-12-30 11:41:24 +01:00
parent d72a666440
commit c64b1de11d
3 changed files with 6 additions and 1 deletions

View file

@ -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