123456789101112131415161718192021222324252627282930313233343536373839 |
- #! /bin/sh
- required=cscope
- . test-init.sh
- cat >> configure.ac << 'END'
- AC_CONFIG_FILES([sub/Makefile])
- AC_OUTPUT
- END
- mkdir sub
- echo 'SUBDIRS = sub' >Makefile.am
- : >sub/Makefile.am
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE
- ./configure
- $MAKE cscope
- :
|