Makefile.inc 8.9 KB

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