diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-21 23:49:21 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-21 23:49:21 +0000 |
commit | 42c222e7f19b39866400c7ccff303462895541c2 (patch) | |
tree | 5240b7a4f0500e5deec9e22693866f5132d9e2ad /gcc/objc | |
parent | 7f6a6499e6ae65cd032c8b0571227152af3f6824 (diff) | |
download | gcc-42c222e7f19b39866400c7ccff303462895541c2.tar.gz |
* objc/Makefile.in: Various fixes for building cygwin32 native toolchains.
* objc/Make-lang.in: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18744 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/Make-lang.in | 6 | ||||
-rw-r--r-- | gcc/objc/Makefile.in | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gcc/objc/Make-lang.in b/gcc/objc/Make-lang.in index 5bf6b3417ed..f5f8289f580 100644 --- a/gcc/objc/Make-lang.in +++ b/gcc/objc/Make-lang.in @@ -50,8 +50,8 @@ OBJC_FLAGS_TO_PASS = \ # # Define the names for selecting Objective-C in LANGUAGES. -OBJC objc: cc1obj objc-runtime -OBJECTIVE-C objective-c: cc1obj objc-runtime +OBJC objc: cc1obj$(exeext) objc-runtime +OBJECTIVE-C objective-c: cc1obj$(exeext) objc-runtime # Tell GNU make to ignore these if they exist. .PHONY: objective-c objc ObjC @@ -62,7 +62,7 @@ OBJC_THREAD_FILE=thr-$(GCC_THREAD_FILE) # Language-specific object files for Objective C. 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) \ $(LIBS) diff --git a/gcc/objc/Makefile.in b/gcc/objc/Makefile.in index 9d521f54cdc..5f1bc8811eb 100644 --- a/gcc/objc/Makefile.in +++ b/gcc/objc/Makefile.in @@ -63,7 +63,7 @@ OBJC_H = hash.h objc-list.h sarray.h objc.h objc-api.h \ all.indirect: Makefile compiler objc-runtime compiler: - cd ..; $(MAKE) cc1obj + cd ..; $(MAKE) cc1obj$(exeext) objc-runtime: cd ..; $(MAKE) libobjc.a |