diff options
author | Yang Tse <yangsita@gmail.com> | 2011-09-16 19:46:01 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-09-16 19:46:01 +0200 |
commit | 4322d512ea7fcbfe4939cbc86a92540606a0f68f (patch) | |
tree | 5bbf280fc3e8b8e62407d5ee969a71cb46122e99 /src/Makefile.inc | |
parent | e4819ae1efedab0340a47958460f3a7b058e0e94 (diff) | |
download | curl-4322d512ea7fcbfe4939cbc86a92540606a0f68f.tar.gz |
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
Diffstat (limited to 'src/Makefile.inc')
-rw-r--r-- | src/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.inc b/src/Makefile.inc index f13b171e1..f534075df 100644 --- a/src/Makefile.inc +++ b/src/Makefile.inc @@ -16,12 +16,12 @@ CURLX_ONES = $(top_srcdir)/lib/strtoofft.c \ CURL_CFILES = main.c hugehelp.c urlglob.c writeout.c writeenv.c \ getpass.c homedir.c curlutil.c os-specific.c xattr.c \ - tool_convert.c + tool_convert.c tool_mfiles.c CURL_HFILES = hugehelp.h setup.h config-win32.h config-mac.h \ config-riscos.h urlglob.h version.h os-specific.h \ writeout.h writeenv.h getpass.h homedir.h curlutil.h \ - xattr.h tool_convert.h + xattr.h tool_convert.h tool_mfiles.h curl_SOURCES = $(CURL_CFILES) $(CURLX_ONES) $(CURL_HFILES) |