summaryrefslogtreecommitdiff
path: root/configure.in
blob: d53b6ac569ea3dd98af9793c7c6814bb0668d7b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
dnl Process this file with autoconf to produce a configure script.
AC_INIT(limn/fit.c)

dnl Write output here, instead of putting -D's on the command line.
AC_CONFIG_HEADER(include/c-auto.h)

sinclude(../kpathsea/common.ac)

# We must have gcc.
[if test -n "$GCC"
then :
else
  echo "Warning: these programs are written in GNU C,"
  echo "so you need to have gcc."
fi]

AC_FIND_XTRA

# This will generate `Makefile'(s), `config.status', and our header file.
AC_OUTPUT(GNUmakefile doc/Makefile)