12345678910111213141516171819202122232425262728293031323334353637383940 |
- #! /bin/sh
- . test-init.sh
- cat >> configure.ac << 'END'
- AC_CONFIG_HEADERS([sub/config.h:sub/config.hin])
- AC_OUTPUT
- END
- touch Makefile.am
- mkdir sub
- $ACLOCAL
- $AUTOCONF
- touch sub/config.hin
- $AUTOMAKE
- ./configure
- test -f sub/stamp-h1
- $MAKE clean
- test -f sub/stamp-h1
- $MAKE distclean
- test -f sub/stamp-h1 && exit 1
- :
|