mirror of
https://github.com/curl/curl.git
synced 2026-08-25 17:13:31 +03:00
curl tool: move so called 'multi_files' stuff into tool_mfiles.[ch]
Additionally some code reorganization and direct OOM handling fixes, just another step towards fixing curl tool issues uncovered 2011-09-15
This commit is contained in:
parent
e4819ae1ef
commit
4322d512ea
6 changed files with 199 additions and 96 deletions
|
|
@ -143,6 +143,7 @@ RELEASE_OBJS= \
|
|||
rawstrr.obj \
|
||||
strtoofftr.obj \
|
||||
tool_convertr.obj \
|
||||
tool_mfilesr.obj \
|
||||
urlglobr.obj \
|
||||
writeoutr.obj \
|
||||
xattrr.obj \
|
||||
|
|
@ -159,6 +160,7 @@ DEBUG_OBJS= \
|
|||
rawstrd.obj \
|
||||
strtoofftd.obj \
|
||||
tool_convertd.obj \
|
||||
tool_mfilesd.obj \
|
||||
urlglobd.obj \
|
||||
writeoutd.obj \
|
||||
xattrd.obj \
|
||||
|
|
@ -306,6 +308,8 @@ strtoofftr.obj: ../lib/strtoofft.c
|
|||
$(CCR) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
|
||||
tool_convertr.obj: tool_convert.c
|
||||
$(CCR) $(CFLAGS) /Fo"$@" tool_convert.c
|
||||
tool_mfilesr.obj: tool_mfiles.c
|
||||
$(CCR) $(CFLAGS) /Fo"$@" tool_mfiles.c
|
||||
xattrr.obj: xattr.c
|
||||
$(CCR) $(CFLAGS) /Fo"$@" xattr.c
|
||||
mainr.obj: main.c
|
||||
|
|
@ -336,6 +340,8 @@ strtoofftd.obj: ../lib/strtoofft.c
|
|||
$(CCD) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
|
||||
tool_convertd.obj: tool_convert.c
|
||||
$(CCD) $(CFLAGS) /Fo"$@" tool_convert.c
|
||||
tool_mfilesd.obj: tool_mfiles.c
|
||||
$(CCD) $(CFLAGS) /Fo"$@" tool_mfiles.c
|
||||
xattrd.obj: xattr.c
|
||||
$(CCD) $(CFLAGS) /Fo"$@" xattr.c
|
||||
maind.obj: main.c
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue