From 78aa740b768e1e62f8bf9d216901245c452a31d9 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 18 Dec 2019 08:50:57 -0700 Subject: Add install-strip to sim/ PR build/24572 notes that "make install-strip" fails. For me, it works in every directory except "sim", so this patch adds install-strip targets to the Makefiles that appear there. sim/ChangeLog 2019-12-19 Tom Tromey PR build/24572: * Makefile.in (install-strip): New target. sim/common/ChangeLog 2019-12-19 Tom Tromey PR build/24572: * Makefile.in (install-strip): New target. sim/igen/ChangeLog 2019-12-19 Tom Tromey PR build/24572: * Makefile.in (install-strip): New target. sim/ppc/ChangeLog 2019-12-19 Tom Tromey PR build/24572: * Makefile.in (install-strip): New target. sim/testsuite/ChangeLog 2019-12-19 Tom Tromey PR build/24572: * Makefile.in (install-strip): New target. Change-Id: I76613bc5c7e7812284f33826f8a5d914477fcdc5 --- sim/Makefile.in | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'sim/Makefile.in') diff --git a/sim/Makefile.in b/sim/Makefile.in index 5a953fd..3a85eeb 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -166,6 +166,16 @@ install: else true; fi; \ done +install-strip: + @rootme=`pwd` ; export rootme ; \ + for dir in . ${SUBDIRS}; do \ + if [ "$$dir" = "." ]; then \ + true; \ + elif [ -d $$dir ]; then \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) install-strip) || exit 1; \ + else true; fi; \ + done + installcheck: @echo No installcheck target is available yet for the GNU simulators. -- cgit v1.1