summaryrefslogtreecommitdiff
path: root/passes/techmap/Makefile.inc
blob: ba365525d53993cb57e1c9eeb8857b39eaf30569 (plain)
1
2
3
4
5
6
7
8
9
10
11
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