* debian/rules: Install all the doc formats.
[dejagnu.git] / example / calc / configure.in
blob73a32040144b7d846a085efb16a7e0f5694690fa
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.5)
3 AC_INIT(calc.c)
4 AM_CONFIG_HEADER(calc.h)
5 AM_INIT_AUTOMAKE(calc, 1.1)
7 AC_PROG_CC
8 AC_PROG_INSTALL
10 # Look for various header files
12 AC_CHECK_HEADERS(stdlib.h)
15 # Look for various functions
17 AC_CHECK_FUNC(strcmp)
20 # Output Makefile with substitutions
21 AC_SUBST(CC)
22 AC_OUTPUT(Makefile)