Make strip utility configurable

This commit is contained in:
Marc André Tanner 2014-10-05 08:38:02 +02:00
parent 21f81b81b0
commit 94051967ff
2 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,7 @@ dist: clean
install: abduco
@echo stripping executable
@strip -s abduco
@${STRIP} abduco
@echo installing executable file to ${DESTDIR}${PREFIX}/bin
@mkdir -p ${DESTDIR}${PREFIX}/bin
@cp -f abduco ${DESTDIR}${PREFIX}/bin

View File

@ -21,3 +21,4 @@ LDFLAGS += ${LIBS}
DEBUG_CFLAGS = ${CFLAGS} -UNDEBUG -O0 -g -ggdb -Wall
CC = cc
STRIP = strip