Makefile.inc 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  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/cipher_suite.c \
  45. vtls/gtls.c \
  46. vtls/hostcheck.c \
  47. vtls/keylog.c \
  48. vtls/mbedtls.c \
  49. vtls/mbedtls_threadlock.c \
  50. vtls/openssl.c \
  51. vtls/rustls.c \
  52. vtls/schannel.c \
  53. vtls/schannel_verify.c \
  54. vtls/sectransp.c \
  55. vtls/vtls.c \
  56. vtls/wolfssl.c \
  57. vtls/x509asn1.c
  58. LIB_VTLS_HFILES = \
  59. vtls/bearssl.h \
  60. vtls/cipher_suite.h \
  61. vtls/gtls.h \
  62. vtls/hostcheck.h \
  63. vtls/keylog.h \
  64. vtls/mbedtls.h \
  65. vtls/mbedtls_threadlock.h \
  66. vtls/openssl.h \
  67. vtls/rustls.h \
  68. vtls/schannel.h \
  69. vtls/schannel_int.h \
  70. vtls/sectransp.h \
  71. vtls/vtls.h \
  72. vtls/vtls_int.h \
  73. vtls/wolfssl.h \
  74. vtls/x509asn1.h
  75. LIB_VQUIC_CFILES = \
  76. vquic/curl_msh3.c \
  77. vquic/curl_ngtcp2.c \
  78. vquic/curl_osslq.c \
  79. vquic/curl_quiche.c \
  80. vquic/vquic.c \
  81. vquic/vquic-tls.c
  82. LIB_VQUIC_HFILES = \
  83. vquic/curl_msh3.h \
  84. vquic/curl_ngtcp2.h \
  85. vquic/curl_osslq.h \
  86. vquic/curl_quiche.h \
  87. vquic/vquic.h \
  88. vquic/vquic_int.h \
  89. vquic/vquic-tls.h
  90. LIB_VSSH_CFILES = \
  91. vssh/libssh.c \
  92. vssh/libssh2.c \
  93. vssh/wolfssh.c
  94. LIB_VSSH_HFILES = \
  95. vssh/ssh.h
  96. LIB_CFILES = \
  97. altsvc.c \
  98. amigaos.c \
  99. asyn-ares.c \
  100. asyn-thread.c \
  101. base64.c \
  102. bufq.c \
  103. bufref.c \
  104. c-hyper.c \
  105. cf-h1-proxy.c \
  106. cf-h2-proxy.c \
  107. cf-haproxy.c \
  108. cf-https-connect.c \
  109. cf-socket.c \
  110. cfilters.c \
  111. conncache.c \
  112. connect.c \
  113. content_encoding.c \
  114. cookie.c \
  115. curl_addrinfo.c \
  116. curl_des.c \
  117. curl_endian.c \
  118. curl_fnmatch.c \
  119. curl_get_line.c \
  120. curl_gethostname.c \
  121. curl_gssapi.c \
  122. curl_memrchr.c \
  123. curl_multibyte.c \
  124. curl_ntlm_core.c \
  125. curl_path.c \
  126. curl_range.c \
  127. curl_rtmp.c \
  128. curl_sasl.c \
  129. curl_sha512_256.c \
  130. curl_sspi.c \
  131. curl_threads.c \
  132. curl_trc.c \
  133. cw-out.c \
  134. dict.c \
  135. dllmain.c \
  136. doh.c \
  137. dynbuf.c \
  138. dynhds.c \
  139. easy.c \
  140. easygetopt.c \
  141. easyoptions.c \
  142. escape.c \
  143. file.c \
  144. fileinfo.c \
  145. fopen.c \
  146. formdata.c \
  147. ftp.c \
  148. ftplistparser.c \
  149. getenv.c \
  150. getinfo.c \
  151. gopher.c \
  152. hash.c \
  153. headers.c \
  154. hmac.c \
  155. hostasyn.c \
  156. hostip.c \
  157. hostip4.c \
  158. hostip6.c \
  159. hostsyn.c \
  160. hsts.c \
  161. http.c \
  162. http1.c \
  163. http2.c \
  164. http_aws_sigv4.c \
  165. http_chunks.c \
  166. http_digest.c \
  167. http_negotiate.c \
  168. http_ntlm.c \
  169. http_proxy.c \
  170. idn.c \
  171. if2ip.c \
  172. imap.c \
  173. inet_ntop.c \
  174. inet_pton.c \
  175. krb5.c \
  176. ldap.c \
  177. llist.c \
  178. macos.c \
  179. md4.c \
  180. md5.c \
  181. memdebug.c \
  182. mime.c \
  183. mprintf.c \
  184. mqtt.c \
  185. multi.c \
  186. netrc.c \
  187. nonblock.c \
  188. noproxy.c \
  189. openldap.c \
  190. parsedate.c \
  191. pingpong.c \
  192. pop3.c \
  193. progress.c \
  194. psl.c \
  195. rand.c \
  196. rename.c \
  197. request.c \
  198. rtsp.c \
  199. select.c \
  200. sendf.c \
  201. setopt.c \
  202. sha256.c \
  203. share.c \
  204. slist.c \
  205. smb.c \
  206. smtp.c \
  207. socketpair.c \
  208. socks.c \
  209. socks_gssapi.c \
  210. socks_sspi.c \
  211. speedcheck.c \
  212. splay.c \
  213. strcase.c \
  214. strdup.c \
  215. strerror.c \
  216. strtok.c \
  217. strtoofft.c \
  218. system_win32.c \
  219. telnet.c \
  220. tftp.c \
  221. timediff.c \
  222. timeval.c \
  223. transfer.c \
  224. url.c \
  225. urlapi.c \
  226. version.c \
  227. version_win32.c \
  228. warnless.c \
  229. ws.c
  230. LIB_HFILES = \
  231. altsvc.h \
  232. amigaos.h \
  233. arpa_telnet.h \
  234. asyn.h \
  235. bufq.h \
  236. bufref.h \
  237. c-hyper.h \
  238. cf-h1-proxy.h \
  239. cf-h2-proxy.h \
  240. cf-haproxy.h \
  241. cf-https-connect.h \
  242. cf-socket.h \
  243. cfilters.h \
  244. conncache.h \
  245. connect.h \
  246. content_encoding.h \
  247. cookie.h \
  248. curl_addrinfo.h \
  249. curl_base64.h \
  250. curl_ctype.h \
  251. curl_des.h \
  252. curl_endian.h \
  253. curl_fnmatch.h \
  254. curl_get_line.h \
  255. curl_gethostname.h \
  256. curl_gssapi.h \
  257. curl_hmac.h \
  258. curl_krb5.h \
  259. curl_ldap.h \
  260. curl_md4.h \
  261. curl_md5.h \
  262. curl_memory.h \
  263. curl_memrchr.h \
  264. curl_multibyte.h \
  265. curl_ntlm_core.h \
  266. curl_path.h \
  267. curl_printf.h \
  268. curl_range.h \
  269. curl_rtmp.h \
  270. curl_sasl.h \
  271. curl_setup.h \
  272. curl_setup_once.h \
  273. curl_sha256.h \
  274. curl_sha512_256.h \
  275. curl_sspi.h \
  276. curl_threads.h \
  277. curl_trc.h \
  278. curlx.h \
  279. cw-out.h \
  280. dict.h \
  281. doh.h \
  282. dynbuf.h \
  283. dynhds.h \
  284. easy_lock.h \
  285. easyif.h \
  286. easyoptions.h \
  287. escape.h \
  288. file.h \
  289. fileinfo.h \
  290. fopen.h \
  291. formdata.h \
  292. ftp.h \
  293. ftplistparser.h \
  294. functypes.h \
  295. getinfo.h \
  296. gopher.h \
  297. hash.h \
  298. headers.h \
  299. hostip.h \
  300. hsts.h \
  301. http.h \
  302. http1.h \
  303. http2.h \
  304. http_aws_sigv4.h \
  305. http_chunks.h \
  306. http_digest.h \
  307. http_negotiate.h \
  308. http_ntlm.h \
  309. http_proxy.h \
  310. idn.h \
  311. if2ip.h \
  312. imap.h \
  313. inet_ntop.h \
  314. inet_pton.h \
  315. llist.h \
  316. macos.h \
  317. memdebug.h \
  318. mime.h \
  319. mqtt.h \
  320. multihandle.h \
  321. multiif.h \
  322. netrc.h \
  323. nonblock.h \
  324. noproxy.h \
  325. parsedate.h \
  326. pingpong.h \
  327. pop3.h \
  328. progress.h \
  329. psl.h \
  330. rand.h \
  331. rename.h \
  332. request.h \
  333. rtsp.h \
  334. select.h \
  335. sendf.h \
  336. setopt.h \
  337. setup-vms.h \
  338. share.h \
  339. sigpipe.h \
  340. slist.h \
  341. smb.h \
  342. smtp.h \
  343. sockaddr.h \
  344. socketpair.h \
  345. socks.h \
  346. speedcheck.h \
  347. splay.h \
  348. strcase.h \
  349. strdup.h \
  350. strerror.h \
  351. strtok.h \
  352. strtoofft.h \
  353. system_win32.h \
  354. telnet.h \
  355. tftp.h \
  356. timediff.h \
  357. timeval.h \
  358. transfer.h \
  359. url.h \
  360. urlapi-int.h \
  361. urldata.h \
  362. version_win32.h \
  363. warnless.h \
  364. ws.h
  365. LIB_RCFILES = libcurl.rc
  366. CSOURCES = $(LIB_CFILES) $(LIB_VAUTH_CFILES) $(LIB_VTLS_CFILES) \
  367. $(LIB_VQUIC_CFILES) $(LIB_VSSH_CFILES)
  368. HHEADERS = $(LIB_HFILES) $(LIB_VAUTH_HFILES) $(LIB_VTLS_HFILES) \
  369. $(LIB_VQUIC_HFILES) $(LIB_VSSH_HFILES)