diff options
author | Kresten Krab Thorup <krab@gcc.gnu.org> | 1993-04-26 07:38:11 +0000 |
---|---|---|
committer | Kresten Krab Thorup <krab@gcc.gnu.org> | 1993-04-26 07:38:11 +0000 |
commit | c68873264d1f2c8c17048daa17194f18943b4d06 (patch) | |
tree | a5b9e0bf509eb3884ab55e51cb20681b0f5fe8b4 /gcc | |
parent | a31efb86f6ecca9029e8e9842355ea0091c439e2 (diff) | |
download | gcc-c68873264d1f2c8c17048daa17194f18943b4d06.zip gcc-c68873264d1f2c8c17048daa17194f18943b4d06.tar.gz gcc-c68873264d1f2c8c17048daa17194f18943b4d06.tar.bz2 |
new #define used to control inclusion of gstdarg or stdarg for the runtime.
new #define used to control inclusion
of gstdarg or stdarg for the runtime. .
From-SVN: r4227
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/objc/Makefile.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/objc/Makefile.in b/gcc/objc/Makefile.in index 5bd7bc4..656fcdd 100644 --- a/gcc/objc/Makefile.in +++ b/gcc/objc/Makefile.in @@ -29,6 +29,7 @@ .SUFFIXES: .m OPTIMIZE= -O +CFLAGS = $(GCC_CFLAGS) -DIN_OBJC VPATH = $(srcdir)/objc @@ -39,11 +40,12 @@ AR_FLAGS = rc SUBDIR_INCLUDES = -I. -I.. -I$(srcdir) -I$(srcdir)/config .c.o: - $(GCC_FOR_TARGET) $(OPTIMIZE) -c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $< + $(GCC_FOR_TARGET) $(OPTIMIZE) \ + -c $(CFLAGS) $(SUBDIR_INCLUDES) $< .m.o: $(GCC_FOR_TARGET) $(OPTIMIZE) -fgnu-runtime \ - -c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $< + -c $(CFLAGS) $(SUBDIR_INCLUDES) $< # If we were not invoked from the parent dir, # invoke make in the parent dir and have reinvoke this makefile. @@ -74,11 +76,11 @@ copy-headers: $(OBJC_H) done sendmsg.o: sendmsg.c fflags - $(GCC_FOR_TARGET) `cat fflags` -c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $(srcdir)/objc/sendmsg.c + $(GCC_FOR_TARGET) `cat fflags` -c $(CFLAGS) $(SUBDIR_INCLUDES) $(srcdir)/objc/sendmsg.c ## Next to are for heuristics on forwarding mechanism... _forward: _forward.c - -$(GCC_FOR_TARGET) -c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $(srcdir)/objc/_forward.c + -$(GCC_FOR_TARGET) -c $(CFLAGS) $(SUBDIR_INCLUDES) $(srcdir)/objc/_forward.c -$(GCC_FOR_TARGET) ./_forward.o -o _forward if [ \! -f ./_forward ]; then touch ./_forward; fi |