about summary refs log tree commit diff
path: root/mk/templates.mk
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-11-25T10·16+0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-11-25T10·16+0000
commited0a8dd71ad58d16c24d714ab2b9419285d1ffc0 (patch)
tree8845ac8bcfb70f81f1b6e3f2dc3b3a00047f0f9e /mk/templates.mk
parentf980755766e7cd74c0c959eaa2a6d4655980e2ea (diff)
Add a function for instantiating Autoconf *.in files
Diffstat (limited to 'mk/templates.mk')
-rw-r--r--mk/templates.mk8
1 files changed, 8 insertions, 0 deletions
diff --git a/mk/templates.mk b/mk/templates.mk
new file mode 100644
index 000000000000..3575b6d95614
--- /dev/null
+++ b/mk/templates.mk
@@ -0,0 +1,8 @@
+# Create the file $(1) from $(1).in by running config.status (which
+# substitutes all ‘@var@’ variables set by the configure script).
+define instantiate-template =
+
+  $(1): $(1).in
+	./config.status --file $(1)
+
+endef