diff options
author | Mark Mitchell <mark@codesourcery.com> | 2001-02-11 21:23:42 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-02-11 21:23:42 +0000 |
commit | 8c310e3feb6ded2bd0a5d995b8e0dc1ee314f4d7 (patch) | |
tree | b241b31d57d68e2eaba374489f665df401c48a6e /gcc/Makefile.in | |
parent | 258835c78bfbb74c7cf9f0cf98e5939dec3fdb26 (diff) | |
download | gcc-8c310e3feb6ded2bd0a5d995b8e0dc1ee314f4d7.zip gcc-8c310e3feb6ded2bd0a5d995b8e0dc1ee314f4d7.tar.gz gcc-8c310e3feb6ded2bd0a5d995b8e0dc1ee314f4d7.tar.bz2 |
Makefile.in (gcc.o): Fix typos.
2001-02-11 Mark Mitchell <mark@codesourcery.com>
* Makefile.in (gcc.o): Fix typos.
(protize.o): Likewise.
(unprotoize.o): Likewise.
2001-02-11 Mark Mitchell <mark@codesourcery.com>
* Makefile.in (g++spec.o): Fix typo.
From-SVN: r39588
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 0786f83..6bdb735 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1273,11 +1273,11 @@ DRIVER_DEFINES = \ gcc.o: gcc.c $(CONFIG_H) system.h intl.h multilib.h \ Makefile $(lang_specs_files) prefix.h $(GCC_H) - SHLIB_LIB='$(SHLIB_LINK)' \ - SHLIB_MULTILIB='$(SHLIB_MULTILIB)' \ + (SHLIB_LINK='$(SHLIB_LINK)' \ + SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \ $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ $(DRIVER_DEFINES) \ - -c $(srcdir)/gcc.c + -c $(srcdir)/gcc.c) gccspec.o: gccspec.c $(CONFIG_H) system.h $(GCC_H) cppspec.o: cppspec.c $(CONFIG_H) system.h $(GCC_H) @@ -1978,19 +1978,19 @@ unprotoize$(exeext): unprotoize.o $(PROTO_OBJS) $(LIBDEPS) protoize.o: protoize.c $(srcdir)/../include/getopt.h $(CONFIG_H) system.h \ Makefile version.h - SHLIB_LIB='$(SHLIB_LINK)' \ - SHLIB_MULTILIB='$(SHLIB_MULTILIB)' \ + (SHLIB_LINK='$(SHLIB_LINK)' \ + SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \ $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ $(DRIVER_DEFINES) $(PREPROCESSOR_DEFINES) \ - $(srcdir)/protoize.c $(OUTPUT_OPTION) + $(srcdir)/protoize.c $(OUTPUT_OPTION)) unprotoize.o: unprotoize.c protoize.c $(srcdir)/../include/getopt.h \ $(CONFIG_H) system.h Makefile version.h - SHLIB_LIB='$(SHLIB_LINK)' \ - SHLIB_MULTILIB='$(SHLIB_MULTILIB)' \ + (SHLIB_LINK='$(SHLIB_LINK)' \ + SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \ $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ $(DRIVER_DEFINES) $(PREPROCESSOR_DEFINES) \ - $(srcdir)/unprotoize.c $(OUTPUT_OPTION) + $(srcdir)/unprotoize.c $(OUTPUT_OPTION)) # This info describes the target machine, so compile with GCC just built. SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES) \ |