Make: Fix build with tool chains that require depcomp

Commit fad8e7f7b "Move auxiliary build tools to build-aux/" moved
depcomp, but neglected to adjust Make.mk.  This broke the build with
tool chains that actually use depcomp.  Modern GCC and Clang don't.
Fix the obvious way.

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2020-12-26 09:08:37 +01:00
parent 10356f9ecf
commit 168db3b248

View file

@ -27,7 +27,7 @@
# Make.mk: The real Makefile, included by GNUmakefile # Make.mk: The real Makefile, included by GNUmakefile
# #
# Known contributors to this file: # Known contributors to this file:
# Markus Armbruster, 2005-2017 # Markus Armbruster, 2005-2020
# #
# This makefile was inspired by `Recursive Make Considered Harmful', # This makefile was inspired by `Recursive Make Considered Harmful',
@ -72,7 +72,7 @@ include $(srcdir)/info/subjects.mk
topics := $(patsubst %.t,%,$(notdir $(tsrc))) topics := $(patsubst %.t,%,$(notdir $(tsrc)))
info := $(topics) $(subjects) all TOP info := $(topics) $(subjects) all TOP
scripts := $(srcdir)/src/scripts scripts := $(srcdir)/src/scripts
depcomp := $(SHELL) $(srcdir)/depcomp depcomp := $(SHELL) $(srcdir)/build-aux/depcomp
tarball := $(SHELL) -e $(scripts)/tarball tarball := $(SHELL) -e $(scripts)/tarball
econfig := $(sysconfdir)/empire/econfig econfig := $(sysconfdir)/empire/econfig
schedule := $(sysconfdir)/empire/schedule schedule := $(sysconfdir)/empire/schedule