1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #!/bin/sh
- . test-init.sh
- echo AC_OUTPUT >> configure.ac
- : > Makefile.am
- rm -f depcomp compile
- $ACLOCAL
- $AUTOMAKE
- $EGREP 'INCLUDES|@am__isrc@|-compile|\$\(OBJEXT\)|tab\.[ch]' \
- Makefile.in && exit 1
- :
|