Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / lisp5.test
1 #! /bin/sh
2 # Copyright (C) 2003, 2007, 2009  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 GNU Automake; see the file COPYING.  If not, write to
16
17 # Same as lisp4.test, but using the now-recommended way to install
18 # non-bytecompiled *.el files.
19
20 required=emacs
21 . ./defs || Exit 1
22
23 set -e
24
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
31
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
37
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
46
47 cat >> configure.in << 'EOF'
48 AM_PATH_LISPDIR
49 AC_OUTPUT
50 EOF
51
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
55
56 $ACLOCAL
57 $AUTOCONF
58 $AUTOMAKE --add-missing
59
60 ./configure --prefix "`pwd`"
61 $MAKE
62 $MAKE test
63 $MAKE install-test
64 $MAKE uninstall
65
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