mirror of
https://github.com/curl/curl.git
synced 2026-08-26 15:43:33 +03:00
curl tool: move 'Configurable' and free_config_fields() to tool_cfgable.[ch]
Reviewing fields being free'd in free_config_fields() still pending
This commit is contained in:
parent
93579cc363
commit
c0159d0edc
6 changed files with 359 additions and 283 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue