aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.vc6
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2011-09-16 15:31:29 +0200
committerYang Tse <yangsita@gmail.com>2011-09-16 15:31:29 +0200
commite4819ae1efedab0340a47958460f3a7b058e0e94 (patch)
tree1af7d151b41c698f818d421c144b9a9d30de1ce7 /src/Makefile.vc6
parent43c59765e1405d80938ae5b7dc80244de20bdc9f (diff)
curl tool: move convert_* functions into tool_convert.[ch]
Additionally fix data type of result vars for iconv() calls
Diffstat (limited to 'src/Makefile.vc6')
-rw-r--r--src/Makefile.vc66
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Makefile.vc6 b/src/Makefile.vc6
index d6ef39b3d..14e9399d5 100644
--- a/src/Makefile.vc6
+++ b/src/Makefile.vc6
@@ -142,6 +142,7 @@ RELEASE_OBJS= \
os-specificr.obj \
rawstrr.obj \
strtoofftr.obj \
+ tool_convertr.obj \
urlglobr.obj \
writeoutr.obj \
xattrr.obj \
@@ -157,6 +158,7 @@ DEBUG_OBJS= \
os-specificd.obj \
rawstrd.obj \
strtoofftd.obj \
+ tool_convertd.obj \
urlglobd.obj \
writeoutd.obj \
xattrd.obj \
@@ -302,6 +304,8 @@ rawstrr.obj: ../lib/rawstr.c
$(CCR) $(CFLAGS) /Fo"$@" ../lib/rawstr.c
strtoofftr.obj: ../lib/strtoofft.c
$(CCR) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
+tool_convertr.obj: tool_convert.c
+ $(CCR) $(CFLAGS) /Fo"$@" tool_convert.c
xattrr.obj: xattr.c
$(CCR) $(CFLAGS) /Fo"$@" xattr.c
mainr.obj: main.c
@@ -330,6 +334,8 @@ rawstrd.obj: ../lib/rawstr.c
$(CCD) $(CFLAGS) /Fo"$@" ../lib/rawstr.c
strtoofftd.obj: ../lib/strtoofft.c
$(CCD) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
+tool_convertd.obj: tool_convert.c
+ $(CCD) $(CFLAGS) /Fo"$@" tool_convert.c
xattrd.obj: xattr.c
$(CCD) $(CFLAGS) /Fo"$@" xattr.c
maind.obj: main.c