Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / lisp3.test
1 #! /bin/sh
2 # Copyright (C) 2003, 2008  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 # Test that compiling interdependent elisp files works.
18
19 required=emacs
20 . ./defs || Exit 1
21
22 set -e
23
24 cat > Makefile.am << 'EOF'
25 lisp_LISP = am-one.el am-two.el am-three.el
26 EXTRA_DIST = am-one.el am-two.el
27 am-three.el:
28         echo "(provide 'am-three)" > $@
29 CLEANFILES = am-three.el
30 EOF
31
32 cat >> configure.in << 'EOF'
33 AM_PATH_LISPDIR
34 AC_OUTPUT
35 EOF
36
37 echo "(require 'am-two)" > am-one.el
38 echo "(require 'am-three) (provide 'am-two)" > am-two.el
39 # am-three.el is a built source
40
41
42 $ACLOCAL
43 $AUTOCONF
44 $AUTOMAKE --add-missing
45 ./configure
46
47 $MAKE
48
49 test -f am-one.elc
50 test -f am-two.elc
51 test -f am-three.elc
52 test -f elc-stamp
53
54 # Make sure we can recover from a deletion.
55 rm -f am-one.elc
56 $MAKE
57 test -f am-one.elc
58
59 # Make sure we build all files when any of them change.
60 # (We grep a message to make sure the compilation happens.)
61 unique=0a3346e2af8a689b85002b53df09142a
62 $sleep
63 echo "(message \"$unique\")(provide 'am-three)" > am-three.el
64 $MAKE >output 2>&1
65 cat output
66 grep $unique output
67
68 # It should also work for VPATH-builds.
69 $MAKE distcheck