diff options
author | Yang Tse <yangsita@gmail.com> | 2011-09-16 21:44:45 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-09-16 21:44:45 +0200 |
commit | c0159d0edc52bb92a402397a63a8e0bcdcfc7484 (patch) | |
tree | ed1b77d5f1518e87637bcbd023a710855e06c3b9 /src/Makefile.vc6 | |
parent | 93579cc36337f31de7b247ae3e49ad4f3e5f9673 (diff) | |
download | curl-c0159d0edc52bb92a402397a63a8e0bcdcfc7484.tar.gz |
curl tool: move 'Configurable' and free_config_fields() to tool_cfgable.[ch]
Reviewing fields being free'd in free_config_fields() still pending
Diffstat (limited to 'src/Makefile.vc6')
-rw-r--r-- | src/Makefile.vc6 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Makefile.vc6 b/src/Makefile.vc6 index 950d0761e..ca6c4f927 100644 --- a/src/Makefile.vc6 +++ b/src/Makefile.vc6 @@ -142,6 +142,7 @@ RELEASE_OBJS= \ os-specificr.obj \
rawstrr.obj \
strtoofftr.obj \
+ tool_cfgabler.obj \
tool_convertr.obj \
tool_mfilesr.obj \
urlglobr.obj \
@@ -159,6 +160,7 @@ DEBUG_OBJS= \ os-specificd.obj \
rawstrd.obj \
strtoofftd.obj \
+ tool_cfgabled.obj \
tool_convertd.obj \
tool_mfilesd.obj \
urlglobd.obj \
@@ -306,6 +308,8 @@ rawstrr.obj: ../lib/rawstr.c $(CCR) $(CFLAGS) /Fo"$@" ../lib/rawstr.c
strtoofftr.obj: ../lib/strtoofft.c
$(CCR) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
+tool_cfgabler.obj: tool_cfgable.c
+ $(CCR) $(CFLAGS) /Fo"$@" tool_cfgable.c
tool_convertr.obj: tool_convert.c
$(CCR) $(CFLAGS) /Fo"$@" tool_convert.c
tool_mfilesr.obj: tool_mfiles.c
@@ -338,6 +342,8 @@ rawstrd.obj: ../lib/rawstr.c $(CCD) $(CFLAGS) /Fo"$@" ../lib/rawstr.c
strtoofftd.obj: ../lib/strtoofft.c
$(CCD) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
+tool_cfgabled.obj: tool_cfgable.c
+ $(CCD) $(CFLAGS) /Fo"$@" tool_cfgable.c
tool_convertd.obj: tool_convert.c
$(CCD) $(CFLAGS) /Fo"$@" tool_convert.c
tool_mfilesd.obj: tool_mfiles.c
|