mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-10 21:03:04 +00:00
* Makefile.am (SUBDIRS): Adjust. * configure.in: Adjust. (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's useless. * src/alloca.c: Moved to lib/. * src/getopt.c: Likewise. * src/getopt1.c: Likewise. * src/getopt.h: Likewise. * src/ansi2knr.c: Likewise. * src/ansi2knr.1: Likewise. * src/Makefile.am: Adjust. * lib/Makefile.am: New file.
15 lines
327 B
Makefile
15 lines
327 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
|
|
|
|
libbison_a_SOURCES = getopt.c getopt1.c
|
|
|
|
libbison_a_LIBADD = @LIBOBJS@ @ALLOCA@
|
|
libbison_a_DEPENDENCIES = $(libbison_a_LIBADD)
|
|
|
|
noinst_HEADERS = getopt.h
|