123456789101112131415161718192021222324252627282930313233343536 |
- #! /bin/sh
- . test-init.sh
- echo AC_PROG_CC >> configure.ac
- $ACLOCAL
- headers=
- for header in one.h two.h three.h four.h five.h six.h; do
- headers="$headers $header"
- unindent > Makefile.am << END
- bin_PROGRAMS = fred
- fred_SOURCES = fred1.c $headers
- END
- $AUTOMAKE
- test 1 -eq $(grep -c '^@AMDEP_TRUE@@am__include@' Makefile.in)
- done
- :
|