Makefile.inc 8.1 KB

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