1 ## Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
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 3 of the License, or
7 ## (at your option) any later version.
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 AUTOMAKE_OPTIONS = subdir-objects
19 AM_CPPFLAGS = -I$(top_srcdir)/lib
20 # Find builddir/src/scan-code.c etc.
21 AM_CPPFLAGS += -I$(top_builddir)
23 AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
25 LDADD = $(top_builddir)/lib/libbison.a $(LIBINTL)
27 # Use our own Bison to build the parser. Of course, you ought to
28 # keep a sane version of Bison nearby...
29 YACC = $(top_builddir)/tests/bison -y
30 AM_YFLAGS = -dv --warnings=all,error --report=all
32 bin_PROGRAMS = src/bison
33 bin_SCRIPTS = $(YACC_SCRIPT)
34 EXTRA_SCRIPTS = src/yacc
101 EXTRA_src_bison_SOURCES = \
113 MOSTLYCLEANFILES = src/yacc
117 echo '#! /bin/sh' >$@.tmp
118 echo "exec '$(bindir)/bison' -y "'"$$@"' >>$@.tmp
123 echo $(src_bison_SOURCES) $(noinst_HEADERS)
125 # The following rule is not designed to be portable,
126 # and relies on tools that not everyone has.
128 # Most functions in src/*.c should have static scope.
129 # Any that don't must be marked with `extern', but `main'
130 # and `usage' are exceptions. They're always extern, but
131 # don't need to be marked.
133 # The second nm|grep checks for file-scope variables with `extern' scope.
134 sc_tight_scope: $(all_programs)
135 @t=exceptions-$$$$; \
136 trap 's=$$?; rm -f $$t; exit $$s' 0 1 2 13 15; \
137 ( printf '^main$$\n^usage$$\n'; \
138 grep -h -A1 '^extern .*[^;]$$' $(SOURCES) \
139 | grep -vE '^(extern |--)' |sed 's/^/^/;s/ .*/$$/' ) > $$t; \
140 if nm -e *.$(OBJEXT) \
141 | sed -n 's/.* T //p' \
142 | grep -Ev -f $$t; then \
143 echo 'the above functions should have static scope' 1>&2; \
146 ( printf '^program_name$$\n'; \
147 sed -n 's/^extern .*[* ]\([a-zA-Z_][a-zA-Z_0-9]*\);$$/^\1$$/p' \
148 $$(ls $(SOURCES) | grep '\.h$$') /dev/null) > $$t; \
149 if nm -e *.$(OBJEXT) \
150 | sed -n 's/.* [BD] //p' \
151 | grep -Ev -f $$t; then \
152 echo 'the above variables should have static scope' 1>&2; \