source: trunk/essentials/sys-devel/automake-1.8/tests/lex5.test

Last change on this file was 3118, checked in by bird, 18 years ago

automake 1.8.5

File size: 2.0 KB
Line 
1#! /bin/sh
2# Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
3#
4# This file is part of GNU Automake.
5#
6# GNU Automake is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2, or (at your option)
9# any later version.
10#
11# GNU Automake is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with Automake; see the file COPYING. If not, write to
18# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19# Boston, MA 02111-1307, USA.
20
21# Test for subdir lexers.
22
23required='gcc GNUmake gzip flex'
24. ./defs || exit 1
25
26set -e
27
28cat >> configure.in << 'END'
29AC_CONFIG_AUX_DIR([.])
30AC_PROG_CC
31AM_PROG_CC_C_O
32AM_PROG_LEX
33AC_OUTPUT
34END
35
36cat > Makefile.am << 'END'
37AUTOMAKE_OPTIONS = foreign subdir-objects
38LDADD = @LEXLIB@
39
40bin_PROGRAMS = foo/foo
41foo_foo_SOURCES = foo/foo.l
42END
43
44mkdir foo
45
46cat > foo/foo.l << 'END'
47%%
48"END" return EOF;
49.
50%%
51int
52main ()
53{
54 while (yylex () != EOF)
55 ;
56
57 return 0;
58}
59END
60
61set -e
62
63$ACLOCAL
64$AUTOCONF
65$AUTOMAKE -a
66
67mkdir sub
68cd sub
69../configure
70$MAKE foo/foo.o
71
72test -f foo/foo.c
73test -f foo/foo.o
74# ylwrap is not needed
75test ! -f ./ylwrap
76
77# Now, adds another lexer to test ylwrap.
78
79cd ..
80cp foo/foo.l foo/foo2.l
81cat >> Makefile.am << 'END'
82EXTRA_foo_foo_SOURCES = foo/foo2.l
83END
84
85# Make sure Makefile.in has a new time stamp: the rebuild rules are
86# used below. We do this after updating Makefile.am, that way we can
87# ensure that automake, even with --no-force, is not confused if the
88# new Makefile.am has the same time stamp as the older one (since the
89# output will change, --no-force should have no effect).
90$sleep
91
92$AUTOMAKE -a --no-force
93test -f ./ylwrap
94
95cd sub
96$MAKE foo/foo2.o
97test -f foo/foo2.c
98test -f foo/foo2.o
99
100exit 0
Note: See TracBrowser for help on using the repository browser.