summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2014-06-07 17:17:52 -0700
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2014-06-07 17:17:52 -0700
commit519d57deadc46bd5b48b37cd1a28882425d8e204 (patch)
tree7ad9238673d675f0fd3a2b3c52f0dba97735a305 /Makefile
parent5044feb835653ba98ee48cf243fe5d3ab184fa3c (diff)
Fixing DEBUG vs _DEBUG #defines.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c920641..5312e48 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ ifeq ($(DEBUG),)
CPPFLAGS += -g3 -gdwarf-2 -O3 -DNDEBUG
LDFLAGS += -g3 -gdwarf-2
else
-CPPFLAGS += -g3 -gdwarf-2 -DDEBUG -DEV_VERIFY=3
+CPPFLAGS += -g3 -gdwarf-2 -D_DEBUG -DEV_VERIFY=3
LDFLAGS += -g3 -gdwarf-2
endif