Makefile.in 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913
  1. # Makefile.in generated by automake 1.16.1 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2018 Free Software Foundation, Inc.
  4. # This Makefile.in is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  9. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  10. # PARTICULAR PURPOSE.
  11. @SET_MAKE@
  12. #***************************************************************************
  13. # _ _ ____ _
  14. # Project ___| | | | _ \| |
  15. # / __| | | | |_) | |
  16. # | (__| |_| | _ <| |___
  17. # \___|\___/|_| \_\_____|
  18. #
  19. # Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
  20. #
  21. # This software is licensed as described in the file COPYING, which
  22. # you should have received as part of this distribution. The terms
  23. # are also available at https://curl.haxx.se/docs/copyright.html.
  24. #
  25. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  26. # copies of the Software, and permit persons to whom the Software is
  27. # furnished to do so, under the terms of the COPYING file.
  28. #
  29. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  30. # KIND, either express or implied.
  31. #
  32. ###########################################################################
  33. VPATH = @srcdir@
  34. am__is_gnu_make = { \
  35. if test -z '$(MAKELEVEL)'; then \
  36. false; \
  37. elif test -n '$(MAKE_HOST)'; then \
  38. true; \
  39. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  40. true; \
  41. else \
  42. false; \
  43. fi; \
  44. }
  45. am__make_running_with_option = \
  46. case $${target_option-} in \
  47. ?) ;; \
  48. *) echo "am__make_running_with_option: internal error: invalid" \
  49. "target option '$${target_option-}' specified" >&2; \
  50. exit 1;; \
  51. esac; \
  52. has_opt=no; \
  53. sane_makeflags=$$MAKEFLAGS; \
  54. if $(am__is_gnu_make); then \
  55. sane_makeflags=$$MFLAGS; \
  56. else \
  57. case $$MAKEFLAGS in \
  58. *\\[\ \ ]*) \
  59. bs=\\; \
  60. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  61. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  62. esac; \
  63. fi; \
  64. skip_next=no; \
  65. strip_trailopt () \
  66. { \
  67. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  68. }; \
  69. for flg in $$sane_makeflags; do \
  70. test $$skip_next = yes && { skip_next=no; continue; }; \
  71. case $$flg in \
  72. *=*|--*) continue;; \
  73. -*I) strip_trailopt 'I'; skip_next=yes;; \
  74. -*I?*) strip_trailopt 'I';; \
  75. -*O) strip_trailopt 'O'; skip_next=yes;; \
  76. -*O?*) strip_trailopt 'O';; \
  77. -*l) strip_trailopt 'l'; skip_next=yes;; \
  78. -*l?*) strip_trailopt 'l';; \
  79. -[dEDm]) skip_next=yes;; \
  80. -[JT]) skip_next=yes;; \
  81. esac; \
  82. case $$flg in \
  83. *$$target_option*) has_opt=yes; break;; \
  84. esac; \
  85. done; \
  86. test $$has_opt = yes
  87. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  88. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  89. pkgdatadir = $(datadir)/@PACKAGE@
  90. pkgincludedir = $(includedir)/@PACKAGE@
  91. pkglibdir = $(libdir)/@PACKAGE@
  92. pkglibexecdir = $(libexecdir)/@PACKAGE@
  93. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  94. install_sh_DATA = $(install_sh) -c -m 644
  95. install_sh_PROGRAM = $(install_sh) -c
  96. install_sh_SCRIPT = $(install_sh) -c
  97. INSTALL_HEADER = $(INSTALL_DATA)
  98. transform = $(program_transform_name)
  99. NORMAL_INSTALL = :
  100. PRE_INSTALL = :
  101. POST_INSTALL = :
  102. NORMAL_UNINSTALL = :
  103. PRE_UNINSTALL = :
  104. POST_UNINSTALL = :
  105. build_triplet = @build@
  106. host_triplet = @host@
  107. subdir = docs
  108. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  109. am__aclocal_m4_deps = $(top_srcdir)/m4/ax_code_coverage.m4 \
  110. $(top_srcdir)/m4/ax_compile_check_sizeof.m4 \
  111. $(top_srcdir)/m4/curl-compilers.m4 \
  112. $(top_srcdir)/m4/curl-confopts.m4 \
  113. $(top_srcdir)/m4/curl-functions.m4 \
  114. $(top_srcdir)/m4/curl-openssl.m4 \
  115. $(top_srcdir)/m4/curl-override.m4 \
  116. $(top_srcdir)/m4/curl-reentrant.m4 $(top_srcdir)/m4/libtool.m4 \
  117. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  118. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  119. $(top_srcdir)/m4/xc-am-iface.m4 \
  120. $(top_srcdir)/m4/xc-cc-check.m4 \
  121. $(top_srcdir)/m4/xc-lt-iface.m4 \
  122. $(top_srcdir)/m4/xc-translit.m4 \
  123. $(top_srcdir)/m4/xc-val-flgs.m4 \
  124. $(top_srcdir)/m4/zz40-xc-ovr.m4 \
  125. $(top_srcdir)/m4/zz50-xc-ovr.m4 \
  126. $(top_srcdir)/m4/zz60-xc-ovr.m4 $(top_srcdir)/acinclude.m4 \
  127. $(top_srcdir)/configure.ac
  128. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  129. $(ACLOCAL_M4)
  130. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  131. mkinstalldirs = $(install_sh) -d
  132. CONFIG_HEADER = $(top_builddir)/lib/curl_config.h
  133. CONFIG_CLEAN_FILES =
  134. CONFIG_CLEAN_VPATH_FILES =
  135. AM_V_P = $(am__v_P_@AM_V@)
  136. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  137. am__v_P_0 = false
  138. am__v_P_1 = :
  139. AM_V_GEN = $(am__v_GEN_@AM_V@)
  140. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  141. am__v_GEN_0 = @echo " GEN " $@;
  142. am__v_GEN_1 =
  143. AM_V_at = $(am__v_at_@AM_V@)
  144. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  145. am__v_at_0 = @
  146. am__v_at_1 =
  147. depcomp =
  148. am__maybe_remake_depfiles =
  149. SOURCES =
  150. DIST_SOURCES =
  151. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  152. ctags-recursive dvi-recursive html-recursive info-recursive \
  153. install-data-recursive install-dvi-recursive \
  154. install-exec-recursive install-html-recursive \
  155. install-info-recursive install-pdf-recursive \
  156. install-ps-recursive install-recursive installcheck-recursive \
  157. installdirs-recursive pdf-recursive ps-recursive \
  158. tags-recursive uninstall-recursive
  159. am__can_run_installinfo = \
  160. case $$AM_UPDATE_INFO_DIR in \
  161. n|no|NO) false;; \
  162. *) (install-info --version) >/dev/null 2>&1;; \
  163. esac
  164. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  165. am__vpath_adj = case $$p in \
  166. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  167. *) f=$$p;; \
  168. esac;
  169. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  170. am__install_max = 40
  171. am__nobase_strip_setup = \
  172. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  173. am__nobase_strip = \
  174. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  175. am__nobase_list = $(am__nobase_strip_setup); \
  176. for p in $$list; do echo "$$p $$p"; done | \
  177. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  178. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  179. if (++n[$$2] == $(am__install_max)) \
  180. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  181. END { for (dir in files) print dir, files[dir] }'
  182. am__base_list = \
  183. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  184. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  185. am__uninstall_files_from_dir = { \
  186. test -z "$$files" \
  187. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  188. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  189. $(am__cd) "$$dir" && rm -f $$files; }; \
  190. }
  191. man1dir = $(mandir)/man1
  192. am__installdirs = "$(DESTDIR)$(man1dir)"
  193. MANS = $(dist_man_MANS) $(man_MANS)
  194. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  195. distclean-recursive maintainer-clean-recursive
  196. am__recursive_targets = \
  197. $(RECURSIVE_TARGETS) \
  198. $(RECURSIVE_CLEAN_TARGETS) \
  199. $(am__extra_recursive_targets)
  200. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  201. distdir distdir-am
  202. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  203. # Read a list of newline-separated strings from the standard input,
  204. # and print each of them once, without duplicates. Input order is
  205. # *not* preserved.
  206. am__uniquify_input = $(AWK) '\
  207. BEGIN { nonempty = 0; } \
  208. { items[$$0] = 1; nonempty = 1; } \
  209. END { if (nonempty) { for (i in items) print i; }; } \
  210. '
  211. # Make sure the list of sources is unique. This is necessary because,
  212. # e.g., the same source file might be shared among _SOURCES variables
  213. # for different programs/libraries.
  214. am__define_uniq_tagged_files = \
  215. list='$(am__tagged_files)'; \
  216. unique=`for i in $$list; do \
  217. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  218. done | $(am__uniquify_input)`
  219. ETAGS = etags
  220. CTAGS = ctags
  221. am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in INSTALL \
  222. THANKS TODO
  223. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  224. am__relativize = \
  225. dir0=`pwd`; \
  226. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  227. sed_rest='s,^[^/]*/*,,'; \
  228. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  229. sed_butlast='s,/*[^/]*$$,,'; \
  230. while test -n "$$dir1"; do \
  231. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  232. if test "$$first" != "."; then \
  233. if test "$$first" = ".."; then \
  234. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  235. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  236. else \
  237. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  238. if test "$$first2" = "$$first"; then \
  239. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  240. else \
  241. dir2="../$$dir2"; \
  242. fi; \
  243. dir0="$$dir0"/"$$first"; \
  244. fi; \
  245. fi; \
  246. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  247. done; \
  248. reldir="$$dir2"
  249. ACLOCAL = @ACLOCAL@
  250. AMTAR = @AMTAR@
  251. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  252. AR = @AR@
  253. AR_FLAGS = @AR_FLAGS@
  254. AS = @AS@
  255. AUTOCONF = @AUTOCONF@
  256. AUTOHEADER = @AUTOHEADER@
  257. AUTOMAKE = @AUTOMAKE@
  258. AWK = @AWK@
  259. BLANK_AT_MAKETIME = @BLANK_AT_MAKETIME@
  260. CC = @CC@
  261. CCDEPMODE = @CCDEPMODE@
  262. CFLAGS = @CFLAGS@
  263. CFLAG_CURL_SYMBOL_HIDING = @CFLAG_CURL_SYMBOL_HIDING@
  264. CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@
  265. CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@
  266. CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@
  267. CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@
  268. CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@
  269. CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@
  270. CONFIGURE_OPTIONS = @CONFIGURE_OPTIONS@
  271. CPP = @CPP@
  272. CPPFLAGS = @CPPFLAGS@
  273. CPPFLAG_CURL_STATICLIB = @CPPFLAG_CURL_STATICLIB@
  274. CURLVERSION = @CURLVERSION@
  275. CURL_CA_BUNDLE = @CURL_CA_BUNDLE@
  276. CURL_CFLAG_EXTRAS = @CURL_CFLAG_EXTRAS@
  277. CURL_DISABLE_DICT = @CURL_DISABLE_DICT@
  278. CURL_DISABLE_FILE = @CURL_DISABLE_FILE@
  279. CURL_DISABLE_FTP = @CURL_DISABLE_FTP@
  280. CURL_DISABLE_GOPHER = @CURL_DISABLE_GOPHER@
  281. CURL_DISABLE_HTTP = @CURL_DISABLE_HTTP@
  282. CURL_DISABLE_IMAP = @CURL_DISABLE_IMAP@
  283. CURL_DISABLE_LDAP = @CURL_DISABLE_LDAP@
  284. CURL_DISABLE_LDAPS = @CURL_DISABLE_LDAPS@
  285. CURL_DISABLE_POP3 = @CURL_DISABLE_POP3@
  286. CURL_DISABLE_PROXY = @CURL_DISABLE_PROXY@
  287. CURL_DISABLE_RTSP = @CURL_DISABLE_RTSP@
  288. CURL_DISABLE_SMB = @CURL_DISABLE_SMB@
  289. CURL_DISABLE_SMTP = @CURL_DISABLE_SMTP@
  290. CURL_DISABLE_TELNET = @CURL_DISABLE_TELNET@
  291. CURL_DISABLE_TFTP = @CURL_DISABLE_TFTP@
  292. CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
  293. CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
  294. CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
  295. CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
  296. CYGPATH_W = @CYGPATH_W@
  297. DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
  298. DEFS = @DEFS@
  299. DEPDIR = @DEPDIR@
  300. DLLTOOL = @DLLTOOL@
  301. DSYMUTIL = @DSYMUTIL@
  302. DUMPBIN = @DUMPBIN@
  303. ECHO_C = @ECHO_C@
  304. ECHO_N = @ECHO_N@
  305. ECHO_T = @ECHO_T@
  306. EGREP = @EGREP@
  307. ENABLE_SHARED = @ENABLE_SHARED@
  308. ENABLE_STATIC = @ENABLE_STATIC@
  309. EXEEXT = @EXEEXT@
  310. FGREP = @FGREP@
  311. GCOV = @GCOV@
  312. GENHTML = @GENHTML@
  313. GREP = @GREP@
  314. HAVE_BROTLI = @HAVE_BROTLI@
  315. HAVE_GNUTLS_SRP = @HAVE_GNUTLS_SRP@
  316. HAVE_LDAP_SSL = @HAVE_LDAP_SSL@
  317. HAVE_LIBZ = @HAVE_LIBZ@
  318. HAVE_OPENSSL_SRP = @HAVE_OPENSSL_SRP@
  319. IDN_ENABLED = @IDN_ENABLED@
  320. INSTALL = @INSTALL@
  321. INSTALL_DATA = @INSTALL_DATA@
  322. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  323. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  324. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  325. IPV6_ENABLED = @IPV6_ENABLED@
  326. LCOV = @LCOV@
  327. LD = @LD@
  328. LDFLAGS = @LDFLAGS@
  329. LIBCURL_LIBS = @LIBCURL_LIBS@
  330. LIBMETALINK_CPPFLAGS = @LIBMETALINK_CPPFLAGS@
  331. LIBMETALINK_LDFLAGS = @LIBMETALINK_LDFLAGS@
  332. LIBMETALINK_LIBS = @LIBMETALINK_LIBS@
  333. LIBOBJS = @LIBOBJS@
  334. LIBS = @LIBS@
  335. LIBTOOL = @LIBTOOL@
  336. LIPO = @LIPO@
  337. LN_S = @LN_S@
  338. LTLIBOBJS = @LTLIBOBJS@
  339. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  340. MAINT = @MAINT@
  341. MAKEINFO = @MAKEINFO@
  342. MANIFEST_TOOL = @MANIFEST_TOOL@
  343. MANOPT = @MANOPT@
  344. MKDIR_P = @MKDIR_P@
  345. NM = @NM@
  346. NMEDIT = @NMEDIT@
  347. NROFF = @NROFF@
  348. NSS_LIBS = @NSS_LIBS@
  349. OBJDUMP = @OBJDUMP@
  350. OBJEXT = @OBJEXT@
  351. OTOOL = @OTOOL@
  352. OTOOL64 = @OTOOL64@
  353. PACKAGE = @PACKAGE@
  354. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  355. PACKAGE_NAME = @PACKAGE_NAME@
  356. PACKAGE_STRING = @PACKAGE_STRING@
  357. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  358. PACKAGE_URL = @PACKAGE_URL@
  359. PACKAGE_VERSION = @PACKAGE_VERSION@
  360. PATH_SEPARATOR = @PATH_SEPARATOR@
  361. PERL = @PERL@
  362. PKGADD_NAME = @PKGADD_NAME@
  363. PKGADD_PKG = @PKGADD_PKG@
  364. PKGADD_VENDOR = @PKGADD_VENDOR@
  365. PKGCONFIG = @PKGCONFIG@
  366. RANDOM_FILE = @RANDOM_FILE@
  367. RANLIB = @RANLIB@
  368. REQUIRE_LIB_DEPS = @REQUIRE_LIB_DEPS@
  369. SED = @SED@
  370. SET_MAKE = @SET_MAKE@
  371. SHELL = @SHELL@
  372. SSL_BACKENDS = @SSL_BACKENDS@
  373. SSL_ENABLED = @SSL_ENABLED@
  374. SSL_LIBS = @SSL_LIBS@
  375. STRIP = @STRIP@
  376. SUPPORT_FEATURES = @SUPPORT_FEATURES@
  377. SUPPORT_PROTOCOLS = @SUPPORT_PROTOCOLS@
  378. USE_ARES = @USE_ARES@
  379. USE_AXTLS = @USE_AXTLS@
  380. USE_CYASSL = @USE_CYASSL@
  381. USE_DARWINSSL = @USE_DARWINSSL@
  382. USE_GNUTLS = @USE_GNUTLS@
  383. USE_GNUTLS_NETTLE = @USE_GNUTLS_NETTLE@
  384. USE_LIBRTMP = @USE_LIBRTMP@
  385. USE_LIBSSH = @USE_LIBSSH@
  386. USE_LIBSSH2 = @USE_LIBSSH2@
  387. USE_MBEDTLS = @USE_MBEDTLS@
  388. USE_NGHTTP2 = @USE_NGHTTP2@
  389. USE_NSS = @USE_NSS@
  390. USE_OPENLDAP = @USE_OPENLDAP@
  391. USE_POLARSSL = @USE_POLARSSL@
  392. USE_SCHANNEL = @USE_SCHANNEL@
  393. USE_UNIX_SOCKETS = @USE_UNIX_SOCKETS@
  394. USE_WINDOWS_SSPI = @USE_WINDOWS_SSPI@
  395. VERSION = @VERSION@
  396. VERSIONNUM = @VERSIONNUM@
  397. ZLIB_LIBS = @ZLIB_LIBS@
  398. ZSH_FUNCTIONS_DIR = @ZSH_FUNCTIONS_DIR@
  399. abs_builddir = @abs_builddir@
  400. abs_srcdir = @abs_srcdir@
  401. abs_top_builddir = @abs_top_builddir@
  402. abs_top_srcdir = @abs_top_srcdir@
  403. ac_ct_AR = @ac_ct_AR@
  404. ac_ct_CC = @ac_ct_CC@
  405. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  406. am__include = @am__include@
  407. am__leading_dot = @am__leading_dot@
  408. am__quote = @am__quote@
  409. am__tar = @am__tar@
  410. am__untar = @am__untar@
  411. bindir = @bindir@
  412. build = @build@
  413. build_alias = @build_alias@
  414. build_cpu = @build_cpu@
  415. build_os = @build_os@
  416. build_vendor = @build_vendor@
  417. builddir = @builddir@
  418. datadir = @datadir@
  419. datarootdir = @datarootdir@
  420. docdir = @docdir@
  421. dvidir = @dvidir@
  422. exec_prefix = @exec_prefix@
  423. host = @host@
  424. host_alias = @host_alias@
  425. host_cpu = @host_cpu@
  426. host_os = @host_os@
  427. host_vendor = @host_vendor@
  428. htmldir = @htmldir@
  429. includedir = @includedir@
  430. infodir = @infodir@
  431. install_sh = @install_sh@
  432. libdir = @libdir@
  433. libexecdir = @libexecdir@
  434. libext = @libext@
  435. localedir = @localedir@
  436. localstatedir = @localstatedir@
  437. mandir = @mandir@
  438. mkdir_p = @mkdir_p@
  439. oldincludedir = @oldincludedir@
  440. pdfdir = @pdfdir@
  441. prefix = @prefix@
  442. program_transform_name = @program_transform_name@
  443. psdir = @psdir@
  444. runstatedir = @runstatedir@
  445. sbindir = @sbindir@
  446. sharedstatedir = @sharedstatedir@
  447. srcdir = @srcdir@
  448. subdirs = @subdirs@
  449. sysconfdir = @sysconfdir@
  450. target_alias = @target_alias@
  451. top_build_prefix = @top_build_prefix@
  452. top_builddir = @top_builddir@
  453. top_srcdir = @top_srcdir@
  454. AUTOMAKE_OPTIONS = foreign no-dependencies
  455. # EXTRA_DIST breaks with $(abs_builddir) so build it using this variable
  456. # but distribute it (using the relative file name) in the next variable
  457. man_MANS = $(abs_builddir)/curl.1
  458. noinst_man_MANS = curl.1 mk-ca-bundle.1
  459. dist_man_MANS = curl-config.1
  460. GENHTMLPAGES = curl.html curl-config.html mk-ca-bundle.html
  461. PDFPAGES = curl.pdf curl-config.pdf mk-ca-bundle.pdf
  462. MANDISTPAGES = curl.1.dist curl-config.1.dist
  463. HTMLPAGES = $(GENHTMLPAGES) index.html
  464. # Build targets in this file (.) before cmdline-opts to ensure that
  465. # the curl.1 rule below runs first
  466. SUBDIRS = . cmdline-opts
  467. DIST_SUBDIRS = $(SUBDIRS) examples libcurl
  468. CLEANFILES = $(GENHTMLPAGES) $(PDFPAGES) $(MANDISTPAGES) curl.1
  469. EXTRA_DIST = \
  470. $(noinst_man_MANS) \
  471. BINDINGS.md \
  472. BUGS \
  473. CHECKSRC.md \
  474. CIPHERS.md \
  475. CMakeLists.txt \
  476. CODE_OF_CONDUCT.md \
  477. CODE_STYLE.md \
  478. CONTRIBUTE.md \
  479. DEPRECATE.md \
  480. FAQ \
  481. FEATURES \
  482. GOVERNANCE.md \
  483. HELP-US.md \
  484. HISTORY.md \
  485. HTTP-COOKIES.md \
  486. HTTP2.md \
  487. INSTALL \
  488. INSTALL.cmake \
  489. INSTALL.md \
  490. INTERNALS.md \
  491. KNOWN_BUGS \
  492. LICENSE-MIXING.md \
  493. MAIL-ETIQUETTE \
  494. MANUAL \
  495. README.cmake \
  496. README.md \
  497. README.netware \
  498. README.win32 \
  499. RELEASE-PROCEDURE.md \
  500. RESOURCES \
  501. ROADMAP.md \
  502. SECURITY-PROCESS.md \
  503. SSL-PROBLEMS.md \
  504. SSLCERTS.md \
  505. THANKS \
  506. TODO \
  507. TheArtOfHttpScripting \
  508. VERSIONS
  509. MAN2HTML = roffit $< >$@
  510. SUFFIXES = .1 .html .pdf
  511. all: all-recursive
  512. .SUFFIXES:
  513. .SUFFIXES: .1 .html .pdf
  514. $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
  515. @for dep in $?; do \
  516. case '$(am__configure_deps)' in \
  517. *$$dep*) \
  518. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  519. && { if test -f $@; then exit 0; else break; fi; }; \
  520. exit 1;; \
  521. esac; \
  522. done; \
  523. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign docs/Makefile'; \
  524. $(am__cd) $(top_srcdir) && \
  525. $(AUTOMAKE) --foreign docs/Makefile
  526. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  527. @case '$?' in \
  528. *config.status*) \
  529. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  530. *) \
  531. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  532. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  533. esac;
  534. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  535. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  536. $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  537. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  538. $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  539. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  540. $(am__aclocal_m4_deps):
  541. mostlyclean-libtool:
  542. -rm -f *.lo
  543. clean-libtool:
  544. -rm -rf .libs _libs
  545. install-man1: $(dist_man_MANS) $(man_MANS)
  546. @$(NORMAL_INSTALL)
  547. @list1=''; \
  548. list2='$(dist_man_MANS) $(man_MANS)'; \
  549. test -n "$(man1dir)" \
  550. && test -n "`echo $$list1$$list2`" \
  551. || exit 0; \
  552. echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
  553. $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
  554. { for i in $$list1; do echo "$$i"; done; \
  555. if test -n "$$list2"; then \
  556. for i in $$list2; do echo "$$i"; done \
  557. | sed -n '/\.1[a-z]*$$/p'; \
  558. fi; \
  559. } | while read p; do \
  560. if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
  561. echo "$$d$$p"; echo "$$p"; \
  562. done | \
  563. sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  564. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
  565. sed 'N;N;s,\n, ,g' | { \
  566. list=; while read file base inst; do \
  567. if test "$$base" = "$$inst"; then list="$$list $$file"; else \
  568. echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
  569. $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
  570. fi; \
  571. done; \
  572. for i in $$list; do echo "$$i"; done | $(am__base_list) | \
  573. while read files; do \
  574. test -z "$$files" || { \
  575. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
  576. $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
  577. done; }
  578. uninstall-man1:
  579. @$(NORMAL_UNINSTALL)
  580. @list=''; test -n "$(man1dir)" || exit 0; \
  581. files=`{ for i in $$list; do echo "$$i"; done; \
  582. l2='$(dist_man_MANS) $(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
  583. sed -n '/\.1[a-z]*$$/p'; \
  584. } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  585. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
  586. dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
  587. # This directory's subdirectories are mostly independent; you can cd
  588. # into them and run 'make' without going through this Makefile.
  589. # To change the values of 'make' variables: instead of editing Makefiles,
  590. # (1) if the variable is set in 'config.status', edit 'config.status'
  591. # (which will cause the Makefiles to be regenerated when you run 'make');
  592. # (2) otherwise, pass the desired values on the 'make' command line.
  593. $(am__recursive_targets):
  594. @fail=; \
  595. if $(am__make_keepgoing); then \
  596. failcom='fail=yes'; \
  597. else \
  598. failcom='exit 1'; \
  599. fi; \
  600. dot_seen=no; \
  601. target=`echo $@ | sed s/-recursive//`; \
  602. case "$@" in \
  603. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  604. *) list='$(SUBDIRS)' ;; \
  605. esac; \
  606. for subdir in $$list; do \
  607. echo "Making $$target in $$subdir"; \
  608. if test "$$subdir" = "."; then \
  609. dot_seen=yes; \
  610. local_target="$$target-am"; \
  611. else \
  612. local_target="$$target"; \
  613. fi; \
  614. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  615. || eval $$failcom; \
  616. done; \
  617. if test "$$dot_seen" = "no"; then \
  618. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  619. fi; test -z "$$fail"
  620. ID: $(am__tagged_files)
  621. $(am__define_uniq_tagged_files); mkid -fID $$unique
  622. tags: tags-recursive
  623. TAGS: tags
  624. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  625. set x; \
  626. here=`pwd`; \
  627. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  628. include_option=--etags-include; \
  629. empty_fix=.; \
  630. else \
  631. include_option=--include; \
  632. empty_fix=; \
  633. fi; \
  634. list='$(SUBDIRS)'; for subdir in $$list; do \
  635. if test "$$subdir" = .; then :; else \
  636. test ! -f $$subdir/TAGS || \
  637. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  638. fi; \
  639. done; \
  640. $(am__define_uniq_tagged_files); \
  641. shift; \
  642. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  643. test -n "$$unique" || unique=$$empty_fix; \
  644. if test $$# -gt 0; then \
  645. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  646. "$$@" $$unique; \
  647. else \
  648. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  649. $$unique; \
  650. fi; \
  651. fi
  652. ctags: ctags-recursive
  653. CTAGS: ctags
  654. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  655. $(am__define_uniq_tagged_files); \
  656. test -z "$(CTAGS_ARGS)$$unique" \
  657. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  658. $$unique
  659. GTAGS:
  660. here=`$(am__cd) $(top_builddir) && pwd` \
  661. && $(am__cd) $(top_srcdir) \
  662. && gtags -i $(GTAGS_ARGS) "$$here"
  663. cscopelist: cscopelist-recursive
  664. cscopelist-am: $(am__tagged_files)
  665. list='$(am__tagged_files)'; \
  666. case "$(srcdir)" in \
  667. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  668. *) sdir=$(subdir)/$(srcdir) ;; \
  669. esac; \
  670. for i in $$list; do \
  671. if test -f "$$i"; then \
  672. echo "$(subdir)/$$i"; \
  673. else \
  674. echo "$$sdir/$$i"; \
  675. fi; \
  676. done >> $(top_builddir)/cscope.files
  677. distclean-tags:
  678. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  679. distdir: $(BUILT_SOURCES)
  680. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  681. distdir-am: $(DISTFILES)
  682. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  683. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  684. list='$(DISTFILES)'; \
  685. dist_files=`for file in $$list; do echo $$file; done | \
  686. sed -e "s|^$$srcdirstrip/||;t" \
  687. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  688. case $$dist_files in \
  689. */*) $(MKDIR_P) `echo "$$dist_files" | \
  690. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  691. sort -u` ;; \
  692. esac; \
  693. for file in $$dist_files; do \
  694. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  695. if test -d $$d/$$file; then \
  696. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  697. if test -d "$(distdir)/$$file"; then \
  698. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  699. fi; \
  700. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  701. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  702. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  703. fi; \
  704. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  705. else \
  706. test -f "$(distdir)/$$file" \
  707. || cp -p $$d/$$file "$(distdir)/$$file" \
  708. || exit 1; \
  709. fi; \
  710. done
  711. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  712. if test "$$subdir" = .; then :; else \
  713. $(am__make_dryrun) \
  714. || test -d "$(distdir)/$$subdir" \
  715. || $(MKDIR_P) "$(distdir)/$$subdir" \
  716. || exit 1; \
  717. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  718. $(am__relativize); \
  719. new_distdir=$$reldir; \
  720. dir1=$$subdir; dir2="$(top_distdir)"; \
  721. $(am__relativize); \
  722. new_top_distdir=$$reldir; \
  723. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  724. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  725. ($(am__cd) $$subdir && \
  726. $(MAKE) $(AM_MAKEFLAGS) \
  727. top_distdir="$$new_top_distdir" \
  728. distdir="$$new_distdir" \
  729. am__remove_distdir=: \
  730. am__skip_length_check=: \
  731. am__skip_mode_fix=: \
  732. distdir) \
  733. || exit 1; \
  734. fi; \
  735. done
  736. check-am: all-am
  737. check: check-recursive
  738. all-am: Makefile $(MANS)
  739. installdirs: installdirs-recursive
  740. installdirs-am:
  741. for dir in "$(DESTDIR)$(man1dir)"; do \
  742. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  743. done
  744. install: install-recursive
  745. install-exec: install-exec-recursive
  746. install-data: install-data-recursive
  747. uninstall: uninstall-recursive
  748. install-am: all-am
  749. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  750. installcheck: installcheck-recursive
  751. install-strip:
  752. if test -z '$(STRIP)'; then \
  753. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  754. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  755. install; \
  756. else \
  757. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  758. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  759. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  760. fi
  761. mostlyclean-generic:
  762. clean-generic:
  763. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  764. distclean-generic:
  765. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  766. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  767. maintainer-clean-generic:
  768. @echo "This command is intended for maintainers to use"
  769. @echo "it deletes files that may require special tools to rebuild."
  770. clean: clean-recursive
  771. clean-am: clean-generic clean-libtool mostlyclean-am
  772. distclean-am: clean-am distclean-generic distclean-tags
  773. dvi: dvi-recursive
  774. dvi-am:
  775. html-am:
  776. info: info-recursive
  777. info-am:
  778. install-data-am: install-man
  779. install-dvi: install-dvi-recursive
  780. install-dvi-am:
  781. install-exec-am:
  782. install-html: install-html-recursive
  783. install-html-am:
  784. install-info: install-info-recursive
  785. install-info-am:
  786. install-man: install-man1
  787. install-pdf: install-pdf-recursive
  788. install-pdf-am:
  789. install-ps: install-ps-recursive
  790. install-ps-am:
  791. installcheck-am:
  792. maintainer-clean: maintainer-clean-recursive
  793. -rm -f Makefile
  794. maintainer-clean-am: distclean-am maintainer-clean-generic
  795. mostlyclean: mostlyclean-recursive
  796. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  797. pdf-am:
  798. ps: ps-recursive
  799. ps-am:
  800. uninstall-am: uninstall-man
  801. uninstall-man: uninstall-man1
  802. .MAKE: $(am__recursive_targets) install-am install-strip
  803. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
  804. check-am clean clean-generic clean-libtool cscopelist-am ctags \
  805. ctags-am distclean distclean-generic distclean-libtool \
  806. distclean-tags distdir dvi dvi-am html html-am info info-am \
  807. install install-am install-data install-data-am install-dvi \
  808. install-dvi-am install-exec install-exec-am install-html \
  809. install-html-am install-info install-info-am install-man \
  810. install-man1 install-pdf install-pdf-am install-ps \
  811. install-ps-am install-strip installcheck installcheck-am \
  812. installdirs installdirs-am maintainer-clean \
  813. maintainer-clean-generic mostlyclean mostlyclean-generic \
  814. mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
  815. uninstall-am uninstall-man uninstall-man1
  816. .PRECIOUS: Makefile
  817. # $(abs_builddir) is to disable VPATH when searching for this file, which
  818. # would otherwise find the copy in $(srcdir) which breaks the $(HUGE)
  819. # rule in src/Makefile.am in out-of-tree builds that references the file in the
  820. # build directory.
  821. #
  822. # First, seed the used copy of curl.1 with the prebuilt copy (in an out-of-tree
  823. # build), then run make recursively to rebuild it only if its dependencies
  824. # have changed.
  825. $(abs_builddir)/curl.1:
  826. if test "$(top_builddir)x" != "$(top_srcdir)x" -a -e "$(srcdir)/curl.1"; then \
  827. cp -fp "$(srcdir)/curl.1" $@; fi
  828. cd cmdline-opts && $(MAKE)
  829. html: $(HTMLPAGES)
  830. cd libcurl && $(MAKE) html
  831. pdf: $(PDFPAGES)
  832. cd libcurl && $(MAKE) pdf
  833. .1.html:
  834. $(MAN2HTML)
  835. .1.pdf:
  836. @(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \
  837. groff -Tps -man $< >$$foo.ps; \
  838. ps2pdf $$foo.ps $@; \
  839. rm $$foo.ps; \
  840. echo "converted $< to $@")
  841. distclean:
  842. rm -f $(CLEANFILES)
  843. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  844. # Otherwise a system limit (for SysV at least) may be exceeded.
  845. .NOEXPORT: