1
0
mirror of synced 2026-01-15 16:26:04 +00:00
2013-01-05 11:13:26 +01:00

12 lines
343 B
Makefile

GENFILES += passes/techmap/stdcells.inc
OBJS += passes/techmap/techmap.o
passes/techmap/stdcells.inc: techlibs/stdcells.v
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