diff options
author | Richard Henderson <rth@cygnus.com> | 1998-10-28 14:26:24 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1998-10-28 14:26:24 -0800 |
commit | a45a7ba07385068ad1a57dbf0addf9313e1c2cff (patch) | |
tree | ada1d85ce602a4e8de5c944b8ba241de0757426f /gcc/cp/Makefile.in | |
parent | 79a9696b2286a2e42892818fea0c9a3af1328a91 (diff) | |
download | gcc-a45a7ba07385068ad1a57dbf0addf9313e1c2cff.zip gcc-a45a7ba07385068ad1a57dbf0addf9313e1c2cff.tar.gz gcc-a45a7ba07385068ad1a57dbf0addf9313e1c2cff.tar.bz2 |
Makefile.in (cc1plus): Put CXX_OBJS, and thence @extra_cxx_objs@, last.
* Makefile.in (cc1plus): Put CXX_OBJS, and thence @extra_cxx_objs@,
last.
From-SVN: r23414
Diffstat (limited to 'gcc/cp/Makefile.in')
-rw-r--r-- | gcc/cp/Makefile.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/cp/Makefile.in b/gcc/cp/Makefile.in index 425bedd..9999f11 100644 --- a/gcc/cp/Makefile.in +++ b/gcc/cp/Makefile.in @@ -188,9 +188,8 @@ OBJS = `cat ../stamp-objlist` ../c-common.o ../c-pragma.o OBJDEPS = ../stamp-objlist ../c-common.o ../c-pragma.o compiler: ../cc1plus$(exeext) -../cc1plus$(exeext): $(P) $(CXX_OBJS) $(OBJDEPS) $(LIBDEPS) - $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \ - $(CXX_OBJS) $(OBJS) $(LIBS) +../cc1plus$(exeext): $(P) $(OBJDEPS) $(CXX_OBJS) $(LIBDEPS) + $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(CXX_OBJS) $(LIBS) Makefile: $(srcdir)/Makefile.in $(srcdir)/../configure cd ..; $(SHELL) config.status |