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

View File

@ -2,13 +2,13 @@
OBJS += passes/techmap/techmap.o
OBJS += passes/techmap/simplemap.o
OBJS += passes/techmap/dfflibmap.o
OBJS += passes/techmap/maccmap.o
OBJS += passes/techmap/libparse.o
ifneq ($(SMALL),1)
OBJS += passes/techmap/iopadmap.o
OBJS += passes/techmap/hilomap.o
OBJS += passes/techmap/extract.o
OBJS += passes/techmap/maccmap.o
OBJS += passes/techmap/alumacc.o
OBJS += passes/techmap/dff2dffe.o
endif

View File

@ -1,5 +1,7 @@
ifneq ($(SMALL),1)
OBJS += techlibs/common/synth.o
endif
EXTRA_TARGETS += techlibs/common/blackbox.v