Commit 35d541d4 by Nick Clifton Committed by Jeff Law

Makefile.in: Various fixes for building cygwin32 native toolchains.

        * objc/Makefile.in: Various fixes for building cygwin32 native toolchains.
        * objc/Make-lang.in: Likewise.

Co-Authored-By: Geoff Noer <noer@cygnus.com>

From-SVN: r18744
parent e09e14e9
...@@ -3,6 +3,9 @@ Sun Mar 22 00:50:42 1998 Nick Clifton <nickc@cygnus.com> ...@@ -3,6 +3,9 @@ Sun Mar 22 00:50:42 1998 Nick Clifton <nickc@cygnus.com>
* Makefile.in: Various fixes for building cygwin32 native toolchains. * Makefile.in: Various fixes for building cygwin32 native toolchains.
* objc/Makefile.in: Various fixes for building cygwin32 native toolchains.
* objc/Make-lang.in: Likewise.
Sun Mar 22 00:21:46 1998 R. Ganesan <rganesan@novell.com> Sun Mar 22 00:21:46 1998 R. Ganesan <rganesan@novell.com>
* configure.in: Handle with-PACKAGE=no correctly * configure.in: Handle with-PACKAGE=no correctly
......
...@@ -50,8 +50,8 @@ OBJC_FLAGS_TO_PASS = \ ...@@ -50,8 +50,8 @@ OBJC_FLAGS_TO_PASS = \
# #
# Define the names for selecting Objective-C in LANGUAGES. # Define the names for selecting Objective-C in LANGUAGES.
OBJC objc: cc1obj objc-runtime OBJC objc: cc1obj$(exeext) objc-runtime
OBJECTIVE-C objective-c: cc1obj objc-runtime OBJECTIVE-C objective-c: cc1obj$(exeext) objc-runtime
# Tell GNU make to ignore these if they exist. # Tell GNU make to ignore these if they exist.
.PHONY: objective-c objc ObjC .PHONY: objective-c objc ObjC
...@@ -62,7 +62,7 @@ OBJC_THREAD_FILE=thr-$(GCC_THREAD_FILE) ...@@ -62,7 +62,7 @@ OBJC_THREAD_FILE=thr-$(GCC_THREAD_FILE)
# Language-specific object files for Objective C. # Language-specific object files for Objective C.
OBJC_OBJS = objc-parse.o objc-act.o $(C_AND_OBJC_OBJS) OBJC_OBJS = objc-parse.o objc-act.o $(C_AND_OBJC_OBJS)
cc1obj: $(P) $(OBJC_OBJS) $(OBJS) $(LIBDEPS) cc1obj$(exeext): $(P) $(OBJC_OBJS) $(OBJS) $(LIBDEPS)
$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(OBJC_OBJS) $(OBJS) \ $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(OBJC_OBJS) $(OBJS) \
$(LIBS) $(LIBS)
......
...@@ -63,7 +63,7 @@ OBJC_H = hash.h objc-list.h sarray.h objc.h objc-api.h \ ...@@ -63,7 +63,7 @@ OBJC_H = hash.h objc-list.h sarray.h objc.h objc-api.h \
all.indirect: Makefile compiler objc-runtime all.indirect: Makefile compiler objc-runtime
compiler: compiler:
cd ..; $(MAKE) cc1obj cd ..; $(MAKE) cc1obj$(exeext)
objc-runtime: objc-runtime:
cd ..; $(MAKE) libobjc.a cd ..; $(MAKE) libobjc.a
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment