diff options
author | Yang Tse <yangsita@gmail.com> | 2011-09-18 01:58:18 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-09-18 01:59:25 +0200 |
commit | 260b0f4d0cdb7c0ce30b16ae9a4cb94de6b36537 (patch) | |
tree | 10bff167818af4946fddcbb8c73162ff1012c733 /src/Makefile.inc | |
parent | f50d4647d0f4e34f74b48dfc05e60739e737b890 (diff) | |
download | curl-260b0f4d0cdb7c0ce30b16ae9a4cb94de6b36537.tar.gz |
curl tool: create tool_myfunc.[ch] which later on will hold my_* functions
Additionally function my_useragent() now provides default User-Agent string
Diffstat (limited to 'src/Makefile.inc')
-rw-r--r-- | src/Makefile.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile.inc b/src/Makefile.inc index 5d14ba52c..97d7f0056 100644 --- a/src/Makefile.inc +++ b/src/Makefile.inc @@ -16,12 +16,13 @@ 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_cfgable.c tool_convert.c tool_mfiles.c + tool_cfgable.c tool_convert.c tool_mfiles.c tool_myfunc.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_cfgable.h tool_convert.h tool_mfiles.h + xattr.h tool_cfgable.h tool_convert.h tool_mfiles.h \ + tool_myfunc.h curl_SOURCES = $(CURL_CFILES) $(CURLX_ONES) $(CURL_HFILES) |