1234567891011121314151617181920212223242526272829303132333435 |
- #! /bin/sh
- . test-init.sh
- cat > configure.ac <<END
- AC_INIT([$me], [1.0])
- AM_INIT_AUTOMAKE
- AC_OUTPUT([tests/Makefile tests/defs])
- END
- mkdir tests
- : > tests/defs.in
- : > tests/Makefile.am
- $ACLOCAL
- $AUTOMAKE
- grep tests/defs.in tests/Makefile.in && exit 1
- exit 0
|