12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #! /bin/sh
- . test-init.sh
- cat >> configure.ac <<'END'
- AC_CONFIG_FILES([foo.h:foo.hin])
- AC_OUTPUT
- END
- : > foo.hin
- cat > Makefile.am <<'END'
- .PHONY: test
- test: distdir
- ls -l . $(distdir)
- test -f foo.h
- test -f $(distdir)/foo.hin
- END
- $ACLOCAL
- $AUTOMAKE
- $AUTOCONF
- ./configure
- $MAKE test
- $MAKE distcheck
- :
|