Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / lisp4.test
blob43bab6a22c343356ec1775e60b317c2b1b4ce4aa
1 #! /bin/sh
2 # Copyright (C) 2003, 2007 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 3, 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 GNU Automake; see the file COPYING. If not, write to
17 # Make sure setting ELCFILES= disable byte-compilation as documented.
18 # Report from Simon Josefsson.
20 required=emacs
21 . ./defs || Exit 1
23 set -e
25 cat > Makefile.am << 'EOF'
26 lisp_LISP = am-one.el am-two.el am-three.el
27 EXTRA_DIST = am-one.el am-two.el
28 ELCFILES=
29 am-three.el:
30 echo "(provide 'am-three)" > $@
31 CLEANFILES = am-three.el
33 test:
34 test ! -f am-one.elc
35 test ! -f am-two.elc
36 test ! -f am-three.elc
37 test ! -f elc-stamp
39 install-test: install
40 test -f "$(lispdir)/am-one.el"
41 test -f "$(lispdir)/am-two.el"
42 test -f "$(lispdir)/am-three.el"
43 test ! -f "$(lispdir)/am-one.elc"
44 test ! -f "$(lispdir)/am-two.elc"
45 test ! -f "$(lispdir)/am-three.elc"
47 install-test2: install
48 test ! -f "$(lispdir)/am-one.el"
49 test ! -f "$(lispdir)/am-two.el"
50 test ! -f "$(lispdir)/am-three.el"
51 test ! -f "$(lispdir)/am-one.elc"
52 test ! -f "$(lispdir)/am-two.elc"
53 test ! -f "$(lispdir)/am-three.elc"
54 EOF
56 cat >> configure.in << 'EOF'
57 AM_PATH_LISPDIR
58 AC_OUTPUT
59 EOF
61 echo "(require 'am-two)" > am-one.el
62 echo "(require 'am-three) (provide 'am-two)" > am-two.el
63 # am-tree.el is a built source
65 $ACLOCAL
66 $AUTOCONF
67 $AUTOMAKE --add-missing
69 ./configure --prefix "`pwd`"
70 $MAKE
71 $MAKE test
72 $MAKE install-test
73 $MAKE uninstall
75 # Fake the absence of emacs.
76 # *.el files should not be installed.
77 ./configure EMACS=no --prefix "`pwd`"
78 $MAKE
79 $MAKE test
80 $MAKE install-test2