test: Add Makefile.am to test/testprogs
[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
6 AC_CONFIG_SRCDIR([src/value.c])
7 AC_CONFIG_HEADERS([config.h])
8
9 # Checks for programs.
10 AC_PROG_CC
11 AC_PROG_LIBTOOL
12
13 # Checks for libraries.
14
15 # Checks for header files.
16
17 # Checks for typedefs, structures, and compiler characteristics.
18
19 # Checks for library functions.
20
21 AC_CONFIG_FILES([
22         Makefile
23         doc/Makefile
24         src/Makefile
25         test/Makefile
26         test/testprogs/Makefile
27 ])
28 AC_OUTPUT