1 | #! /bin/sh
|
---|
2 | # Copyright (C) 2002, 2003 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 autoconf; 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 |
|
---|
23 | required='gcc GNUmake gzip flex'
|
---|
24 | . ./defs || exit 1
|
---|
25 |
|
---|
26 | set -e
|
---|
27 |
|
---|
28 | cat >> configure.in << 'END'
|
---|
29 | AC_CONFIG_AUX_DIR([.])
|
---|
30 | AC_PROG_CC
|
---|
31 | AM_PROG_CC_C_O
|
---|
32 | AM_PROG_LEX
|
---|
33 | AC_OUTPUT
|
---|
34 | END
|
---|
35 |
|
---|
36 | cat > Makefile.am << 'END'
|
---|
37 | AUTOMAKE_OPTIONS = foreign subdir-objects
|
---|
38 | LDADD = @LEXLIB@
|
---|
39 |
|
---|
40 | bin_PROGRAMS = foo/foo
|
---|
41 | foo_foo_SOURCES = foo/foo.l
|
---|
42 | END
|
---|
43 |
|
---|
44 | mkdir foo
|
---|
45 |
|
---|
46 | cat > foo/foo.l << 'END'
|
---|
47 | %%
|
---|
48 | "END" return EOF;
|
---|
49 | .
|
---|
50 | %%
|
---|
51 | int
|
---|
52 | main ()
|
---|
53 | {
|
---|
54 | while (yylex () != EOF)
|
---|
55 | ;
|
---|
56 |
|
---|
57 | return 0;
|
---|
58 | }
|
---|
59 | END
|
---|
60 |
|
---|
61 | set -e
|
---|
62 |
|
---|
63 | $ACLOCAL
|
---|
64 | $AUTOCONF
|
---|
65 | $AUTOMAKE -a
|
---|
66 |
|
---|
67 | mkdir sub
|
---|
68 | cd sub
|
---|
69 | ../configure
|
---|
70 | $MAKE foo/foo.o
|
---|
71 |
|
---|
72 | test -f foo/foo.c
|
---|
73 | test -f foo/foo.o
|
---|
74 |
|
---|
75 | # Now, adds another lexer to test ylwrap.
|
---|
76 |
|
---|
77 | cd ..
|
---|
78 | cp foo/foo.l foo/foo2.l
|
---|
79 | cat >> Makefile.am << 'END'
|
---|
80 | EXTRA_foo_foo_SOURCES = foo/foo2.l
|
---|
81 | END
|
---|
82 |
|
---|
83 | $AUTOMAKE -a
|
---|
84 | test -f ./ylwrap
|
---|
85 |
|
---|
86 | cd sub
|
---|
87 | $MAKE foo/foo2.o
|
---|
88 | test -f foo/foo2.c
|
---|
89 | test -f foo/foo2.o
|
---|
90 |
|
---|
91 | exit 0
|
---|