OSDN Git Service

* objc/Make-lang.in (OBJC_O): Add missing exeext.
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 15 May 1998 00:44:32 +0000 (00:44 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 15 May 1998 00:44:32 +0000 (00:44 +0000)
        (libobjc.a, runtime-info.h): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19766 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/objc/Make-lang.in

index b53497c..d588c0f 100644 (file)
@@ -1,3 +1,8 @@
+Fri May 15 01:42:45 1998  Mumit Khan <khan@xraylith.wisc.edu>
+
+       * objc/Make-lang.in (OBJC_O): Add missing exeext.
+       (libobjc.a, runtime-info.h): Likewise.
+
 Fri May 15 01:29:39 1998  John Wehle  (john@feith.com)
 
        * i386.h (DATA_ALIGNMENT): Define.
index df6c3bc..3774e22 100644 (file)
@@ -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 >>$@