aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPer Bothner <bothner@cygnus.com>1997-08-02 20:59:17 +0000
committerPer Bothner <bothner@cygnus.com>1997-08-02 20:59:17 +0000
commit03d62b9a7ed8249eceae2cf0b9c278c2cc44896b (patch)
treed192322b400759a0fe29851dcd127bc20485f2b1
parent6444325aa90f334a0ad2af67dd7c546261747ff0 (diff)
* Makefile.in (EXTRA_C_OBJS): Removed.
(C_AND_OBJC_OBJS): New. Subsumes EXTRA_C_OBJS and OBJC_CCOMMON. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@14631 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 6d79809ae20..95aa9ba6514 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -304,9 +304,6 @@ EXTRA_OBJS = @extra_objs@
# the gcc driver.
EXTRA_GCC_OBJS =@host_extra_gcc_objs@
-# List of extra object files that should be compiled and linked with cc1.
-EXTRA_C_OBJS =@extra_c_objs@
-
# List of additional header files to install.
# Often this is edited directly by `configure'.
EXTRA_HEADERS =@extra_headers_list@
@@ -537,9 +534,12 @@ FLAGS_TO_PASS = \
#
# Lists of files for various purposes.
+# Language-specific object files for C and Objective C.
+C_AND_OBJC_OBJS = 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 @extra_c_objs@
+
# Language-specific object files for C.
-C_OBJS = c-parse.o c-lang.o c-lex.o c-pragma.o $(EXTRA_C_OBJS) \
- c-decl.o c-typeck.o c-convert.o c-aux-info.o c-common.o c-iterate.o
+C_OBJS = c-parse.o c-lang.o $(C_AND_OBJC_OBJS)
# Files specific to the C interpreter bytecode compiler(s).
BC_OBJS = bc-emit.o bc-optab.o