123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #! /bin/sh
- am_create_testdir=empty
- required=cc
- . test-init.sh
- cat > configure.ac <<END
- AC_INIT([$me], [1.0])
- AC_PROG_CC
- AC_CONFIG_AUX_DIR([build-aux])
- AM_INIT_AUTOMAKE
- AC_OUTPUT([Makefile])
- END
- : > Makefile.am
- mkdir build-aux
- $ACLOCAL
- $AUTOMAKE -a
- $AUTOCONF
- test -f build-aux/compile
- test -f build-aux/install-sh
- ./configure
- :
|