]>
Commit | Line | Data |
---|---|---|
8ebbae2a | 1 | ## Process this file with automake to produce Makefile.in -*-Makefile-*- |
18539825 | 2 | AUTOMAKE_OPTIONS = 1.4 ../lib/ansi2knr |
8ebbae2a | 3 | |
8c44d3ec AD |
4 | DEFS = @DEFS@ \ |
5 | -DXPFILE=\"${datadir}/bison.simple\" \ | |
6 | -DXPFILE1=\"${datadir}/bison.hairy\" \ | |
7 | -DLOCALEDIR=\"${datadir}/locale\" | |
cbd25751 | 8 | INCLUDES = -I../intl -I$(top_srcdir)/lib -I.. |
18539825 | 9 | LDADD = @INTLLIBS@ ../lib/libbison.a |
8ebbae2a | 10 | |
a0f6b076 AD |
11 | bin_PROGRAMS = bison |
12 | ||
d7913476 | 13 | bison_SOURCES = LR0.c closure.c complain.c conflicts.c \ |
a0f6b076 AD |
14 | derives.c \ |
15 | files.c getargs.c gram.c lalr.c lex.c main.c nullable.c \ | |
16 | output.c \ | |
17 | print.c reader.c reduce.c symtab.c warshall.c | |
18 | ||
19 | EXTRA_bison_SOURCES = vmsgetargs.c | |
20 | ||
d7913476 | 21 | noinst_HEADERS = LR0.h closure.h complain.h conflicts.h \ |
2fa6973e | 22 | derives.h \ |
3519ec76 | 23 | files.h getargs.h gram.h lalr.h lex.h nullable.h \ |
6c89f1c1 | 24 | output.h state.h \ |
d7913476 | 25 | print.h reader.h reduce.h symtab.h warshall.h system.h types.h |
8ebbae2a JT |
26 | |
27 | data_DATA = bison.simple bison.hairy | |
28 | ||
29 | EXTRA_DIST = bison.s1 bison.hairy build.com bison.cld vmshlp.mar | |
30 | ||
31 | bison.simple: bison.s1 Makefile | |
8c44d3ec AD |
32 | sed -e "s/@bison_version@/$(VERSION)/" $(srcdir)/bison.s1 | \ |
33 | awk '\ | |
dbe7f271 | 34 | /^#line/ { printf "#line %d \"$(datadir)/bison.simple\"\n", NR+1; next }\ |
8c44d3ec AD |
35 | { print }' >$@t |
36 | mv $@t $@ | |
8ebbae2a JT |
37 | |
38 | DISTCLEANFILES = bison.simple |