aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1997-02-15 17:54:15 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1997-02-15 17:54:15 -0500
commit7c27f801dccbdf43001ac234bd61c7e7204db1d0 (patch)
tree6e776a4ca11bab63c1df8a62e613485cc395bd62 /gcc
parenteb2be0e65671bd5027d278d9baf36f0dc4c9215f (diff)
downloadgcc-7c27f801dccbdf43001ac234bd61c7e7204db1d0.zip
gcc-7c27f801dccbdf43001ac234bd61c7e7204db1d0.tar.gz
gcc-7c27f801dccbdf43001ac234bd61c7e7204db1d0.tar.bz2
(COMPILERS): Moved before GCC_PASSES.
(GCC_PASSES): Use $(COMPILERS) instead of cc1$(exeext). From-SVN: r13642
Diffstat (limited to 'gcc')
-rw-r--r--gcc/Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 797f2ab..8930969 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -340,9 +340,13 @@ FIXINCLUDES=fixincludes
# On most systems, this is empty.
OTHER_FIXINCLUDES_DIRS=
+# A list of all the language-specific executables.
+# This is overridden by configure.
+COMPILERS = cc1$(exeext) cc1obj$(exeext)
+
# List of things which should already be built whenever we try to use xgcc
# to compile anything (without linking).
-GCC_PASSES=xgcc$(exeext) cc1$(exeext) cpp$(exeext) $(EXTRA_PASSES)
+GCC_PASSES=xgcc$(exeext) $(COMPILERS) cpp$(exeext) $(EXTRA_PASSES)
# List of things which should already be built whenever we try to use xgcc
# to link anything.
@@ -514,10 +518,6 @@ FLAGS_TO_PASS = \
# Lists of files for various purposes.
-# A list of all the language-specific executables.
-# This is overridden by configure.
-COMPILERS = cc1$(exeext) cc1obj$(exeext)
-
# Language-specific object files for C.
C_OBJS = c-parse.o c-lang.o c-lex.o c-pragma.o \
c-decl.o c-typeck.o c-convert.o c-aux-info.o c-common.o c-iterate.o