diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-15 00:44:32 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-15 00:44:32 +0000 |
commit | 262f598fcbdcf1002391967fa84092d34f4db9b7 (patch) | |
tree | be5dfaa31b6c9afedff9c14ea2e74d422505fee6 /gcc/objc/Make-lang.in | |
parent | ed45e834f305d1f2709bf200a13d5beebc2fcfee (diff) | |
download | gcc-262f598fcbdcf1002391967fa84092d34f4db9b7.tar.gz |
* objc/Make-lang.in (OBJC_O): Add missing exeext.
(libobjc.a, runtime-info.h): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19766 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/objc/Make-lang.in')
-rw-r--r-- | gcc/objc/Make-lang.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/objc/Make-lang.in b/gcc/objc/Make-lang.in index df6c3bcdfb4..3774e22e564 100644 --- a/gcc/objc/Make-lang.in +++ b/gcc/objc/Make-lang.in @@ -177,10 +177,10 @@ objc/libobjc_entry.o: $(srcdir)/objc/libobjc_entry.c $(GCC_PASSES) $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) \ -c $(srcdir)/objc/libobjc_entry.c -o $@ -$(OBJC_O): $(GCC_PASSES) cc1obj +$(OBJC_O): $(GCC_PASSES) cc1obj$(exeext) # Build the Objective C runtime library. -libobjc.a: cc1obj specs stmp-int-hdrs libgcc2.ready \ +libobjc.a: cc1obj$(exeext) specs stmp-int-hdrs libgcc2.ready \ $(USE_COLLECT2) $(EXTRA_PARTS) objc/runtime-info.h $(OBJC_O) -rm -f libobjc.a $(AR) $(AR_FLAGS) libobjc.a $(OBJC_O) @@ -208,7 +208,7 @@ libobjc.dll: libobjc_s.a objc/libobjc_entry.o --output-lib libobjc.a # Platform generated information needed by ObjC runtime -objc/runtime-info.h: cc1obj +objc/runtime-info.h: cc1obj$(exeext) echo "" > tmp-runtime echo "/* This file is automatically generated */" >$@ ./cc1obj -print-objc-runtime-info tmp-runtime >>$@ |