aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-07-02 22:18:02 +0000
committerRichard Stallman <rms@gnu.org>1992-07-02 22:18:02 +0000
commitf0ec1f64d25355b64e664c3f38433188ae40be98 (patch)
tree25ecdf5e53009bc3ad2a709e8c913b121b710760 /gcc
parent52d3ac7640841d8015c68520b3c97c4973f7bdba (diff)
downloadgcc-f0ec1f64d25355b64e664c3f38433188ae40be98.zip
gcc-f0ec1f64d25355b64e664c3f38433188ae40be98.tar.gz
gcc-f0ec1f64d25355b64e664c3f38433188ae40be98.tar.bz2
*** empty log message ***
From-SVN: r1392
Diffstat (limited to 'gcc')
-rw-r--r--gcc/Makefile.in15
1 files changed, 10 insertions, 5 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 282d857..19b42e6 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -350,7 +350,7 @@ OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
rtl.o print-rtl.o rtlanal.o emit-rtl.o \
dbxout.o sdbout.o dwarfout.o xcoffout.o \
integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
- regclass.o local-alloc.o global-alloc.o reload.o reload1.o caller-save.o \
+ regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o \
insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o \
insn-recog.o insn-extract.o insn-output.o insn-emit.o \
insn-attrtab.o aux-output.o getpwd.o $(EXTRA_OBJS)
@@ -823,7 +823,7 @@ regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
basic-block.h regs.h insn-config.h recog.h reload.h real.h
local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
regs.h hard-reg-set.h insn-config.h recog.h output.h
-global-alloc.o : global-alloc.c $(CONFIG_H) $(RTL_H) flags.h \
+global.o : global.c $(CONFIG_H) $(RTL_H) flags.h \
basic-block.h regs.h hard-reg-set.h insn-config.h output.h
reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
@@ -1351,7 +1351,7 @@ install-dir:
-if [ -d $(mandir) ] ; then true ; else mkdir $(mandir) ; fi
# Install the compiler executables built during cross compilation.
-install-common: native install-dir
+install-common: native install-dir xgcc $(srcdir)/g++ $(srcdir)/c++ $(EXTRA_PARTS)
for file in $(COMPILERS); do \
if [ -f $$file ] ; then \
rm -f $(libsubdir)/$$file; \
@@ -1365,8 +1365,13 @@ install-common: native install-dir
$(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
else true; fi; \
done
- -rm -f $(libsubdir)/specs
- $(INSTALL_DATA) specs $(libsubdir)/specs
+# Don't mess with specs if it doesn't exist yet.
+# We can't make it a dependency because with a cross compiler
+# you have to make specs on the target machine or not at all.
+ if [ -f specs ] ; then \
+ -rm -f $(libsubdir)/specs; \
+ $(INSTALL_DATA) specs $(libsubdir)/specs; \
+ fi
# Install the driver program as gcc-$(target)
# and also as either gcc (if native) or $(tooldir)/bin/gcc.
-if [ -f gcc-cross ] ; then \