]>
Commit | Line | Data |
---|---|---|
1 | ## Process this file with automake to produce Makefile.in -*-Makefile-*- | |
2 | AUTOMAKE_OPTIONS = 1.4 ../lib/ansi2knr | |
3 | DEFS = @DEFS@ \ | |
4 | -DBISON_SIMPLE=\"$(pkgdatadir)/bison.simple\" \ | |
5 | -DBISON_HAIRY=\"$(pkgdatadir)/bison.hairy\" \ | |
6 | -DLOCALEDIR=\"$(datadir)/locale\" | |
7 | ||
8 | # libintl.h in is build/intl, intl/libgettext.h in src/, | |
9 | # config.h in build/. | |
10 | INCLUDES = -I$(top_builddir)/intl \ | |
11 | -I$(top_builddir) \ | |
12 | -I$(top_srcdir)/lib \ | |
13 | -I$(top_srcdir) | |
14 | ||
15 | LDADD = $(INTLLIBS) ../lib/libbison.a | |
16 | ||
17 | bin_PROGRAMS = bison | |
18 | ||
19 | bison_SOURCES = LR0.c closure.c complain.c conflicts.c \ | |
20 | derives.c \ | |
21 | files.c getargs.c gram.c lalr.c lex.c main.c nullable.c \ | |
22 | output.c print_graph.c \ | |
23 | muscle_tab.c options.c \ | |
24 | print.c reader.c reduce.c symtab.c warshall.c vcg.c | |
25 | ||
26 | EXTRA_bison_SOURCES = vmsgetargs.c | |
27 | ||
28 | noinst_HEADERS = LR0.h closure.h complain.h conflicts.h \ | |
29 | derives.h \ | |
30 | files.h getargs.h gram.h lalr.h lex.h nullable.h \ | |
31 | output.h print_graph.h \ | |
32 | muscle_tab.h options.h \ | |
33 | print.h reader.h reduce.h state.h symtab.h warshall.h system.h \ | |
34 | types.h vcg.h vcg_defaults.h | |
35 | ||
36 | pkgdata_DATA = bison.simple bison.hairy | |
37 | ||
38 | EXTRA_DIST = $(pkgdata_DATA) build.com bison.cld vmshlp.mar |