Use autoconf, automake & libtool
[jansson.git] / configure.ac
1 AC_PREREQ([2.63])
2 AC_INIT([jansson], [0.1], [petri@digip.org])
3
4 AM_INIT_AUTOMAKE([1.10 foreign])
5 AM_MAINTAINER_MODE
6
7 AC_CONFIG_SRCDIR([src/value.c])
8 AC_CONFIG_HEADERS([config.h])
9
10 # Checks for programs.
11 AC_PROG_CC
12 AC_PROG_LIBTOOL
13
14 # Checks for libraries.
15
16 # Checks for header files.
17
18 # Checks for typedefs, structures, and compiler characteristics.
19
20 # Checks for library functions.
21
22 AC_CONFIG_FILES([
23         Makefile
24         src/Makefile
25 ])
26 AC_OUTPUT