aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/Makefile.inc
diff options
context:
space:
mode:
Diffstat (limited to 'passes/techmap/Makefile.inc')
-rw-r--r--passes/techmap/Makefile.inc11
1 files changed, 11 insertions, 0 deletions
diff --git a/passes/techmap/Makefile.inc b/passes/techmap/Makefile.inc
new file mode 100644
index 000000000..ba365525d
--- /dev/null
+++ b/passes/techmap/Makefile.inc
@@ -0,0 +1,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
+