1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(dirlex.l)
3AC_CONFIG_HEADER(config.h)
4
5AC_PROG_CC
6AC_PROG_INSTALL
7AC_PROG_LN_S
8AC_PROG_MAKE_SET
9AC_PROG_YACC
10AC_PROG_LEX
11AC_PROG_LIBTOOL
12
13dnl Checks for programs.
14
15dnl Checks for header files.
16AC_HEADER_STDC
17AC_CHECK_HEADERS(unistd.h sys/types.h string.h)
18
19dnl Checks for typedefs, structures, and compiler characteristics.
20AC_C_CONST
21AC_TYPE_SIZE_T
22
23dnl Checks for library functions.
24
25AC_OUTPUT(Makefile)
26