1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #! /bin/sh
- . test-init.sh
- cat > Makefile.am << 'END'
- install:
- :
- installcheck:
- :
- html:
- :
- clean-am:
- :
- END
- $ACLOCAL
- $AUTOMAKE -Wno-override
- AUTOMAKE_fails
- grep ':.*install-local' stderr && exit 1
- grep ':.*installcheck-local' stderr
- grep ':.*html-local' stderr
- grep ':.*clean-am-local' stderr && exit 1
- grep ':.*clean-local' stderr
- :
|