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