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