summaryrefslogtreecommitdiff
blob: 46993b3bcee34f9ff20a22718b6250ec0089838c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- Makefile	2010-02-11 13:26:29.000000000 -0500
+++ Makefile.new	2010-10-15 18:10:27.000000000 -0400
@@ -1,5 +1,4 @@
 CC=${DIET} gcc -s -Wall -O2 -fomit-frame-pointer
-STRIP=strip -R .note -R .comment
 RM=rm -f
 TARGET=../bin/gpgwrap
 
@@ -8,8 +7,7 @@
 all: ${TARGET}
 
 ${TARGET}: gpgwrap.c
-	${CC} -o ${TARGET} gpgwrap.c
-	${STRIP} ${TARGET} 2>/dev/null || true
+	${CC} -o ${TARGET} ${CFLAGS} ${LDFLAGS} gpgwrap.c
 
 clean:
 	${RM} ${TARGET}