Tag
Hash :
852e99bc
Author :
Date :
2002-05-30T06:05:05
fgrep -> $FGREP, egrep -> $EGREP
#! /bin/sh
# check that 'DEP_FILES' is defined when there are many header files
. $srcdir/defs || exit 1
echo AC_PROG_CC >> configure.in
$ACLOCAL || exit 1
headers=
for header in one.h two.h three.h four.h five.h six.h
do
headers="$headers $header"
cat > Makefile.am << END
bin_PROGRAMS = fred
fred_SOURCES = fred1.c $headers
END
$AUTOMAKE || exit 1
$EGREP '^(@[^@]+@)*DEP_FILES = ' Makefile.in || exit 1
done
exit 0