diff options
author | Yang Tse <yangsita@gmail.com> | 2011-10-03 22:59:38 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-10-03 23:00:47 +0200 |
commit | 0435800f65ce3eddd11ad6d6877d4d0818bfcaa6 (patch) | |
tree | d97e0db63188b919e1fe57afb5ba0fb2ec0ad07c /src/Makefile.inc | |
parent | 56ed07f7df5b743b25711e742d31126ce0b79baf (diff) | |
download | curl-0435800f65ce3eddd11ad6d6877d4d0818bfcaa6.tar.gz |
curl tool: reviewed code moved to tool_*.[ch] files
Diffstat (limited to 'src/Makefile.inc')
-rw-r--r-- | src/Makefile.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile.inc b/src/Makefile.inc index 28d7f05d9..640fd6332 100644 --- a/src/Makefile.inc +++ b/src/Makefile.inc @@ -16,6 +16,7 @@ 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 xattr.c \ + tool_binmode.c \ tool_bname.c \ tool_cb_dbg.c \ tool_cb_hdr.c \ @@ -29,6 +30,7 @@ CURL_CFILES = main.c hugehelp.c urlglob.c writeout.c writeenv.c \ tool_dirhie.c \ tool_doswin.c \ tool_easysrc.c \ + tool_formparse.c \ tool_libinfo.c \ tool_mfiles.c \ tool_msgs.c \ @@ -39,6 +41,7 @@ CURL_CFILES = main.c hugehelp.c urlglob.c writeout.c writeenv.c \ CURL_HFILES = hugehelp.h setup.h config-win32.h config-mac.h \ config-riscos.h urlglob.h version.h xattr.h \ writeout.h writeenv.h getpass.h homedir.h curlutil.h \ + tool_binmode.h \ tool_bname.h \ tool_cb_dbg.h \ tool_cb_hdr.h \ @@ -52,6 +55,7 @@ CURL_HFILES = hugehelp.h setup.h config-win32.h config-mac.h \ tool_dirhie.h \ tool_doswin.h \ tool_easysrc.h \ + tool_formparse.h \ tool_libinfo.h \ tool_mfiles.h \ tool_msgs.h \ |