123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- #! /bin/sh
- required=emacs
- . test-init.sh
- cat > Makefile.am << 'EOF'
- dist_lisp_LISP = am-one.el
- if WANT_TWO
- dist_lisp_LISP += am-two.el
- endif
- dist_noinst_LISP = am-three.el
- dist-test: distdir
- test -f $(distdir)/am-one.el
- test -f $(distdir)/am-two.el
- test -f $(distdir)/am-three.el
- EOF
- cat >> configure.ac << 'EOF'
- AM_CONDITIONAL([WANT_TWO], [test -n "$want_two"])
- AM_PATH_LISPDIR
- AC_OUTPUT
- EOF
- unset want_two
- echo "(provide 'am-one)" > am-one.el
- echo "(require 'am-one)" > am-two.el
- echo "(require 'am-one)" > am-three.el
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE --add-missing
- cwd=$(pwd) || fatal_ "getting current working directory"
- ./configure --with-lispdir="$cwd/lisp"
- $MAKE
- test -f am-one.elc
- test ! -e am-two.elc
- test -f am-three.elc
- $MAKE install
- test -f lisp/am-one.el
- test -f lisp/am-one.elc
- test ! -e lisp/am-two.el
- test ! -e lisp/am-two.elc
- test ! -e lisp/am-three.el
- test ! -e lisp/am-three.elc
- $MAKE dist-test
- $MAKE distclean
- test ! -e am-one.elc
- test ! -e am-two.elc
- test ! -e am-three.elc
- ./configure --with-lispdir="$cwd/lisp" want_two=1
- $MAKE
- test -f am-one.elc
- test -f am-two.elc
- test -f am-three.elc
- rm -f am-*.elc
- $MAKE
- test -f am-one.elc
- test -f am-two.elc
- test -f am-three.elc
- $MAKE install
- test -f lisp/am-one.el
- test -f lisp/am-one.elc
- test -f lisp/am-two.el
- test -f lisp/am-two.elc
- test ! -e lisp/am-three.el
- test ! -e lisp/am-three.elc
- $MAKE dist-test
- $MAKE distclean
- test ! -e am-one.elc
- test ! -e am-two.elc
- test ! -e am-three.elc
- :
|