diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-04-17 17:16:21 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-04-17 17:16:21 +0200 |
commit | f86f50f05a466f8960d94179ca46e9561458c567 (patch) | |
tree | 5c17a58113cdaf2e770494c107d25aabafdab3df | |
parent | 3f57880ad10d3c98891266766c4423d938ee1821 (diff) |
makefile.vc6: use d suffix on debug object
To allow both release and debug builds in parallel.
Reported-by: Rod Widdowson
Fixes #769
-rw-r--r-- | src/Makefile.vc6 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.vc6 b/src/Makefile.vc6 index 08ea74e5f..ff82a4df8 100644 --- a/src/Makefile.vc6 +++ b/src/Makefile.vc6 @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
-# Copyright (C) 1999 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
+# Copyright (C) 1999 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
@@ -191,7 +191,7 @@ DEBUG_OBJS= \ rawstrd.obj \
strtoofftd.obj \
warnlessd.obj \
- slist_wc.obj \
+ slist_wcd.obj \
tool_binmoded.obj \
tool_bnamed.obj \
tool_cb_dbgd.obj \
@@ -459,7 +459,7 @@ strtoofftd.obj: ../lib/strtoofft.c $(CCD) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
warnlessd.obj: ../lib/warnless.c
$(CCD) $(CFLAGS) /Fo"$@" ../lib/warnless.c
-slist_wc.obj: slist_wc.c
+slist_wcd.obj: slist_wc.c
$(CCD) $(CFLAGS) /Fo"$@" slist_wc.c
tool_binmoded.obj: tool_binmode.c
$(CCD) $(CFLAGS) /Fo"$@" tool_binmode.c
|