12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #! /bin/sh
- . test-init.sh
- cat >> configure.ac << 'END'
- AC_PROG_CC
- END
- cat > Makefile.am << 'END'
- bin_PROGRAMS = maude 3dldf
- maude$(EXEEXT):
- yeah
- 3dldf$(EXEEXT):
- yippie
- END
- $ACLOCAL
- $AUTOMAKE -Wno-override
- $FGREP 'maude$(EXEEXT):' Makefile.in
- test 1 -eq $(grep -c 'maude.*:' Makefile.in)
- $FGREP '3dldf$(EXEEXT):' Makefile.in
- test 1 -eq $(grep -c '3dldf.*:' Makefile.in)
- :
|