1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #! /bin/sh
- . test-init.sh
- cat > Makefile.am << 'EOF'
- dist_lisp_LISP = am-one.el am-two.el am-three.el
- EOF
- cat >> configure.ac << 'EOF'
- AM_PATH_LISPDIR
- EMACS=no
- AC_OUTPUT
- EOF
- echo "(require 'am-two)" > am-one.el
- echo "(require 'am-three) (provide 'am-two)" > am-two.el
- echo "(provide 'am-three)" > am-three.el
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE --add-missing
- ./configure
- run_make -O
- test ! -e am-one.elc
- test ! -e am-two.elc
- test ! -e am-three.elc
- $MAKE distcheck
- :
|