summaryrefslogtreecommitdiff
blob: 3e0d18b0ab3d4e0d9f179a68ad3ab0629cef358c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- Makefile
+++ Makefile
@@ -158,11 +158,9 @@ endif
 
 # if DEBUG is enabled, then we do not strip or optimize
 ifeq ($(strip $(DEBUG)),true)
-	CFLAGS += -O1 -g
 	CPPFLAGS += -DDEBUG
 	STRIPCMD = /bin/true -Since_we_are_debugging
 else
-	CFLAGS += $(OPTIMIZATION) -fomit-frame-pointer
 	STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
 endif