Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / lisp5.test
blob93d76e8994a4768a29cf383e20235a58fe143659
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 # Same as lisp4.test, but using the now-recommanded way to install
18 # non-bytecompiled *.el files.
20 required=emacs
21 . ./defs || Exit 1
23 set -e
25 cat > Makefile.am << 'EOF'
26 lisp_DATA = am-one.el am-two.el am-three.el
27 EXTRA_DIST = am-one.el am-two.el
28 am-three.el:
29 echo "(provide 'am-three)" > $@
30 CLEANFILES = am-three.el
32 test:
33 test ! -f am-one.elc
34 test ! -f am-two.elc
35 test ! -f am-three.elc
36 test ! -f elc-stamp
38 install-test: install
39 test -f "$(lispdir)/am-one.el"
40 test -f "$(lispdir)/am-two.el"
41 test -f "$(lispdir)/am-three.el"
42 test ! -f "$(lispdir)/am-one.elc"
43 test ! -f "$(lispdir)/am-two.elc"
44 test ! -f "$(lispdir)/am-three.elc"
45 EOF
47 cat >> configure.in << 'EOF'
48 AM_PATH_LISPDIR
49 AC_OUTPUT
50 EOF
52 echo "(require 'am-two)" > am-one.el
53 echo "(require 'am-three) (provide 'am-two)" > am-two.el
54 # am-tree.el is a built source
56 $ACLOCAL
57 $AUTOCONF
58 $AUTOMAKE --add-missing
60 ./configure --prefix "`pwd`"
61 $MAKE
62 $MAKE test
63 $MAKE install-test
64 $MAKE uninstall
66 # Fake the absence of emacs.
67 # *.el files SHOULD be installed.
68 ./configure EMACS=no --prefix "`pwd`"
69 $MAKE
70 $MAKE test
71 $MAKE install-test