]> git.saurik.com Git - bison.git/blame - src/Makefile.am
src/location.h: #include "system.h" rather than <stdbool.h>.
[bison.git] / src / Makefile.am
CommitLineData
e9071366 1## Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
2c8a9dfa
AD
2
3## This program is free software; you can redistribute it and/or modify
4## it under the terms of the GNU General Public License as published by
5## the Free Software Foundation; either version 2 of the License, or
6## (at your option) any later version.
7
8## This program is distributed in the hope that it will be useful,
9## but WITHOUT ANY WARRANTY; without even the implied warranty of
10## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11## GNU General Public License for more details.
12
13## You should have received a copy of the GNU General Public License
14## along with this program; if not, write to the Free Software
0fb669f9
PE
15## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16## 02110-1301 USA
2c8a9dfa 17
04098407 18DEFS += -DPKGDATADIR=\"$(pkgdatadir)\" -DLOCALEDIR=\"$(datadir)/locale\"
095a3fb5 19
9abb46d5 20AM_CFLAGS = $(WARNING_CFLAGS) $(WERROR_CFLAGS)
dd0e0635 21AM_CPPFLAGS = -I$(top_srcdir)/lib -I../lib
9abb46d5 22AM_YFLAGS = "-dv"
2c8a9dfa 23
be14ade5 24LDADD = ../lib/libbison.a $(LIBINTL)
8ebbae2a 25
cd3684cf
AD
26# Use our own Bison to build the parser. Of course, you ought to
27# keep a sane version of Bison nearby...
28YACC = ../tests/bison -y
29
a0f6b076 30bin_PROGRAMS = bison
f0057011 31bin_SCRIPTS = $(YACC_SCRIPT)
a504e06d 32EXTRA_SCRIPTS = yacc
a0f6b076 33
04098407 34bison_SOURCES = \
0c15323d 35 LR0.c LR0.h \
a945ec39 36 assoc.c assoc.h \
0c15323d
AD
37 closure.c closure.h \
38 complain.c complain.h \
39 conflicts.c conflicts.h \
40 derives.c derives.h \
41 files.c files.h \
e9071366 42 flex-scanner.h \
0c15323d
AD
43 getargs.c getargs.h \
44 gram.c gram.h \
45 lalr.h lalr.c \
8efe435c 46 location.c location.h \
0c15323d
AD
47 main.c \
48 muscle_tab.c muscle_tab.h \
49 nullable.c nullable.h \
0c15323d
AD
50 output.c output.h \
51 parse-gram.h parse-gram.y \
52 print.c print.h \
53 print_graph.c print_graph.h \
54 reader.c reader.h \
55 reduce.c reduce.h \
7891a7c4 56 revision.c revision.h \
0e4d5753 57 relation.c relation.h \
e9071366
AD
58 scan-code.h scan-code-c.c \
59 scan-gram.h scan-gram-c.c \
60 scan-skel.h scan-skel-c.c \
0c15323d 61 state.c state.h \
56c47203 62 symlist.c symlist.h \
0c15323d
AD
63 symtab.c symtab.h \
64 system.h \
c6f1a33c 65 tables.h tables.c \
5bf3d7c1 66 uniqstr.c uniqstr.h \
0c15323d
AD
67 vcg.c vcg.h \
68 vcg_defaults.h
a0f6b076 69
e9071366 70EXTRA_bison_SOURCES = scan-code.l scan-skel.l scan-gram.l
2cec9080 71
e9071366
AD
72BUILT_SOURCES = \
73parse-gram.c parse-gram.h \
74revision.c \
75scan-code.c \
76scan-skel.c \
4862bdfd 77scan-gram.c
a67cef01 78
d8388d7a
PE
79MOSTLYCLEANFILES = yacc
80
81yacc:
82 echo '#! /bin/sh' >$@
e9071366 83 echo "exec '$(bindir)/bison' -y \"$$@\"" >>$@
d8388d7a
PE
84 chmod a+x $@
85
0c15323d
AD
86echo:
87 echo $(bison_SOURCES) $(noinst_HEADERS)
04098407 88
7891a7c4
JD
89revision.c: $(top_srcdir)/configure $(top_srcdir)/ChangeLog
90 case "$(VERSION)" in \
91 *+*) sed -n \
92 's/^\$$\(Id.*\)\$$$$/const char *revision = "\1\\n";/p' \
93 $(top_srcdir)/ChangeLog \
94 ;; \
95 *) echo 'const char *revision = "";' \
96 ;; \
97 esac >$@
98
04098407
PE
99# The following rule is not designed to be portable,
100# and relies on tools that not everyone has.
101
102# Most functions in src/*.c should have static scope.
103# Any that don't must be marked with `extern', but `main'
104# and `usage' are exceptions. They're always extern, but
105# don't need to be marked.
106#
107# The second nm|grep checks for file-scope variables with `extern' scope.
108sc_tight_scope: $(all_programs)
109 @t=exceptions-$$$$; \
110 trap 's=$$?; rm -f $$t; exit $$s' 0 1 2 13 15; \
111 ( printf '^main$$\n^usage$$\n'; \
112 grep -h -A1 '^extern .*[^;]$$' $(SOURCES) \
113 | grep -vE '^(extern |--)' |sed 's/^/^/;s/ .*/$$/' ) > $$t; \
114 if nm -e *.$(OBJEXT) \
115 | sed -n 's/.* T //p' \
116 | grep -Ev -f $$t; then \
117 echo 'the above functions should have static scope' 1>&2; \
118 exit 1; \
119 fi; \
120 ( printf '^program_name$$\n'; \
121 sed -n 's/^extern .*[* ]\([a-zA-Z_][a-zA-Z_0-9]*\);$$/^\1$$/p' \
122 $$(ls $(SOURCES) | grep '\.h$$') /dev/null) > $$t; \
123 if nm -e *.$(OBJEXT) \
124 | sed -n 's/.* [BD] //p' \
125 | grep -Ev -f $$t; then \
126 echo 'the above variables should have static scope' 1>&2; \
127 exit 1; \
128 fi