summaryrefslogtreecommitdiff
blob: 6e70fdf38b1c6f6bc2cad68b303155e64a7955e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- a/Makefile
+++ b/Makefile
@@ -180,14 +180,7 @@
 endif
 export QUIET ECHO
 
-# if DEBUG is enabled, then we do not strip or optimize
-ifeq ($(strip $(DEBUG)),true)
-	CFLAGS += -O1 -g -DDEBUG
-	STRIPCMD = /bin/true -Since_we_are_debugging
-else
-	CFLAGS += $(OPTIMIZATION) -fomit-frame-pointer
-	STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
-endif
+STRIPCMD = true
 
 
 # the actual make rules