diff options
author | Richard Stallman <rms@gnu.org> | 1993-05-13 22:30:37 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-05-13 22:30:37 +0000 |
commit | 0d4d817479e431da6b0f4db09ec419b61aeb7f94 (patch) | |
tree | 0819632ec9ee2bea2b41686613826eff187c38fb | |
parent | 8d2911811aafa93c4ae7fc5b1f32a9462d4a2c10 (diff) | |
download | gcc-0d4d817479e431da6b0f4db09ec419b61aeb7f94.zip gcc-0d4d817479e431da6b0f4db09ec419b61aeb7f94.tar.gz gcc-0d4d817479e431da6b0f4db09ec419b61aeb7f94.tar.bz2 |
(OBJC, OBJECTIVE-C): Don't depend on objc-runtime.
(TAROUTOPTS): New variable.
(install-headers-tar): Use TAROUTOPTS.
From-SVN: r4441
-rw-r--r-- | gcc/Makefile.in | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 70f03cb..4f80dda 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -235,6 +235,9 @@ LIBCONVERT = # Control whether header files are installed. INSTALL_HEADERS=install-headers +# Options for tar when copying trees. So HPUX can override it. +TAROUTOPTS = xpBf + # Select which version of fixincludes to use (I.E. regular versus SVR4) # This value is overridden directly by configure. FIXINCLUDES=fixincludes @@ -466,8 +469,9 @@ native: config.status cpp $(LANGUAGES) $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_C # Define the names for selecting languages in LANGUAGES. C c: cc1 C++ c++: cc1plus -OBJC objc: cc1obj objc-runtime -OBJECTIVE-C objective-c: cc1obj objc-runtime +# The next two ought to depend on objc-runtime, but that doesn't work yet. +OBJC objc: cc1obj +OBJECTIVE-C objective-c: cc1obj PROTO: proto # Really, really stupid make features, such as SUN's KEEP_STATE, may force @@ -1659,7 +1663,7 @@ install-include-dir: install-dir # Install the include directory using tar. install-headers-tar: stmp-headers install-include-dir - cd include; tar cf - . | (cd $(libsubdir)/include; tar xpBf - ) + cd include; tar cf - . | (cd $(libsubdir)/include; tar $(TAROUTOPTS) - ) # Install the include directory using cpio. install-headers-cpio: stmp-headers install-include-dir |