aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2009-05-12 22:21:50 +0300
committerPetri Lehtinen <petri@digip.org>2009-05-12 22:21:50 +0300
commit6e160c146c51b6f587381c00df050570a60ed82f (patch)
tree3ebbcecce17a1cc840d06120170249eb5a933623 /configure.ac
parent0b58486ec47d0b5b4dba6ea603de2682aaa15525 (diff)
downloadjansson-6e160c146c51b6f587381c00df050570a60ed82f.zip
jansson-6e160c146c51b6f587381c00df050570a60ed82f.tar.gz
jansson-6e160c146c51b6f587381c00df050570a60ed82f.tar.bz2
Use autoconf, automake & libtool
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac26
1 files changed, 26 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..b9fb191
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,26 @@
+AC_PREREQ([2.63])
+AC_INIT([jansson], [0.1], [petri@digip.org])
+
+AM_INIT_AUTOMAKE([1.10 foreign])
+AM_MAINTAINER_MODE
+
+AC_CONFIG_SRCDIR([src/value.c])
+AC_CONFIG_HEADERS([config.h])
+
+# Checks for programs.
+AC_PROG_CC
+AC_PROG_LIBTOOL
+
+# Checks for libraries.
+
+# Checks for header files.
+
+# Checks for typedefs, structures, and compiler characteristics.
+
+# Checks for library functions.
+
+AC_CONFIG_FILES([
+ Makefile
+ src/Makefile
+])
+AC_OUTPUT