1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #! /bin/sh
- required='emacs non-root'
- . 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
- 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
- $MAKE
- test -f am-one.elc
- test -f am-two.elc
- test -f am-three.elc
- rm -f am-*.elc
- chmod a-w .
- $MAKE -n
- test ! -e am-one.elc
- test ! -e am-two.elc
- test ! -e am-three.elc
- :
|