yosys/passes/techmap/Makefile.inc

30 lines
797 B
PHP
Raw Normal View History

2013-01-05 11:13:26 +01:00
OBJS += passes/techmap/techmap.o
2013-11-24 22:52:30 +01:00
OBJS += passes/techmap/simplemap.o
OBJS += passes/techmap/dfflibmap.o
2014-07-24 19:03:57 +02:00
OBJS += passes/techmap/libparse.o
ifneq ($(SMALL),1)
2013-10-16 16:16:06 +02:00
OBJS += passes/techmap/iopadmap.o
2014-01-19 21:58:58 +01:00
OBJS += passes/techmap/hilomap.o
OBJS += passes/techmap/extract.o
2014-07-24 19:03:57 +02:00
endif
2014-07-31 02:32:00 +02:00
GENFILES += passes/techmap/techmap.inc
2013-01-05 11:13:26 +01:00
2014-07-31 02:32:00 +02:00
passes/techmap/techmap.inc: techlibs/common/techmap.v
2014-07-24 17:15:01 +02:00
$(P) echo "// autogenerated from $<" > $@.new
$(Q) echo "static char stdcells_code[] = {" >> $@.new
$(Q) od -v -td1 -An $< | $(SED) -e 's/[0-9][0-9]*/&,/g' >> $@.new
$(Q) echo "0};" >> $@.new
$(Q) mv $@.new $@
2013-01-05 11:13:26 +01:00
2014-07-31 02:32:00 +02:00
passes/techmap/techmap.o: passes/techmap/techmap.inc
2013-01-05 11:13:26 +01:00
TARGETS += yosys-filterlib
GENFILES += passes/techmap/filterlib.o
yosys-filterlib: passes/techmap/filterlib.o
2014-07-24 17:15:01 +02:00
$(P) $(CXX) -o yosys-filterlib $(LDFLAGS) $^ $(LDLIBS)