1
0
mirror of synced 2026-02-03 23:42:50 +00:00
Files
YosysHQ.yosys/passes/techmap/Makefile.inc
2013-09-15 11:52:57 +02:00

13 lines
393 B
Makefile

GENFILES += passes/techmap/stdcells.inc
OBJS += passes/techmap/techmap.o
passes/techmap/stdcells.inc: techlibs/common/stdcells.v
echo "// autogenerated from $<" > $@.new
od -v -td1 -w1 $< | awk 'BEGIN { print "static char stdcells_code[] = {"; } $$2 != "" { print $$2 ","; } \
END { print 0 "};"; }' | fmt >> $@.new
mv $@.new $@
passes/techmap/techmap.o: passes/techmap/stdcells.inc