]>
Commit | Line | Data |
---|---|---|
8ebbae2a | 1 | ## Process this file with automake to produce Makefile.in -*-Makefile-*- |
18539825 | 2 | AUTOMAKE_OPTIONS = 1.4 ../lib/ansi2knr |
8c44d3ec | 3 | DEFS = @DEFS@ \ |
29092a57 AD |
4 | -DBISON_SIMPLE=\"$(pkgdatadir)/bison.simple\" \ |
5 | -DBISON_HAIRY=\"$(pkgdatadir)/bison.hairy\" \ | |
6 | -DLOCALEDIR=\"$(datadir)/locale\" | |
095a3fb5 | 7 | |
e0327bc8 AD |
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 | |
8ebbae2a | 16 | |
a0f6b076 AD |
17 | bin_PROGRAMS = bison |
18 | ||
d7913476 | 19 | bison_SOURCES = LR0.c closure.c complain.c conflicts.c \ |
a0f6b076 | 20 | derives.c \ |
bbb5bcc6 | 21 | files.c getargs.c gram.c lalr.c lex.c main.c nullable.c \ |
11d82f03 | 22 | output.c print_graph.c \ |
82b6d266 | 23 | muscle_tab.c options.c \ |
11d82f03 | 24 | print.c reader.c reduce.c symtab.c warshall.c vcg.c |
a0f6b076 AD |
25 | |
26 | EXTRA_bison_SOURCES = vmsgetargs.c | |
27 | ||
d7913476 | 28 | noinst_HEADERS = LR0.h closure.h complain.h conflicts.h \ |
2fa6973e | 29 | derives.h \ |
bbb5bcc6 | 30 | files.h getargs.h gram.h lalr.h lex.h nullable.h \ |
11d82f03 | 31 | output.h print_graph.h \ |
82b6d266 | 32 | muscle_tab.h options.h \ |
11d82f03 MA |
33 | print.h reader.h reduce.h state.h symtab.h warshall.h system.h \ |
34 | types.h vcg.h vcg_defaults.h | |
8ebbae2a | 35 | |
29092a57 | 36 | pkgdata_DATA = bison.simple bison.hairy |
8ebbae2a | 37 | |
29092a57 | 38 | EXTRA_DIST = $(pkgdata_DATA) build.com bison.cld vmshlp.mar |