123456789101112131415161718192021222324252627282930313233 |
- #! /bin/sh
- . test-init.sh
- targets='all install-exec install-data uninstall'
- echo "$targets:" | sed -e 's/[ :]/-local&/g' > Makefile.am
- cat Makefile.am
- $ACLOCAL
- $AUTOMAKE
- for target in $targets; do
- grep "${target}-local" Makefile.in
- grep "${target}-am:.*${target}-local" Makefile.in
- done
- :
|