diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-17 11:22:58 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-17 11:22:58 +0000 |
commit | 61a0eea4ad87a5407539ecc3ddc833784e065b70 (patch) | |
tree | 8c49fa072c292a73ecd2afd596f3160e7d85dc35 /libobjc | |
parent | da9ff11a601bb8c40b41046c9c037ff9dc9b5e45 (diff) | |
download | gcc-61a0eea4ad87a5407539ecc3ddc833784e065b70.tar.gz |
* config-ml.in (multi-do): Pass MULTIFLAGS to subdir makes.
libobjc:
* Makefile.in (runtime-info.h): Use MULTIFLAGS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72598 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc')
-rw-r--r-- | libobjc/ChangeLog | 4 | ||||
-rw-r--r-- | libobjc/Makefile.in | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index b0d08efb156..b7226be1c69 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,7 @@ +2003-10-17 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> + + * Makefile.in (runtime-info.h): Use MULTIFLAGS. + 2003-09-09 Alan Modra <amodra@bigpond.net.au> * configure: Regenerate. diff --git a/libobjc/Makefile.in b/libobjc/Makefile.in index aea1e2ce32b..85894698222 100644 --- a/libobjc/Makefile.in +++ b/libobjc/Makefile.in @@ -1,5 +1,6 @@ -#Makefile for GNU Objective C runtime library. -#Copyright (C) 1993, 95-98, 1999, 2001 Free Software Foundation, Inc. +# Makefile for GNU Objective C runtime library. +# Copyright (C) 1993, 95-98, 1999, 2001, 2002, 2003 +# Free Software Foundation, Inc. #This file is part of GCC. @@ -162,7 +163,7 @@ OBJS_GC = archive_gc.lo class_gc.lo encoding_gc.lo gc_gc.lo hash_gc.lo \ runtime-info.h: echo "" > tmp-runtime echo "/* This file is automatically generated */" > $@ - $(CC1OBJ) -print-objc-runtime-info tmp-runtime >> $@ + $(CC1OBJ) $(MULTIFLAGS) -print-objc-runtime-info tmp-runtime >> $@ rm -f tmp-runtime archive_gc.lo: archive.c |