diff options
Diffstat (limited to 'c_implementation/configure.ac')
-rw-r--r-- | c_implementation/configure.ac | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/c_implementation/configure.ac b/c_implementation/configure.ac new file mode 100644 index 0000000..0cedf54 --- /dev/null +++ b/c_implementation/configure.ac @@ -0,0 +1,12 @@ +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_HEADERS([config.h]) +AC_CONFIG_FILES([Makefile]) + +AC_CHECK_HEADERS([stdlib.h stdio.h]) + +AC_OUTPUT |