]>
Commit | Line | Data |
---|---|---|
1 | ## Process this file with automake to produce Makefile.in -*-Makefile-*- | |
2 | ||
3 | AUTOMAKE_OPTIONS = ansi2knr | |
4 | ||
5 | noinst_LIBRARIES = libbison.a | |
6 | ||
7 | INCLUDES = -I.. -I$(srcdir) -I../intl | |
8 | ||
9 | # Heck, we are still using an old version of Automake which does not | |
10 | # understand LIBOBJ additions using $objext... | |
11 | ||
12 | EXTRA_DIST = malloc.c realloc.c | |
13 | ||
14 | libbison_a_SOURCES = \ | |
15 | error.c error.h \ | |
16 | getopt.h getopt.c getopt1.c \ | |
17 | obstack.h obstack.c \ | |
18 | quote.h quote.c quotearg.h quotearg.c \ | |
19 | xalloc.h xmalloc.c xstrdup.c | |
20 | ||
21 | libbison_a_LIBADD = @LIBOBJS@ @ALLOCA@ | |
22 | libbison_a_DEPENDENCIES = $(libbison_a_LIBADD) |