aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.vc6
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-06-15 02:30:22 +0000
committerYang Tse <yangsita@gmail.com>2009-06-15 02:30:22 +0000
commit7eb59de7df14c48c8a38b9628a662baa0f61847f (patch)
tree571e8df72288bde80d859d3497dd929384866e02 /src/Makefile.vc6
parent5931cf77f42c145640ed1b6c344ac790017aac1b (diff)
DEBUGBUILD / CURLDEBUG decoupling follow-up
Diffstat (limited to 'src/Makefile.vc6')
-rw-r--r--src/Makefile.vc64
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.vc6 b/src/Makefile.vc6
index e6236aa45..a3be9c232 100644
--- a/src/Makefile.vc6
+++ b/src/Makefile.vc6
@@ -71,12 +71,12 @@ RTLIBD = /MTd
## Release
CCR = cl.exe $(RTLIB) /O2 /DNDEBUG
LINKR = link.exe /incremental:no /libpath:"../lib"
-RCR = rc.exe /dCURLDEBUG=0
+RCR = rc.exe /dDEBUGBUILD=0
## Debug
CCD = cl.exe $(RTLIBD) /Gm /ZI /Od /D_DEBUG /GZ
LINKD = link.exe /incremental:yes /debug /libpath:"../lib"
-RCD = rc.exe /dCURLDEBUG=1
+RCD = rc.exe /dDEBUGBUILD=1
CFLAGS = /I../lib /I../include /nologo /W3 /GX /DWIN32 /YX /FD /c
LFLAGS = /nologo /out:$(PROGRAM_NAME) /subsystem:console /machine:$(MACHINE)