tests: cosmetic changes in t/extra-sources.sh
[platform/upstream/automake.git] / t / lisp4.sh
1 #! /bin/sh
2 # Copyright (C) 2003-2013 Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Make sure setting ELCFILES= disable byte-compilation as documented.
18 # Report from Simon Josefsson.
19
20 required=emacs
21 . test-init.sh
22
23 cat > Makefile.am << 'EOF'
24 lisp_LISP = am-one.el am-two.el am-three.el
25 EXTRA_DIST = am-one.el am-two.el
26 ELCFILES=
27 am-three.el:
28         echo "(provide 'am-three)" > $@
29 CLEANFILES = am-three.el
30
31 test:
32         test ! -f am-one.elc
33         test ! -f am-two.elc
34         test ! -f am-three.elc
35
36 install-test: install
37         test -f "$(lispdir)/am-one.el"
38         test -f "$(lispdir)/am-two.el"
39         test -f "$(lispdir)/am-three.el"
40         test ! -f "$(lispdir)/am-one.elc"
41         test ! -f "$(lispdir)/am-two.elc"
42         test ! -f "$(lispdir)/am-three.elc"
43
44 not-installed:
45         find "$(lispdir)" | grep '\.el$$' && exit 1; :
46         find "$(lispdir)" | grep '\.elc$$' && exit 1; :
47 EOF
48
49 cat >> configure.ac << 'EOF'
50 AM_PATH_LISPDIR
51 AC_OUTPUT
52 EOF
53
54 echo "(require 'am-two)" > am-one.el
55 echo "(require 'am-three) (provide 'am-two)" > am-two.el
56 # am-tree.el is a built source
57
58 $ACLOCAL
59 $AUTOCONF
60 $AUTOMAKE --add-missing
61
62 cwd=$(pwd) || fatal_ "getting current working directory"
63
64 ./configure --prefix "$cwd"
65 $MAKE
66 $MAKE test
67 $MAKE install-test
68 $MAKE uninstall
69 $MAKE not-installed
70
71 # Fake the absence of emacs.
72 # *.el files should not be installed, but "make install" and
73 # "make uninstall" should continue to work.
74 ./configure EMACS=no --prefix "$cwd"
75 $MAKE
76 $MAKE test
77 $MAKE install
78 $MAKE not-installed
79 $MAKE uninstall
80
81 :