diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2014-06-07 17:17:52 -0700 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2014-06-07 17:17:52 -0700 |
commit | 519d57deadc46bd5b48b37cd1a28882425d8e204 (patch) | |
tree | 7ad9238673d675f0fd3a2b3c52f0dba97735a305 /Makefile | |
parent | 5044feb835653ba98ee48cf243fe5d3ab184fa3c (diff) |
Fixing DEBUG vs _DEBUG #defines.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |