aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-09-22 02:30:41 +0000
committerRichard Stallman <rms@gnu.org>1993-09-22 02:30:41 +0000
commit0defb1d5a1f868c88d47673936e637d78e6ad9ab (patch)
treee62370dfb2bcbe952cac1909294d25ef9ac9f672
parent04c3f19d04b58ea73af887504dcb3b04527f12d9 (diff)
downloadgcc-0defb1d5a1f868c88d47673936e637d78e6ad9ab.zip
gcc-0defb1d5a1f868c88d47673936e637d78e6ad9ab.tar.gz
gcc-0defb1d5a1f868c88d47673936e637d78e6ad9ab.tar.bz2
(ENQUIRE, CROSS_TEST): New variables.
(all.cross): Use them. From-SVN: r5382
-rw-r--r--gcc/Makefile.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 2c044ee..955d7e7 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -209,6 +209,13 @@ LIBGCC2_INCLUDES =
# Some targets override this to stmp-int-hdrs
LIBGCC2_DEPS =
+# Enquire target (This is a variable so that a target can choose not to
+# build it.)
+ENQUIRE = enquire
+
+# Cross-test target (must also be overridable for a target)
+CROSS_TEST = cross-test
+
# List of extra executables that should be compiled for this target machine
# that are used for compiling from source code to object code.
# The rules for compiling them should be in the t-* file for the machine.
@@ -477,7 +484,7 @@ all.internal: start.encap rest.encap
# This is what to compile if making a cross-compiler.
# Note that we can compile enquire using the cross-compiler just build,
# although we can't run it on this machine.
-all.cross: native gcc-cross g++-cross specs $(LIBGCC) stmp-headers $(STMP_FIXPROTO) cross-test enquire $(EXTRA_PARTS)
+all.cross: native gcc-cross g++-cross specs $(LIBGCC) stmp-headers $(STMP_FIXPROTO) $(CROSS_TEST) $(ENQUIRE) $(EXTRA_PARTS)
# This is what to compile if making gcc with a cross-compiler.
all.build: native xgcc g++ $(EXTRA_PARTS)
# This is what must be made before installing GCC and converting libraries.