Makefile.inc 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. #
  10. # This software is licensed as described in the file COPYING, which
  11. # you should have received as part of this distribution. The terms
  12. # are also available at https://curl.se/docs/copyright.html.
  13. #
  14. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. # copies of the Software, and permit persons to whom the Software is
  16. # furnished to do so, under the terms of the COPYING file.
  17. #
  18. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. # KIND, either express or implied.
  20. #
  21. # SPDX-License-Identifier: curl
  22. #
  23. ###########################################################################
  24. LIB_VAUTH_CFILES = \
  25. vauth/cleartext.c \
  26. vauth/cram.c \
  27. vauth/digest.c \
  28. vauth/digest_sspi.c \
  29. vauth/gsasl.c \
  30. vauth/krb5_gssapi.c \
  31. vauth/krb5_sspi.c \
  32. vauth/ntlm.c \
  33. vauth/ntlm_sspi.c \
  34. vauth/oauth2.c \
  35. vauth/spnego_gssapi.c \
  36. vauth/spnego_sspi.c \
  37. vauth/vauth.c
  38. LIB_VAUTH_HFILES = \
  39. vauth/digest.h \
  40. vauth/ntlm.h \
  41. vauth/vauth.h
  42. LIB_VTLS_CFILES = \
  43. vtls/bearssl.c \
  44. vtls/gtls.c \
  45. vtls/hostcheck.c \
  46. vtls/keylog.c \
  47. vtls/mbedtls.c \
  48. vtls/mbedtls_threadlock.c \
  49. vtls/openssl.c \
  50. vtls/rustls.c \
  51. vtls/schannel.c \
  52. vtls/schannel_verify.c \
  53. vtls/sectransp.c \
  54. vtls/vtls.c \
  55. vtls/wolfssl.c \
  56. vtls/x509asn1.c
  57. LIB_VTLS_HFILES = \
  58. vtls/bearssl.h \
  59. vtls/gtls.h \
  60. vtls/hostcheck.h \
  61. vtls/keylog.h \
  62. vtls/mbedtls.h \
  63. vtls/mbedtls_threadlock.h \
  64. vtls/openssl.h \
  65. vtls/rustls.h \
  66. vtls/schannel.h \
  67. vtls/schannel_int.h \
  68. vtls/sectransp.h \
  69. vtls/vtls.h \
  70. vtls/vtls_int.h \
  71. vtls/wolfssl.h \
  72. vtls/x509asn1.h
  73. LIB_VQUIC_CFILES = \
  74. vquic/curl_msh3.c \
  75. vquic/curl_ngtcp2.c \
  76. vquic/curl_quiche.c \
  77. vquic/vquic.c
  78. LIB_VQUIC_HFILES = \
  79. vquic/curl_msh3.h \
  80. vquic/curl_ngtcp2.h \
  81. vquic/curl_quiche.h \
  82. vquic/vquic.h \
  83. vquic/vquic_int.h
  84. LIB_VSSH_CFILES = \
  85. vssh/libssh.c \
  86. vssh/libssh2.c \
  87. vssh/wolfssh.c
  88. LIB_VSSH_HFILES = \
  89. vssh/ssh.h
  90. LIB_CFILES = \
  91. altsvc.c \
  92. amigaos.c \
  93. asyn-ares.c \
  94. asyn-thread.c \
  95. base64.c \
  96. bufq.c \
  97. bufref.c \
  98. c-hyper.c \
  99. cf-h1-proxy.c \
  100. cf-h2-proxy.c \
  101. cf-haproxy.c \
  102. cf-https-connect.c \
  103. cf-socket.c \
  104. cfilters.c \
  105. conncache.c \
  106. connect.c \
  107. content_encoding.c \
  108. cookie.c \
  109. curl_addrinfo.c \
  110. curl_des.c \
  111. curl_endian.c \
  112. curl_fnmatch.c \
  113. curl_get_line.c \
  114. curl_gethostname.c \
  115. curl_gssapi.c \
  116. curl_memrchr.c \
  117. curl_multibyte.c \
  118. curl_ntlm_core.c \
  119. curl_ntlm_wb.c \
  120. curl_path.c \
  121. curl_range.c \
  122. curl_rtmp.c \
  123. curl_sasl.c \
  124. curl_sspi.c \
  125. curl_threads.c \
  126. curl_trc.c \
  127. dict.c \
  128. doh.c \
  129. dynbuf.c \
  130. dynhds.c \
  131. easy.c \
  132. easygetopt.c \
  133. easyoptions.c \
  134. escape.c \
  135. file.c \
  136. fileinfo.c \
  137. fopen.c \
  138. formdata.c \
  139. ftp.c \
  140. ftplistparser.c \
  141. getenv.c \
  142. getinfo.c \
  143. gopher.c \
  144. hash.c \
  145. headers.c \
  146. hmac.c \
  147. hostasyn.c \
  148. hostip.c \
  149. hostip4.c \
  150. hostip6.c \
  151. hostsyn.c \
  152. hsts.c \
  153. http.c \
  154. http1.c \
  155. http2.c \
  156. http_aws_sigv4.c \
  157. http_chunks.c \
  158. http_digest.c \
  159. http_negotiate.c \
  160. http_ntlm.c \
  161. http_proxy.c \
  162. idn.c \
  163. if2ip.c \
  164. imap.c \
  165. inet_ntop.c \
  166. inet_pton.c \
  167. krb5.c \
  168. ldap.c \
  169. llist.c \
  170. macos.c \
  171. md4.c \
  172. md5.c \
  173. memdebug.c \
  174. mime.c \
  175. mprintf.c \
  176. mqtt.c \
  177. multi.c \
  178. netrc.c \
  179. nonblock.c \
  180. noproxy.c \
  181. openldap.c \
  182. parsedate.c \
  183. pingpong.c \
  184. pop3.c \
  185. progress.c \
  186. psl.c \
  187. rand.c \
  188. rename.c \
  189. rtsp.c \
  190. select.c \
  191. sendf.c \
  192. setopt.c \
  193. sha256.c \
  194. share.c \
  195. slist.c \
  196. smb.c \
  197. smtp.c \
  198. socketpair.c \
  199. socks.c \
  200. socks_gssapi.c \
  201. socks_sspi.c \
  202. speedcheck.c \
  203. splay.c \
  204. strcase.c \
  205. strdup.c \
  206. strerror.c \
  207. strtok.c \
  208. strtoofft.c \
  209. system_win32.c \
  210. telnet.c \
  211. tftp.c \
  212. timediff.c \
  213. timeval.c \
  214. transfer.c \
  215. url.c \
  216. urlapi.c \
  217. version.c \
  218. version_win32.c \
  219. warnless.c \
  220. ws.c
  221. LIB_HFILES = \
  222. altsvc.h \
  223. amigaos.h \
  224. arpa_telnet.h \
  225. asyn.h \
  226. bufq.h \
  227. bufref.h \
  228. c-hyper.h \
  229. cf-h1-proxy.h \
  230. cf-h2-proxy.h \
  231. cf-haproxy.h \
  232. cf-https-connect.h \
  233. cf-socket.h \
  234. cfilters.h \
  235. conncache.h \
  236. connect.h \
  237. content_encoding.h \
  238. cookie.h \
  239. curl_addrinfo.h \
  240. curl_base64.h \
  241. curl_ctype.h \
  242. curl_des.h \
  243. curl_endian.h \
  244. curl_fnmatch.h \
  245. curl_get_line.h \
  246. curl_gethostname.h \
  247. curl_gssapi.h \
  248. curl_hmac.h \
  249. curl_krb5.h \
  250. curl_ldap.h \
  251. curl_md4.h \
  252. curl_md5.h \
  253. curl_memory.h \
  254. curl_memrchr.h \
  255. curl_multibyte.h \
  256. curl_ntlm_core.h \
  257. curl_ntlm_wb.h \
  258. curl_path.h \
  259. curl_printf.h \
  260. curl_range.h \
  261. curl_rtmp.h \
  262. curl_sasl.h \
  263. curl_setup.h \
  264. curl_setup_once.h \
  265. curl_sha256.h \
  266. curl_sspi.h \
  267. curl_threads.h \
  268. curl_trc.h \
  269. curlx.h \
  270. dict.h \
  271. doh.h \
  272. dynbuf.h \
  273. dynhds.h \
  274. easy_lock.h \
  275. easyif.h \
  276. easyoptions.h \
  277. escape.h \
  278. file.h \
  279. fileinfo.h \
  280. fopen.h \
  281. formdata.h \
  282. ftp.h \
  283. ftplistparser.h \
  284. functypes.h \
  285. getinfo.h \
  286. gopher.h \
  287. hash.h \
  288. headers.h \
  289. hostip.h \
  290. hsts.h \
  291. http.h \
  292. http1.h \
  293. http2.h \
  294. http_aws_sigv4.h \
  295. http_chunks.h \
  296. http_digest.h \
  297. http_negotiate.h \
  298. http_ntlm.h \
  299. http_proxy.h \
  300. idn.h \
  301. if2ip.h \
  302. imap.h \
  303. inet_ntop.h \
  304. inet_pton.h \
  305. llist.h \
  306. macos.h \
  307. memdebug.h \
  308. mime.h \
  309. mqtt.h \
  310. multihandle.h \
  311. multiif.h \
  312. netrc.h \
  313. nonblock.h \
  314. noproxy.h \
  315. parsedate.h \
  316. pingpong.h \
  317. pop3.h \
  318. progress.h \
  319. psl.h \
  320. rand.h \
  321. rename.h \
  322. rtsp.h \
  323. select.h \
  324. sendf.h \
  325. setopt.h \
  326. setup-vms.h \
  327. share.h \
  328. sigpipe.h \
  329. slist.h \
  330. smb.h \
  331. smtp.h \
  332. sockaddr.h \
  333. socketpair.h \
  334. socks.h \
  335. speedcheck.h \
  336. splay.h \
  337. strcase.h \
  338. strdup.h \
  339. strerror.h \
  340. strtok.h \
  341. strtoofft.h \
  342. system_win32.h \
  343. telnet.h \
  344. tftp.h \
  345. timediff.h \
  346. timeval.h \
  347. transfer.h \
  348. url.h \
  349. urlapi-int.h \
  350. urldata.h \
  351. version_win32.h \
  352. warnless.h \
  353. ws.h
  354. LIB_RCFILES = libcurl.rc
  355. CSOURCES = $(LIB_CFILES) $(LIB_VAUTH_CFILES) $(LIB_VTLS_CFILES) \
  356. $(LIB_VQUIC_CFILES) $(LIB_VSSH_CFILES)
  357. HHEADERS = $(LIB_HFILES) $(LIB_VAUTH_HFILES) $(LIB_VTLS_HFILES) \
  358. $(LIB_VQUIC_HFILES) $(LIB_VSSH_HFILES)