diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-11-20 19:37:08 +0000 |
---|---|---|
committer | Ralf Wildenhues <rwild@gcc.gnu.org> | 2010-11-20 19:37:08 +0000 |
commit | 455c8f487336df66dd4f29cafa2ab162c9e78667 (patch) | |
tree | b68166647a0bec19fae2c585cbcd9908f5b8ed3d /fixincludes | |
parent | c3b39f2ee16e1de4e140bedf596c2edf1ac99d29 (diff) | |
download | gcc-455c8f487336df66dd4f29cafa2ab162c9e78667.tar.gz |
PR other/46202: implement install-strip.
/:
PR other/46202
* configure.ac: Fix just-built in-tree STRIP name to be
binutils/strip-new.
* configure: Regenerate.
* Makefile.def (install-strip-gcc, install-strip-binutils)
(install-strip-opcodes, install-strip-ld, install-strip-itcl)
(install-strip-sid): Mirror dependencies on non-strip variants
of these targets on the respective -strip prerequisites.
* Makefile.tpl (install-strip, install-strip-host)
(install-strip-target): New targets.
(install-strip-[+module+], install-strip-target-[+module+]):
New targets.
* Makefile.in: Regenerate.
gcc/:
PR other/46202
* Makefile.in (install_sh, INSTALL_STRIP_PROGRAM): New
variables.
(AR_FOR_TARGET, RANLIB_FOR_TARGET, STRIP_FOR_TARGET): Fix
shell quoting.
(STRIP_FOR_TARGET): Look for in-tree strip under name strip-new.
(install-strip): New target.
(STRIPPROG): New variable, exported if STRIP is set.
* doc/install.texi (Final install): Minor markup and code style
fixes. Document install-strip target.
fixincludes/:
PR other/46202
* Makefile.in (install-strip): New phony target.
(all, check, install): Also mark as phony.
libgcc/:
PR other/46202
* Makefile.in (install-strip): New phony target.
libiberty/:
PR other/46202
* Makefile.in (install-strip): New phony target.
(install): Also mark as phony.
gnattools/:
PR other/46202
* Makefile.in (install-strip): New phony target.
(check, installcheck, info, dvi, pdf, html, install)
(install-info, install-pdf, install-html, mostlyclean)
(clean, distclean, maintainer-clean): Mark phony.
libada/:
PR other/46202
* Makefile.in (install-strip): New phony target.
(check, installcheck, info, dvi, pdf, html, install)
(install-info, install-pdf, install-html, mostlyclean)
(clean, distclean, maintainer-clean): Mark phony.
From-SVN: r166980
Diffstat (limited to 'fixincludes')
-rw-r--r-- | fixincludes/ChangeLog | 6 | ||||
-rw-r--r-- | fixincludes/Makefile.in | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/fixincludes/ChangeLog b/fixincludes/ChangeLog index b507d65a9f3..c34189ab1de 100644 --- a/fixincludes/ChangeLog +++ b/fixincludes/ChangeLog @@ -1,3 +1,9 @@ +2010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + PR other/46202 + * Makefile.in (install-strip): New phony target. + (all, check, install): Also mark as phony. + 2010-11-09 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> * inclhack.def (irix_pthread_init): New fix. diff --git a/fixincludes/Makefile.in b/fixincludes/Makefile.in index f91a70d2e6e..e335997d35a 100644 --- a/fixincludes/Makefile.in +++ b/fixincludes/Makefile.in @@ -188,6 +188,11 @@ install : all $(DESTDIR)$(itoolsdir)/fixincl@EXEEXT@ $(INSTALL_SCRIPT) mkheaders $(DESTDIR)$(itoolsdir)/mkheaders +install-strip: install + test -z '$(STRIP)' \ + || $(STRIP) $(DESTDIR)$(itoolsdir)/fixincl@EXEEXT@ + +.PHONY: all check install install-strip .PHONY: dvi pdf info html install-pdf install-info install-html dvi : |