]> git.saurik.com Git - bison.git/blame_incremental - src/Makefile.am
Finish implementing %define lr.type.
[bison.git] / src / Makefile.am
... / ...
CommitLineData
1# Make bison/src.
2
3# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4# Free Software Foundation, Inc.
5
6# This program 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 3 of the License, or
9# (at your option) any later version.
10#
11# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
18
19AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
20AM_CPPFLAGS = -I$(top_srcdir)/lib
21AM_YFLAGS = "-dv"
22
23LDADD = ../lib/libbison.a $(LIBINTL)
24
25# Use our own Bison to build the parser. Of course, you ought to
26# keep a sane version of Bison nearby...
27YACC = ../tests/bison -y --warnings=all,error --report=all
28
29bin_PROGRAMS = bison
30bin_SCRIPTS = $(YACC_SCRIPT)
31EXTRA_SCRIPTS = yacc
32
33bison_SOURCES = \
34 AnnotationList.c AnnotationList.h \
35 InadequacyList.c InadequacyList.h \
36 LR0.c LR0.h \
37 Sbitset.c Sbitset.h \
38 assoc.c assoc.h \
39 closure.c closure.h \
40 complain.c complain.h \
41 conflicts.c conflicts.h \
42 derives.c derives.h \
43 files.c files.h \
44 flex-scanner.h \
45 getargs.c getargs.h \
46 gram.c gram.h \
47 lalr.h lalr.c \
48 ielr.h ielr.c \
49 location.c location.h \
50 main.c \
51 muscle_tab.c muscle_tab.h \
52 nullable.c nullable.h \
53 output.c output.h \
54 parse-gram.h parse-gram.y \
55 print.c print.h \
56 print_graph.c print_graph.h \
57 print-xml.c print-xml.h \
58 reader.c reader.h \
59 reduce.c reduce.h \
60 relation.c relation.h \
61 scan-code.h scan-code-c.c \
62 scan-gram.h scan-gram-c.c \
63 scan-skel.h scan-skel-c.c \
64 state.c state.h \
65 symlist.c symlist.h \
66 symtab.c symtab.h \
67 system.h \
68 tables.h tables.c \
69 uniqstr.c uniqstr.h \
70 graphviz.c graphviz.h
71
72EXTRA_bison_SOURCES = scan-code.l scan-skel.l scan-gram.l
73
74BUILT_SOURCES = \
75parse-gram.c parse-gram.h \
76scan-code.c \
77scan-skel.c \
78scan-gram.c
79
80MOSTLYCLEANFILES = yacc
81
82yacc:
83 echo '#! /bin/sh' >$@
84 echo "exec '$(bindir)/bison' -y "'"$$@"' >>$@
85 chmod a+x $@
86
87echo:
88 echo $(bison_SOURCES) $(noinst_HEADERS)
89
90# The following rule is not designed to be portable,
91# and relies on tools that not everyone has.
92
93# Most functions in src/*.c should have static scope.
94# Any that don't must be marked with `extern', but `main'
95# and `usage' are exceptions. They're always extern, but
96# don't need to be marked.
97#
98# The second nm|grep checks for file-scope variables with `extern' scope.
99sc_tight_scope: $(all_programs)
100 @t=exceptions-$$$$; \
101 trap 's=$$?; rm -f $$t; exit $$s' 0 1 2 13 15; \
102 ( printf '^main$$\n^usage$$\n'; \
103 grep -h -A1 '^extern .*[^;]$$' $(SOURCES) \
104 | grep -vE '^(extern |--)' |sed 's/^/^/;s/ .*/$$/' ) > $$t; \
105 if nm -e *.$(OBJEXT) \
106 | sed -n 's/.* T //p' \
107 | grep -Ev -f $$t; then \
108 echo 'the above functions should have static scope' 1>&2; \
109 exit 1; \
110 fi; \
111 ( printf '^program_name$$\n'; \
112 sed -n 's/^extern .*[* ]\([a-zA-Z_][a-zA-Z_0-9]*\);$$/^\1$$/p' \
113 $$(ls $(SOURCES) | grep '\.h$$') /dev/null) > $$t; \
114 if nm -e *.$(OBJEXT) \
115 | sed -n 's/.* [BD] //p' \
116 | grep -Ev -f $$t; then \
117 echo 'the above variables should have static scope' 1>&2; \
118 exit 1; \
119 fi