]> git.lizzy.rs Git - bspwm.git/commitdiff
By default, don't produce a debug executable
authorBastien Dejean <nihilhill@gmail.com>
Wed, 3 Oct 2012 21:06:31 +0000 (23:06 +0200)
committerBastien Dejean <nihilhill@gmail.com>
Wed, 3 Oct 2012 21:06:31 +0000 (23:06 +0200)
Makefile

index fc508d997854e80280a8e7a03c93b64d09869469..dc29024fdd87305d54c1d1cdfef5a2c0766f589d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -14,13 +14,13 @@ CL_SRC = bspc.c helpers.c
 WM_OBJ = $(WM_SRC:.c=.o)
 CL_OBJ = $(CL_SRC:.c=.o)
 
-debug: CFLAGS += -O0 -g -DDEBUG
-debug: options bspwm bspc
-
 all: CFLAGS += -Os
 all: LDFLAGS += -s
 all: options bspwm bspc
 
+debug: CFLAGS += -O0 -g -DDEBUG
+debug: options bspwm bspc
+
 options:
        @echo "bspwm build options:"
        @echo "CC      = $(CC)"