mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 20:33:03 +00:00
Some of our targets use "bison --help", but they can't depend on "bison" itself (to avoid additional requirements on the user), so they used to call "make src/bison" in the commands. Then concurrent builds may fail: one make might be aiming one of its jobs at compiling src/bison, and another job at generating the man page. If the latter is faster than the former, then we have two makes that concurrently try to compile src/bison. This might also be a more convincing explanation for the failure described in the patch "build: fix paths". * Makefile.am (SUFFIXES): Initialize. * build-aux/move-if-change: New, symlink to gnulib's. * build-aux/local.mk: Ship it. * doc/common.x: Remove, merged into... * doc/bison.x: here. * doc/local.mk (doc/bison.help): New. ($(CROSS_OPTIONS_TEXI)): Depend on it. Use src/bison. (.x.1): Replace with... (doc/bison.1): this explicit, simpler, target. (common_dep): Remove, inlined where appropriate. (SUFFIXES, PREPATH): Remove, unused.
71 lines
2.4 KiB
Makefile
71 lines
2.4 KiB
Makefile
## Process this file with automake to produce Makefile.in -*-Makefile-*-
|
|
## Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
|
|
## Free Software Foundation, Inc.
|
|
|
|
## This program is free software: you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation, either version 3 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = po runtime-po .
|
|
if BISON_CXX_WORKS
|
|
SUBDIRS += examples/calc++
|
|
endif
|
|
|
|
# Files installed for use by Automake.
|
|
aclocaldir = @aclocaldir@
|
|
aclocal_DATA = m4/bison-i18n.m4
|
|
|
|
EXTRA_DIST = .prev-version .version \
|
|
cfg.mk \
|
|
OChangeLog PACKAGING
|
|
|
|
# Initialization before completion by local.mk's.
|
|
AM_CFLAGS = $(WARN_CFLAGS)
|
|
AM_CPPFLAGS =
|
|
BUILT_SOURCES =
|
|
DISTCLEANFILES =
|
|
MOSTLYCLEANFILES =
|
|
SUFFIXES =
|
|
include build-aux/local.mk
|
|
include data/local.mk
|
|
include djgpp/local.mk
|
|
include doc/local.mk
|
|
include etc/local.mk
|
|
include examples/local.mk
|
|
include lib/local.mk
|
|
include src/local.mk
|
|
include tests/local.mk
|
|
|
|
# See comments in build-aux/git-version-gen. However, we make .version depend
|
|
# on configure so that .version and VERSION/PACKAGE_VERSION stay in sync in the
|
|
# working copy (for example, when you run autoreconf && make). Allowing these
|
|
# to fall out of sync appears to have little potential to improve Bison build
|
|
# efficiency (even if we were to replace VERSION/PACKAGE_VERSION with .version
|
|
# everywhere possible). On the other hand, it could be harmful. For example,
|
|
# a developer might naively reference .version in a test case while the bison
|
|
# executable still compiles with VERSION, and so the test case might fail or
|
|
# pass incorrectly.
|
|
BUILT_SOURCES += $(top_srcdir)/.version
|
|
$(top_srcdir)/.version: configure
|
|
echo $(VERSION) > $@-t && mv $@-t $@
|
|
dist-hook:
|
|
echo $(VERSION) > $(distdir)/.tarball-version
|
|
|
|
.PHONY: update-b4-copyright
|
|
update-b4-copyright:
|
|
find data -type f \
|
|
| grep -v -E '^data/bison.m4$$' \
|
|
| xargs $(build_aux)/$@
|
|
@echo 'warning: src/parse-gram.[hc] may need to be regenerated.'
|