about summary refs log tree commit diff
path: root/configure.ac
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2003-04-04T16·14+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2003-04-04T16·14+0000
commit136c00e881dd290d470923b0ce7760de2df5e0ad (patch)
tree6857801b2a46d47dfc30a7d14c2aaf06c5b00c44 /configure.ac
parentab723e341aab021624e93b7687c252acaeef9394 (diff)
* Autoconf / Automake configuration and building.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac14
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000000..e488ed78ff
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,14 @@
+AC_INIT(nix, 0.1)
+AC_CONFIG_SRCDIR(src/nix.cc)
+AC_CONFIG_AUX_DIR(config)
+AM_INIT_AUTOMAKE
+
+AC_PREFIX_DEFAULT(/nix)
+
+AC_CANONICAL_HOST
+
+AC_PROG_CC
+AC_PROG_CXX
+
+AC_CONFIG_FILES(Makefile src/Makefile src/nix-instantiate)
+AC_OUTPUT
\ No newline at end of file