aboutsummaryrefslogtreecommitdiff
path: root/c_implementation/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'c_implementation/configure.ac')
-rw-r--r--c_implementation/configure.ac11
1 files changed, 11 insertions, 0 deletions
diff --git a/c_implementation/configure.ac b/c_implementation/configure.ac
new file mode 100644
index 0000000..477ec5c
--- /dev/null
+++ b/c_implementation/configure.ac
@@ -0,0 +1,11 @@
+AC_INIT([akt], [0.0.0])
+AM_INIT_AUTOMAKE([foreign subdir-objects])
+AC_CONFIG_MACRO_DIRS([m4])
+LT_INIT([shared])
+
+AC_PROG_CC
+AC_CONFIG_FILES([Makefile])
+
+AC_CHECK_HEADERS([stdlib.h stdio.h])
+
+AC_OUTPUT