diff options
author | Doug Evans <dje@gnu.org> | 1996-04-15 17:47:09 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-04-15 17:47:09 +0000 |
commit | dae14688257ac3599b8e42906bf4521c689ef9cf (patch) | |
tree | fa4e44709a60f7c643f8947ba054840fcc8142ad /gcc/Makefile.in | |
parent | ed24b9f26546b6780c0c130858041483daffb80a (diff) | |
download | gcc-dae14688257ac3599b8e42906bf4521c689ef9cf.zip gcc-dae14688257ac3599b8e42906bf4521c689ef9cf.tar.gz gcc-dae14688257ac3599b8e42906bf4521c689ef9cf.tar.bz2 |
Makefile.in (xgcc): Depend on and link in choose-temp.o.
* Makefile.in (xgcc): Depend on and link in choose-temp.o.
(collect2): Likewise.
(choose-temp.o): Add.
From-SVN: r11788
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index d26d376..b0dfa88 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -685,8 +685,9 @@ stamp-objlist: Makefile $(OBJS) $(BC_OBJS) # We call this executable `xgcc' rather than `gcc' # to avoid confusion if the current directory is in the path # and CC is `gcc'. It is renamed to `gcc' when it is installed. -xgcc: gcc.o version.o $(LIBDEPS) $(EXTRA_GCC_OBJS) - $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o version.o $(EXTRA_GCC_OBJS) $(LIBS) +xgcc: gcc.o version.o choose-temp.o $(LIBDEPS) $(EXTRA_GCC_OBJS) + $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o version.o choose-temp.o \ + $(EXTRA_GCC_OBJS) $(LIBS) # Dump a specs file to make -B./ read these specs over installed ones. specs: xgcc @@ -1109,11 +1110,12 @@ ld: collect2 ln collect2$(exeext) ld$(exeext) > /dev/null 2>&1 \ || cp collect2$(exeext) ld$(exeext) -collect2 : collect2.o cplus-dem.o underscore.o version.o $(LIBDEPS) +collect2 : collect2.o cplus-dem.o underscore.o version.o \ + choose-temp.o $(LIBDEPS) # Don't try modifying collect2 (aka ld) in place--it might be linking this. -rm -f collect2$(exeext) $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ collect2.o \ - cplus-dem.o underscore.o version.o $(LIBS) + cplus-dem.o underscore.o version.o choose-temp.o $(LIBS) collect2.o : collect2.c $(CONFIG_H) gstab.h obstack.h demangle.h $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ @@ -1174,6 +1176,7 @@ dumpvers: dumpvers.c version.o: version.c obstack.o: obstack.c +choose-temp.o: choose-temp.c convert.o: convert.c $(CONFIG_H) $(TREE_H) flags.h convert.h |