From 96430ced334dc62a1ceb59ffb51e40ffd37f468e Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 29 Oct 2007 20:19:14 +0100 Subject: [PATCH] split install and strip to allow unstripped install --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1120340f9..74c9aa4ac 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,13 @@ dist: clean @gzip -9 awesome-${VERSION}.tar @rm -rf awesome-${VERSION} -install: all +strip: all + strip awesome + strip awesome-client + +install: strip install-raw + +install-raw: @echo installing executable file to ${DESTDIR}${PREFIX}/bin @mkdir -p ${DESTDIR}${PREFIX}/bin @cp -f awesome awesome-client ${DESTDIR}${PREFIX}/bin