2004-07-03 13:49:40 -04:00
|
|
|
# ./src/Makefile.inc
|
2010-07-29 03:06:55 -04:00
|
|
|
# Using the backslash as line continuation character might be problematic
|
|
|
|
# with some make flavours, as Watcom's wmake showed us already. If we
|
|
|
|
# ever want to change this in a portable manner then we should consider
|
|
|
|
# this idea (posted to the libcurl list by Adam Kellas):
|
|
|
|
# CSRC1 = file1.c file2.c file3.c
|
|
|
|
# CSRC2 = file4.c file5.c file6.c
|
|
|
|
# CSOURCES = $(CSRC1) $(CSRC2)
|
2010-02-14 14:40:18 -05:00
|
|
|
|
2004-07-03 13:49:40 -04:00
|
|
|
# libcurl has sources that provide functions named curlx_* that aren't part of
|
|
|
|
# the official API, but we re-use the code here to avoid duplication.
|
2010-08-01 19:50:53 -04:00
|
|
|
CURLX_ONES = $(top_srcdir)/lib/strtoofft.c \
|
2008-10-16 14:02:46 -04:00
|
|
|
$(top_srcdir)/lib/strdup.c \
|
2009-07-09 17:47:24 -04:00
|
|
|
$(top_srcdir)/lib/rawstr.c \
|
|
|
|
$(top_srcdir)/lib/nonblock.c
|
2004-07-03 13:49:40 -04:00
|
|
|
|
2011-10-06 11:39:00 -04:00
|
|
|
CURL_CFILES = hugehelp.c \
|
2011-10-03 16:59:38 -04:00
|
|
|
tool_binmode.c \
|
2011-09-22 05:16:34 -04:00
|
|
|
tool_bname.c \
|
2011-09-24 11:38:16 -04:00
|
|
|
tool_cb_dbg.c \
|
|
|
|
tool_cb_hdr.c \
|
|
|
|
tool_cb_prg.c \
|
|
|
|
tool_cb_rea.c \
|
|
|
|
tool_cb_see.c \
|
|
|
|
tool_cb_wrt.c \
|
2011-09-22 05:16:34 -04:00
|
|
|
tool_cfgable.c \
|
|
|
|
tool_convert.c \
|
|
|
|
tool_dirhie.c \
|
|
|
|
tool_doswin.c \
|
|
|
|
tool_easysrc.c \
|
2011-10-03 16:59:38 -04:00
|
|
|
tool_formparse.c \
|
2011-10-04 18:03:20 -04:00
|
|
|
tool_getparam.c \
|
2011-10-06 11:39:00 -04:00
|
|
|
tool_getpass.c \
|
2011-10-04 18:03:20 -04:00
|
|
|
tool_help.c \
|
|
|
|
tool_helpers.c \
|
2011-10-06 11:39:00 -04:00
|
|
|
tool_homedir.c \
|
2011-09-22 05:16:34 -04:00
|
|
|
tool_libinfo.c \
|
2011-10-04 18:03:20 -04:00
|
|
|
tool_main.c \
|
2011-09-22 05:16:34 -04:00
|
|
|
tool_mfiles.c \
|
|
|
|
tool_msgs.c \
|
2011-10-04 18:03:20 -04:00
|
|
|
tool_operate.c \
|
|
|
|
tool_operhlp.c \
|
|
|
|
tool_panykey.c \
|
|
|
|
tool_paramhlp.c \
|
|
|
|
tool_parsecfg.c \
|
2011-09-22 05:16:34 -04:00
|
|
|
tool_setopt.c \
|
2011-10-04 18:03:20 -04:00
|
|
|
tool_sleep.c \
|
2011-10-05 14:16:16 -04:00
|
|
|
tool_urlglob.c \
|
2011-10-06 11:39:00 -04:00
|
|
|
tool_util.c \
|
|
|
|
tool_vms.c \
|
|
|
|
tool_writeenv.c \
|
|
|
|
tool_writeout.c \
|
|
|
|
tool_xattr.c
|
2004-07-03 13:49:40 -04:00
|
|
|
|
2004-07-28 14:40:18 -04:00
|
|
|
CURL_HFILES = hugehelp.h setup.h config-win32.h config-mac.h \
|
2011-10-06 11:39:00 -04:00
|
|
|
config-riscos.h \
|
2011-10-03 16:59:38 -04:00
|
|
|
tool_binmode.h \
|
2011-09-22 05:16:34 -04:00
|
|
|
tool_bname.h \
|
2011-09-24 11:38:16 -04:00
|
|
|
tool_cb_dbg.h \
|
|
|
|
tool_cb_hdr.h \
|
|
|
|
tool_cb_prg.h \
|
|
|
|
tool_cb_rea.h \
|
|
|
|
tool_cb_see.h \
|
|
|
|
tool_cb_wrt.h \
|
2011-09-22 05:16:34 -04:00
|
|
|
tool_cfgable.h \
|
|
|
|
tool_convert.h \
|
|
|
|
tool_dirhie.h \
|
|
|
|
tool_doswin.h \
|
|
|
|
tool_easysrc.h \
|
2011-10-03 16:59:38 -04:00
|
|
|
tool_formparse.h \
|
2011-10-04 18:03:20 -04:00
|
|
|
tool_getparam.h \
|
2011-10-06 11:39:00 -04:00
|
|
|
tool_getpass.h \
|
2011-10-04 18:03:20 -04:00
|
|
|
tool_help.h \
|
|
|
|
tool_helpers.h \
|
2011-10-06 11:39:00 -04:00
|
|
|
tool_homedir.h \
|
2011-09-22 05:16:34 -04:00
|
|
|
tool_libinfo.h \
|
2011-10-04 18:03:20 -04:00
|
|
|
tool_main.h \
|
2011-09-22 05:16:34 -04:00
|
|
|
tool_mfiles.h \
|
|
|
|
tool_msgs.h \
|
2011-10-04 18:03:20 -04:00
|
|
|
tool_operate.h \
|
|
|
|
tool_operhlp.h \
|
|
|
|
tool_panykey.h \
|
|
|
|
tool_paramhlp.h \
|
|
|
|
tool_parsecfg.h \
|
2011-09-22 05:16:34 -04:00
|
|
|
tool_sdecls.h \
|
|
|
|
tool_setopt.h \
|
2011-10-04 18:03:20 -04:00
|
|
|
tool_sleep.h \
|
2011-10-05 14:16:16 -04:00
|
|
|
tool_urlglob.h \
|
2011-10-06 11:39:00 -04:00
|
|
|
tool_util.h \
|
|
|
|
tool_version.h \
|
|
|
|
tool_vms.h \
|
|
|
|
tool_writeenv.h \
|
|
|
|
tool_writeout.h \
|
|
|
|
tool_xattr.h
|
2004-07-03 13:49:40 -04:00
|
|
|
|
2010-08-02 06:24:54 -04:00
|
|
|
curl_SOURCES = $(CURL_CFILES) $(CURLX_ONES) $(CURL_HFILES)
|
2004-07-03 13:49:40 -04:00
|
|
|
|