2 # Copyright (C) 2002-2012 Free Software Foundation, Inc.
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)
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.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # C sources derived from nodist_ yacc sources should not be distributed.
19 # See also related test 'yacc-nodist.sh'.
20 # The tests 'lex-nodist.sh' and 'lex-pr204.sh' does similar checks
21 # for lex-generated C files.
26 cat >> configure.ac
<<'EOF'
33 # The PARSE2 intermediate variable is there to make
34 # sure Automake match 'nodist_' against the right
36 cat > Makefile.am
<< 'EOF'
40 nodist_foo_SOURCES
= parse.y $
(PARSE2
)
43 test ! -f $
(distdir
)/parse.c
44 test ! -f $
(distdir
)/parse.y
45 test ! -f $
(distdir
)/parse.h
46 test ! -f $
(distdir
)/parse2.c
47 test ! -f $
(distdir
)/parse2.y
48 test ! -f $
(distdir
)/parse2.h
51 cat > parse.y
<< 'END'
53 int yylex
() {return 0;}
54 void yyerror
(char
*s
) {}
57 maude
: 'm' 'a' 'u' 'd' 'e' {};
69 # Make sure parse.c and parse2.c are still targets.
70 $MAKE parse.c parse2.c
74 # Ensure the rebuild rule works despite AM_MAINTAINER_MODE, because
75 # it's a nodist_ parser.
77 touch parse.y parse2.y
79 $MAKE parse.c parse2.c
80 is_newest parse.c parse.y
81 is_newest parse2.c parse2.y