]>
Commit | Line | Data |
---|---|---|
1 | dnl Process this file with autoconf to produce a configure script. | |
2 | AC_INIT(reduce.c) | |
3 | AM_INIT_AUTOMAKE(bison,1.25.90) | |
4 | AM_CONFIG_HEADER(config.h:config.hin) | |
5 | ||
6 | dnl Checks for programs. | |
7 | AC_PROG_CC | |
8 | AC_PROG_INSTALL | |
9 | AC_PROG_RANLIB | |
10 | ||
11 | AC_MINIX | |
12 | AC_ISC_POSIX | |
13 | ||
14 | dnl Checks for header files. | |
15 | AC_HEADER_STDC | |
16 | AC_CHECK_HEADERS(string.h stdlib.h memory.h) | |
17 | ||
18 | dnl Checks for typedefs, structures, and compiler characteristics. | |
19 | AC_C_CONST | |
20 | ||
21 | dnl Checks for library functions. | |
22 | AC_FUNC_ALLOCA | |
23 | ||
24 | AC_OUTPUT(Makefile) |