Initial skeleton.
[ashd.git] / configure.in
1 AC_INIT(src/htparser.c)
2 AM_INIT_AUTOMAKE([ashd], [0.1])
3 AM_CONFIG_HEADER(config.h)
4
5 AC_PROG_CC
6 AM_PROG_CC_C_O
7 AC_PROG_INSTALL
8 AC_PROG_RANLIB
9
10 dnl Add for libtool:
11 dnl AM_PROG_LIBTOOL
12
13 AC_HEADER_STDC
14
15 AC_OUTPUT([
16 Makefile
17 src/Makefile
18 lib/Makefile
19 ])