From 0382131c6fc7510f664f300ee74d5a97e93d773d Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Sat, 4 Jan 2014 09:48:15 +0800 Subject: [PATCH] Provide install-strip target in Makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index ce151e1d..24a7c094 100644 --- a/Makefile +++ b/Makefile @@ -230,6 +230,9 @@ else INSTALLBIN=$(INSTALL) endif +install-strip: install + strip $(foreach PROG,$(PROGS),"$(bindir)"/$(PROG)) + ifndef CONFIG_WIN32 install: $(PROGS) $(TCCLIBS) $(TCCDOCS) mkdir -p "$(bindir)" -- 2.11.4.GIT