Makefile.inc 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2022, 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. ###########################################################################
  22. LIB_VAUTH_CFILES = \
  23. vauth/cleartext.c \
  24. vauth/cram.c \
  25. vauth/digest.c \
  26. vauth/digest_sspi.c \
  27. vauth/gsasl.c \
  28. vauth/krb5_gssapi.c \
  29. vauth/krb5_sspi.c \
  30. vauth/ntlm.c \
  31. vauth/ntlm_sspi.c \
  32. vauth/oauth2.c \
  33. vauth/spnego_gssapi.c \
  34. vauth/spnego_sspi.c \
  35. vauth/vauth.c
  36. LIB_VAUTH_HFILES = \
  37. vauth/digest.h \
  38. vauth/ntlm.h \
  39. vauth/vauth.h
  40. LIB_VTLS_CFILES = \
  41. vtls/bearssl.c \
  42. vtls/gskit.c \
  43. vtls/gtls.c \
  44. vtls/hostcheck.c \
  45. vtls/keylog.c \
  46. vtls/mbedtls.c \
  47. vtls/mbedtls_threadlock.c \
  48. vtls/nss.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/gskit.h \
  60. vtls/gtls.h \
  61. vtls/hostcheck.h \
  62. vtls/keylog.h \
  63. vtls/mbedtls.h \
  64. vtls/mbedtls_threadlock.h \
  65. vtls/nssg.h \
  66. vtls/openssl.h \
  67. vtls/rustls.h \
  68. vtls/schannel.h \
  69. vtls/sectransp.h \
  70. vtls/vtls.h \
  71. vtls/wolfssl.h \
  72. vtls/x509asn1.h
  73. LIB_VQUIC_CFILES = \
  74. vquic/msh3.c \
  75. vquic/ngtcp2.c \
  76. vquic/quiche.c \
  77. vquic/vquic.c
  78. LIB_VQUIC_HFILES = \
  79. vquic/msh3.h \
  80. vquic/ngtcp2.h \
  81. vquic/quiche.h \
  82. vquic/vquic.h
  83. LIB_VSSH_CFILES = \
  84. vssh/libssh.c \
  85. vssh/libssh2.c \
  86. vssh/wolfssh.c
  87. LIB_VSSH_HFILES = \
  88. vssh/ssh.h
  89. LIB_CFILES = \
  90. altsvc.c \
  91. amigaos.c \
  92. asyn-ares.c \
  93. asyn-thread.c \
  94. base64.c \
  95. bufref.c \
  96. c-hyper.c \
  97. conncache.c \
  98. connect.c \
  99. content_encoding.c \
  100. cookie.c \
  101. curl_addrinfo.c \
  102. curl_ctype.c \
  103. curl_des.c \
  104. curl_endian.c \
  105. curl_fnmatch.c \
  106. curl_get_line.c \
  107. curl_gethostname.c \
  108. curl_gssapi.c \
  109. curl_memrchr.c \
  110. curl_multibyte.c \
  111. curl_ntlm_core.c \
  112. curl_ntlm_wb.c \
  113. curl_path.c \
  114. curl_range.c \
  115. curl_rtmp.c \
  116. curl_sasl.c \
  117. curl_sspi.c \
  118. curl_threads.c \
  119. dict.c \
  120. doh.c \
  121. dotdot.c \
  122. dynbuf.c \
  123. easy.c \
  124. easygetopt.c \
  125. easyoptions.c \
  126. escape.c \
  127. file.c \
  128. fileinfo.c \
  129. formdata.c \
  130. ftp.c \
  131. ftplistparser.c \
  132. getenv.c \
  133. getinfo.c \
  134. gopher.c \
  135. h2h3.c \
  136. hash.c \
  137. headers.c \
  138. hmac.c \
  139. hostasyn.c \
  140. hostip.c \
  141. hostip4.c \
  142. hostip6.c \
  143. hostsyn.c \
  144. hsts.c \
  145. http.c \
  146. http2.c \
  147. http_chunks.c \
  148. http_digest.c \
  149. http_negotiate.c \
  150. http_ntlm.c \
  151. http_proxy.c \
  152. http_aws_sigv4.c \
  153. idn_win32.c \
  154. if2ip.c \
  155. imap.c \
  156. inet_ntop.c \
  157. inet_pton.c \
  158. krb5.c \
  159. ldap.c \
  160. llist.c \
  161. md4.c \
  162. md5.c \
  163. memdebug.c \
  164. mime.c \
  165. mprintf.c \
  166. mqtt.c \
  167. multi.c \
  168. netrc.c \
  169. nonblock.c \
  170. openldap.c \
  171. parsedate.c \
  172. pingpong.c \
  173. pop3.c \
  174. progress.c \
  175. psl.c \
  176. rand.c \
  177. rename.c \
  178. rtsp.c \
  179. select.c \
  180. sendf.c \
  181. setopt.c \
  182. sha256.c \
  183. share.c \
  184. slist.c \
  185. smb.c \
  186. smtp.c \
  187. socketpair.c \
  188. socks.c \
  189. socks_gssapi.c \
  190. socks_sspi.c \
  191. speedcheck.c \
  192. splay.c \
  193. strcase.c \
  194. strdup.c \
  195. strerror.c \
  196. strtok.c \
  197. strtoofft.c \
  198. system_win32.c \
  199. telnet.c \
  200. tftp.c \
  201. timediff.c \
  202. timeval.c \
  203. transfer.c \
  204. url.c \
  205. urlapi.c \
  206. version.c \
  207. version_win32.c \
  208. warnless.c \
  209. wildcard.c
  210. LIB_HFILES = \
  211. altsvc.h \
  212. amigaos.h \
  213. arpa_telnet.h \
  214. asyn.h \
  215. bufref.h \
  216. c-hyper.h \
  217. conncache.h \
  218. connect.h \
  219. content_encoding.h \
  220. cookie.h \
  221. curl_addrinfo.h \
  222. curl_base64.h \
  223. curl_ctype.h \
  224. curl_des.h \
  225. curl_endian.h \
  226. curl_fnmatch.h \
  227. curl_get_line.h \
  228. curl_gethostname.h \
  229. curl_gssapi.h \
  230. curl_hmac.h \
  231. curl_krb5.h \
  232. curl_ldap.h \
  233. curl_md4.h \
  234. curl_md5.h \
  235. curl_memory.h \
  236. curl_memrchr.h \
  237. curl_multibyte.h \
  238. curl_ntlm_core.h \
  239. curl_ntlm_wb.h \
  240. curl_path.h \
  241. curl_printf.h \
  242. curl_range.h \
  243. curl_rtmp.h \
  244. curl_sasl.h \
  245. curl_setup.h \
  246. curl_setup_once.h \
  247. curl_sha256.h \
  248. curl_sspi.h \
  249. curl_threads.h \
  250. curlx.h \
  251. dict.h \
  252. doh.h \
  253. dotdot.h \
  254. dynbuf.h \
  255. easyif.h \
  256. easyoptions.h \
  257. escape.h \
  258. file.h \
  259. fileinfo.h \
  260. formdata.h \
  261. ftp.h \
  262. ftplistparser.h \
  263. getinfo.h \
  264. gopher.h \
  265. h2h3.h \
  266. hash.h \
  267. headers.h \
  268. hostip.h \
  269. hsts.h \
  270. http.h \
  271. http2.h \
  272. http_chunks.h \
  273. http_digest.h \
  274. http_negotiate.h \
  275. http_ntlm.h \
  276. http_proxy.h \
  277. http_aws_sigv4.h \
  278. if2ip.h \
  279. imap.h \
  280. inet_ntop.h \
  281. inet_pton.h \
  282. llist.h \
  283. memdebug.h \
  284. mime.h \
  285. mqtt.h \
  286. multihandle.h \
  287. multiif.h \
  288. netrc.h \
  289. nonblock.h \
  290. parsedate.h \
  291. pingpong.h \
  292. pop3.h \
  293. progress.h \
  294. psl.h \
  295. quic.h \
  296. rand.h \
  297. rename.h \
  298. rtsp.h \
  299. select.h \
  300. sendf.h \
  301. setopt.h \
  302. setup-vms.h \
  303. share.h \
  304. sigpipe.h \
  305. slist.h \
  306. smb.h \
  307. smtp.h \
  308. sockaddr.h \
  309. socketpair.h \
  310. socks.h \
  311. speedcheck.h \
  312. splay.h \
  313. strcase.h \
  314. strdup.h \
  315. strerror.h \
  316. strtok.h \
  317. strtoofft.h \
  318. system_win32.h \
  319. telnet.h \
  320. tftp.h \
  321. timediff.h \
  322. timeval.h \
  323. transfer.h \
  324. url.h \
  325. urlapi-int.h \
  326. urldata.h \
  327. version_win32.h \
  328. warnless.h \
  329. wildcard.h
  330. LIB_RCFILES = libcurl.rc
  331. CSOURCES = $(LIB_CFILES) $(LIB_VAUTH_CFILES) $(LIB_VTLS_CFILES) \
  332. $(LIB_VQUIC_CFILES) $(LIB_VSSH_CFILES)
  333. HHEADERS = $(LIB_HFILES) $(LIB_VAUTH_HFILES) $(LIB_VTLS_HFILES) \
  334. $(LIB_VQUIC_HFILES) $(LIB_VSSH_HFILES)