|
Line 0
Link Here
|
|
|
1 |
--- gcc/Makefile.in.orig Fri Aug 13 03:46:55 1999 |
| 2 |
+++ gcc/Makefile.in Fri Sep 1 21:15:38 2000 |
| 3 |
@@ -400,7 +400,7 @@ |
| 4 |
MAYBE_USE_COLLECT2 = @maybe_use_collect2@ |
| 5 |
# It is convenient for configure to add the assignment at the beginning, |
| 6 |
# so don't override it here. |
| 7 |
-USE_COLLECT2 = collect2$(exeext) |
| 8 |
+USE_COLLECT2 = |
| 9 |
|
| 10 |
# List of extra C and assembler files to add to libgcc1.a. |
| 11 |
# Assembler files should have names ending in `.asm'. |
| 12 |
@@ -437,7 +437,7 @@ |
| 13 |
|
| 14 |
# A list of all the language-specific executables. |
| 15 |
# This is overridden by configure. |
| 16 |
-COMPILERS = cc1$(exeext) @all_compilers@ |
| 17 |
+COMPILERS = @all_compilers@ |
| 18 |
|
| 19 |
# List of things which should already be built whenever we try to use xgcc |
| 20 |
# to compile anything (without linking). |
| 21 |
@@ -2432,9 +2432,8 @@ |
| 22 |
# Copy the compiler files into directories where they will be run. |
| 23 |
# Install the driver last so that the window when things are |
| 24 |
# broken is small. |
| 25 |
-install-normal: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \ |
| 26 |
- $(INSTALL_CPP) install-man install-info intl.install lang.install-normal \ |
| 27 |
- install-driver |
| 28 |
+install-normal: install-common \ |
| 29 |
+ intl.install lang.install-normal |
| 30 |
|
| 31 |
# Do nothing while making gcc with a cross-compiler. The person who |
| 32 |
# makes gcc for the target machine has to know how to put a complete |
| 33 |
@@ -2507,51 +2506,6 @@ |
| 34 |
else true; \ |
| 35 |
fi; \ |
| 36 |
done |
| 37 |
- for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \ |
| 38 |
- if [ x"$$file" != x.. ]; then \ |
| 39 |
- rm -f $(libsubdir)/$$file; \ |
| 40 |
- $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \ |
| 41 |
- else true; fi; \ |
| 42 |
- done |
| 43 |
- for file in $(EXTRA_PARTS) ..; do \ |
| 44 |
- if [ x"$$file" != x.. ]; then \ |
| 45 |
- rm -f $(libsubdir)/$$file; \ |
| 46 |
- $(INSTALL_DATA) $$file $(libsubdir)/$$file; \ |
| 47 |
- chmod a-x $(libsubdir)/$$file; \ |
| 48 |
- else true; fi; \ |
| 49 |
- done |
| 50 |
-# Don't mess with specs if it doesn't exist yet. |
| 51 |
- -if [ -f specs ] ; then \ |
| 52 |
- rm -f $(libsubdir)/specs; \ |
| 53 |
- $(INSTALL_DATA) specs $(libsubdir)/specs; \ |
| 54 |
- chmod a-x $(libsubdir)/specs; \ |
| 55 |
- fi |
| 56 |
-# Install protoize if it was compiled. |
| 57 |
- -if [ -f protoize$(exeext) ]; \ |
| 58 |
- then \ |
| 59 |
- if [ -f gcc-cross$(exeext) ] ; then \ |
| 60 |
- rm -f $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \ |
| 61 |
- $(INSTALL_PROGRAM) protoize$(exeext) $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \ |
| 62 |
- rm -f $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \ |
| 63 |
- $(INSTALL_PROGRAM) unprotoize$(exeext) $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \ |
| 64 |
- else \ |
| 65 |
- rm -f $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \ |
| 66 |
- $(INSTALL_PROGRAM) protoize$(exeext) $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \ |
| 67 |
- rm -f $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \ |
| 68 |
- $(INSTALL_PROGRAM) unprotoize$(exeext) $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \ |
| 69 |
- fi ; \ |
| 70 |
- rm -f $(libsubdir)/SYSCALLS.c.X; \ |
| 71 |
- $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \ |
| 72 |
- chmod a-x $(libsubdir)/SYSCALLS.c.X; \ |
| 73 |
- fi |
| 74 |
- -rm -f $(libsubdir)/cpp$(exeext) |
| 75 |
- $(INSTALL_PROGRAM) cpp$(exeext) $(libsubdir)/cpp$(exeext) |
| 76 |
-# Install gcov if it was compiled. |
| 77 |
- -if [ -f gcov$(exeext) ]; \ |
| 78 |
- then \ |
| 79 |
- rm -f $(bindir)/gcov$(exeext); \ |
| 80 |
- $(INSTALL_PROGRAM) gcov$(exeext) $(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \ |
| 81 |
- fi |
| 82 |
|
| 83 |
# Install the driver program as $(target_alias)-gcc |
| 84 |
# and also as either gcc (if native) or $(gcc_tooldir)/bin/gcc. |