aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-08-25 14:53:59 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-08-25 14:54:09 +0200
commitb978ba09ca1d0a1c07839c1dfb0b10df2f011795 (patch)
treeba98a8508f9ecb8e2cca26ba61ffe2e1d0357952
parent160b5ac92a846038372225ab79e29166fd152949 (diff)
downloadEpisodeBrowser-b978ba09ca1d0a1c07839c1dfb0b10df2f011795.tar.gz
Use _DEBUG instead of DEBUG.
This is what Visual Studio uses for its debug builds by default.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f5d18cc..50f5e00 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ OBJ += b/win.obj
CC = gcc
CFLAGS = -DUNICODE -D_UNICODE
-CFLAGS += -DDEBUG
+CFLAGS += -D_DEBUG
CFLAGS += -std=c++17 -mwindows -O0
CFLAGS += -IC:/msys64/mingw64/include/libxml2
CFLAGS += -Wall -Wextra -Wpedantic -Wno-missing-field-initializers -Wno-parentheses