mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 20:33:03 +00:00
New, from fileutils 4.0.37. * configure.in: Require Autoconf 2.49c. I took some time before making this decision. This is the only way out for portability issues in Bison, it would mean way too much duplicate effort to import in Bison features implemented in 2.49c since 2.13. AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
23 lines
582 B
Makefile
23 lines
582 B
Makefile
## Process this file with automake to produce Makefile.in -*-Makefile-*-
|
|
|
|
AUTOMAKE_OPTIONS = ansi2knr
|
|
|
|
noinst_LIBRARIES = libbison.a
|
|
|
|
INCLUDES = -I.. -I$(srcdir) -I../intl
|
|
|
|
# Heck, we are still using an old version of Automake which does not
|
|
# understand LIBOBJ additions using $objext...
|
|
|
|
EXTRA_DIST = malloc.c realloc.c
|
|
|
|
libbison_a_SOURCES = \
|
|
error.c error.h \
|
|
getopt.h getopt.c getopt1.c \
|
|
obstack.h obstack.c \
|
|
quote.h quote.c quotearg.h quotearg.c \
|
|
xalloc.h xmalloc.c xstrdup.c
|
|
|
|
libbison_a_LIBADD = @LIBOBJS@ @ALLOCA@
|
|
libbison_a_DEPENDENCIES = $(libbison_a_LIBADD)
|