diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-11-20 19:37:58 +0000 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-11-20 19:37:58 +0000 |
commit | 9b980aa1edeb440c40b001070e82a5461ac15d18 (patch) | |
tree | cb41aeb703cf4a5dd44d129a88792146064f1111 /libiberty | |
parent | 5c08b7d40e284da08c08afaef5efd4d50a36cb89 (diff) | |
download | gdb-9b980aa1edeb440c40b001070e82a5461ac15d18.zip gdb-9b980aa1edeb440c40b001070e82a5461ac15d18.tar.gz gdb-9b980aa1edeb440c40b001070e82a5461ac15d18.tar.bz2 |
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.
etc/:
* Makefile.in (install-strip): New target.
libiberty/:
PR other/46202
* Makefile.in (install-strip): New phony target.
(install): Also mark as phony.
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 6 | ||||
-rw-r--r-- | libiberty/Makefile.in | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index ed0d055..c8d72ae 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,9 @@ +2010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + PR other/46202 + * Makefile.in (install-strip): New phony target. + (install): Also mark as phony. + 2010-11-16 Ian Lance Taylor <iant@google.com> * simple-object.c (simple_object_attributes_merge): Rename from diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 7a8bb02..ef35453 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -341,6 +341,9 @@ libiberty.html : $(srcdir)/libiberty.texi $(TEXISRC) INSTALL_DEST = @INSTALL_DEST@ install: install_to_$(INSTALL_DEST) install-subdir +install-strip: install + +.PHONY: install install-strip # This is tricky. Even though CC in the Makefile contains # multilib-specific flags, it's overridden by FLAGS_TO_PASS from the |