view configure.in @ 3962:be4a50a68d30

* configure.in: Add AC_CONFIG_AUX_DIR call. (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile, test/Makefile. * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
author Bruno Haible <bruno@clisp.org>
date Fri, 01 Nov 2002 12:18:03 +0000
parents 2d78be5ca726
children
line wrap: on
line source

dnl Process this file with autoconf to produce a configure script.
AC_INIT(regex.c)
AC_CONFIG_AUX_DIR(config)

AC_PROG_CC
AC_PROG_INSTALL

dnl I'm not sure if AC_AIX and AC_DYNIX_SEQ are really necessary.  The
dnl Autoconf documentation isn't specific about which BSD functions they
dnl provide.
AC_AIX
AC_DYNIX_SEQ
AC_ISC_POSIX
AC_MINIX

AC_STDC_HEADERS
AC_HAVE_HEADERS(string.h)

AC_ALLOCA
AC_CONST

AC_PREFIX(gcc)

AC_OUTPUT(Makefile m4/Makefile lib/Makefile)