2 # Copyright (C) 2001-2013 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/>.
17 # Some simple tests of ylwrap functionality.
22 cat >> configure.ac << 'END'
28 cat > Makefile.am << 'END'
29 bin_PROGRAMS = foo bar
30 foo_SOURCES = parse.y foo.c
31 bar_SOURCES = bar.y foo.c
35 cat > parse.y << 'END'
37 int yylex () { return 0; }
38 void yyerror (char *s) {}
41 foobar : 'f' 'o' 'o' 'b' 'a' 'r' {};
47 int yylex () { return 0; }
48 void yyerror (char *s) {}
51 fubar : 'f' 'o' 'o' 'b' 'a' 'r' {};
73 grep '^#.*/sub/\.\./' bar.c && exit 1
74 grep '^#.*/sub/\.\./' parse.c && exit 1
76 # Make distclean must not erase bar.c nor parse.c (by GNU standards) ...
80 # ... but maintainer-clean should.
82 $MAKE maintainer-clean