summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac18
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..6aeaa0e
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,18 @@
+# autoconf input for halibut.
+
+AC_INIT([halibut], [NOVERSION], [anakin@pobox.com])
+AC_CONFIG_SRCDIR([halibut.h])
+
+AM_INIT_AUTOMAKE(foreign)
+
+AC_PROG_CC
+AC_PROG_INSTALL
+AC_PROG_MKDIR_P
+
+AC_LANG([C])
+
+AC_CONFIG_FILES([Makefile])
+
+AC_CONFIG_SUBDIRS([charset])
+
+AC_OUTPUT