doc: typos in test file.
[automake.git] / t / lisp3.sh
blob2322aba34d6095e0a2347b2049cca663a20c6061
1 #! /bin/sh
2 # Copyright (C) 2003-2024 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <https://www.gnu.org/licenses/>.
17 # Test that compiling interdependent elisp files works.
19 required=emacs
20 . test-init.sh
22 cat > Makefile.am << 'EOF'
23 lisp_LISP = am-one.el am-two.el am-three.el
24 EXTRA_DIST = am-one.el am-two.el
25 am-three.el:
26 echo "(provide 'am-three)" > $@
27 CLEANFILES = am-three.el
28 EOF
30 cat >> configure.ac << 'EOF'
31 AM_PATH_LISPDIR
32 AC_OUTPUT
33 EOF
35 echo "(require 'am-two)" > am-one.el
36 echo "(require 'am-three) (provide 'am-two)" > am-two.el
37 # am-three.el is a built source
39 $ACLOCAL
40 $AUTOCONF
41 $AUTOMAKE --add-missing
43 ./configure --prefix="$(pwd)/_inst"
45 $MAKE
47 test -f am-one.elc
48 test -f am-two.elc
49 test -f am-three.elc
51 # Make sure we can recover from a deletion.
52 rm -f am-one.elc
53 $MAKE
54 test -f am-one.elc
56 # Test installation/deinstallation.
58 $MAKE install
60 find _inst # For debugging.
62 # Keep thin in sync with m4/lispdir.m4.
63 for dir in lib/emacs lib/xemacs share/emacs share/xemacs :; do
64 if test $dir = :; then
65 exit 1
66 elif test -d _inst/$dir/site-lisp; then
67 break
69 done
71 test -f _inst/$dir/site-lisp/am-one.el
72 test -f _inst/$dir/site-lisp/am-one.elc
73 test -f _inst/$dir/site-lisp/am-two.el
74 test -f _inst/$dir/site-lisp/am-two.elc
75 test -f _inst/$dir/site-lisp/am-three.el
76 test -f _inst/$dir/site-lisp/am-three.elc
78 $MAKE uninstall
79 find _inst | $EGREP '\.elc?$' && exit 1
81 # It should also work for VPATH-builds.
82 $MAKE distcheck