2020-03-23 09:44:29 -04:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
|
|
|
# Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
|
|
|
# are also available at https://curl.haxx.se/docs/copyright.html.
|
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
###########################################################################
|
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.
|
2014-05-21 17:51:03 -04:00
|
|
|
CURLX_CFILES = \
|
2018-09-23 18:24:02 -04:00
|
|
|
../lib/strtoofft.c \
|
|
|
|
../lib/nonblock.c \
|
|
|
|
../lib/warnless.c \
|
2019-04-13 16:55:51 -04:00
|
|
|
../lib/curl_ctype.c \
|
|
|
|
../lib/curl_multibyte.c
|
2004-07-03 13:49:40 -04:00
|
|
|
|
2014-05-21 17:57:02 -04:00
|
|
|
CURLX_HFILES = \
|
2018-09-23 18:24:02 -04:00
|
|
|
../lib/curl_setup.h \
|
|
|
|
../lib/strtoofft.h \
|
|
|
|
../lib/nonblock.h \
|
|
|
|
../lib/warnless.h \
|
2019-04-13 16:55:51 -04:00
|
|
|
../lib/curl_ctype.h \
|
|
|
|
../lib/curl_multibyte.h
|
2014-05-21 17:57:02 -04:00
|
|
|
|
2012-12-26 17:30:54 -05:00
|
|
|
CURL_CFILES = \
|
2018-09-23 18:24:02 -04:00
|
|
|
slist_wc.c \
|
|
|
|
tool_binmode.c \
|
|
|
|
tool_bname.c \
|
|
|
|
tool_cb_dbg.c \
|
|
|
|
tool_cb_hdr.c \
|
|
|
|
tool_cb_prg.c \
|
|
|
|
tool_cb_rea.c \
|
|
|
|
tool_cb_see.c \
|
|
|
|
tool_cb_wrt.c \
|
|
|
|
tool_cfgable.c \
|
|
|
|
tool_convert.c \
|
|
|
|
tool_dirhie.c \
|
|
|
|
tool_doswin.c \
|
|
|
|
tool_easysrc.c \
|
|
|
|
tool_filetime.c \
|
|
|
|
tool_formparse.c \
|
|
|
|
tool_getparam.c \
|
|
|
|
tool_getpass.c \
|
|
|
|
tool_help.c \
|
|
|
|
tool_helpers.c \
|
|
|
|
tool_homedir.c \
|
|
|
|
tool_hugehelp.c \
|
|
|
|
tool_libinfo.c \
|
|
|
|
tool_main.c \
|
|
|
|
tool_metalink.c \
|
|
|
|
tool_msgs.c \
|
|
|
|
tool_operate.c \
|
|
|
|
tool_operhlp.c \
|
|
|
|
tool_panykey.c \
|
|
|
|
tool_paramhlp.c \
|
|
|
|
tool_parsecfg.c \
|
2019-07-20 13:14:00 -04:00
|
|
|
tool_progress.c \
|
2018-09-23 18:24:02 -04:00
|
|
|
tool_strdup.c \
|
|
|
|
tool_setopt.c \
|
|
|
|
tool_sleep.c \
|
|
|
|
tool_urlglob.c \
|
|
|
|
tool_util.c \
|
|
|
|
tool_vms.c \
|
|
|
|
tool_writeout.c \
|
2020-02-01 12:55:24 -05:00
|
|
|
tool_writeout_json.c \
|
2018-09-23 18:24:02 -04:00
|
|
|
tool_xattr.c
|
2004-07-03 13:49:40 -04:00
|
|
|
|
2012-12-26 17:30:54 -05:00
|
|
|
CURL_HFILES = \
|
2018-09-23 18:24:02 -04:00
|
|
|
slist_wc.h \
|
|
|
|
tool_binmode.h \
|
|
|
|
tool_bname.h \
|
|
|
|
tool_cb_dbg.h \
|
|
|
|
tool_cb_hdr.h \
|
|
|
|
tool_cb_prg.h \
|
|
|
|
tool_cb_rea.h \
|
|
|
|
tool_cb_see.h \
|
|
|
|
tool_cb_wrt.h \
|
|
|
|
tool_cfgable.h \
|
|
|
|
tool_convert.h \
|
|
|
|
tool_dirhie.h \
|
|
|
|
tool_doswin.h \
|
|
|
|
tool_easysrc.h \
|
|
|
|
tool_filetime.h \
|
|
|
|
tool_formparse.h \
|
|
|
|
tool_getparam.h \
|
|
|
|
tool_getpass.h \
|
|
|
|
tool_help.h \
|
|
|
|
tool_helpers.h \
|
|
|
|
tool_homedir.h \
|
|
|
|
tool_hugehelp.h \
|
|
|
|
tool_libinfo.h \
|
|
|
|
tool_main.h \
|
|
|
|
tool_metalink.h \
|
|
|
|
tool_msgs.h \
|
|
|
|
tool_operate.h \
|
|
|
|
tool_operhlp.h \
|
|
|
|
tool_panykey.h \
|
|
|
|
tool_paramhlp.h \
|
|
|
|
tool_parsecfg.h \
|
2019-07-20 13:14:00 -04:00
|
|
|
tool_progress.h \
|
2018-09-23 18:24:02 -04:00
|
|
|
tool_sdecls.h \
|
|
|
|
tool_setopt.h \
|
|
|
|
tool_setup.h \
|
|
|
|
tool_sleep.h \
|
|
|
|
tool_strdup.h \
|
|
|
|
tool_urlglob.h \
|
|
|
|
tool_util.h \
|
|
|
|
tool_version.h \
|
|
|
|
tool_vms.h \
|
|
|
|
tool_writeout.h \
|
2020-02-01 12:55:24 -05:00
|
|
|
tool_writeout_json.h \
|
2018-09-23 18:24:02 -04:00
|
|
|
tool_xattr.h
|
2004-07-03 13:49:40 -04:00
|
|
|
|
2014-05-17 18:33:32 -04:00
|
|
|
CURL_RCFILES = curl.rc
|
|
|
|
|
2015-12-23 06:07:50 -05:00
|
|
|
# curl_SOURCES is special and gets assigned in src/Makefile.am
|
|
|
|
CURL_FILES = $(CURL_CFILES) $(CURLX_CFILES) $(CURL_HFILES)
|