]> git.saurik.com Git - bison.git/blame - src/Makefile.am
Separate parser tables computation and output.
[bison.git] / src / Makefile.am
CommitLineData
be2a1a68 1## Copyright (C) 2001, 2002 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
15## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
16## 02111-1307 USA
17
18AUTOMAKE_OPTIONS = ../lib/ansi2knr
19
8c44d3ec 20DEFS = @DEFS@ \
be2a1a68 21 -DPKGDATADIR=\"$(pkgdatadir)\" \
29092a57 22 -DLOCALEDIR=\"$(datadir)/locale\"
095a3fb5 23
cae60122 24CFLAGS = @CFLAGS@ $(WARNING_CFLAGS) $(WERROR_CFLAGS)
9b3add5b 25YFLAGS = "-dv"
2c8a9dfa 26
e0327bc8
AD
27# libintl.h in is build/intl, intl/libgettext.h in src/,
28# config.h in build/.
29INCLUDES = -I$(top_builddir)/intl \
30 -I$(top_builddir) \
dbfb6dcd
AD
31 -I$(top_srcdir)/intl \
32 -I$(top_srcdir)/lib
e0327bc8
AD
33
34LDADD = $(INTLLIBS) ../lib/libbison.a
8ebbae2a 35
a0f6b076
AD
36bin_PROGRAMS = bison
37
0c15323d
AD
38bison_SOURCES = \
39 LR0.c LR0.h \
a945ec39 40 assoc.c assoc.h \
0c15323d
AD
41 closure.c closure.h \
42 complain.c complain.h \
43 conflicts.c conflicts.h \
44 derives.c derives.h \
45 files.c files.h \
46 getargs.c getargs.h \
47 gram.c gram.h \
48 lalr.h lalr.c \
8efe435c 49 location.c location.h \
0c15323d
AD
50 main.c \
51 muscle_tab.c muscle_tab.h \
52 nullable.c nullable.h \
0c15323d
AD
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 reader.c reader.h \
58 reduce.c reduce.h \
0e4d5753 59 relation.c relation.h \
0c15323d
AD
60 scan-gram.l \
61 scan-skel.l \
62 state.c state.h \
56c47203 63 symlist.c symlist.h \
0c15323d
AD
64 symtab.c symtab.h \
65 system.h \
c6f1a33c 66 tables.h tables.c \
0c15323d
AD
67 vcg.c vcg.h \
68 vcg_defaults.h
a0f6b076 69
e9955c83 70BUILT_SOURCES = scan-skel.c scan-gram.c parse-gram.c parse-gram.h
a67cef01 71
a0f6b076
AD
72EXTRA_bison_SOURCES = vmsgetargs.c
73
5bb18f9a 74EXTRA_DIST = build.com bison.cld vmshlp.mar
0c15323d
AD
75
76echo:
77 echo $(bison_SOURCES) $(noinst_HEADERS)