Makefile.in 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852
  1. # Makefile.in generated by automake 1.16.5 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2021 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 - 2022, Daniel Stenberg, <[email protected]>, 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.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. # SPDX-License-Identifier: curl
  33. #
  34. ###########################################################################
  35. VPATH = @srcdir@
  36. am__is_gnu_make = { \
  37. if test -z '$(MAKELEVEL)'; then \
  38. false; \
  39. elif test -n '$(MAKE_HOST)'; then \
  40. true; \
  41. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  42. true; \
  43. else \
  44. false; \
  45. fi; \
  46. }
  47. am__make_running_with_option = \
  48. case $${target_option-} in \
  49. ?) ;; \
  50. *) echo "am__make_running_with_option: internal error: invalid" \
  51. "target option '$${target_option-}' specified" >&2; \
  52. exit 1;; \
  53. esac; \
  54. has_opt=no; \
  55. sane_makeflags=$$MAKEFLAGS; \
  56. if $(am__is_gnu_make); then \
  57. sane_makeflags=$$MFLAGS; \
  58. else \
  59. case $$MAKEFLAGS in \
  60. *\\[\ \ ]*) \
  61. bs=\\; \
  62. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  63. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  64. esac; \
  65. fi; \
  66. skip_next=no; \
  67. strip_trailopt () \
  68. { \
  69. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  70. }; \
  71. for flg in $$sane_makeflags; do \
  72. test $$skip_next = yes && { skip_next=no; continue; }; \
  73. case $$flg in \
  74. *=*|--*) continue;; \
  75. -*I) strip_trailopt 'I'; skip_next=yes;; \
  76. -*I?*) strip_trailopt 'I';; \
  77. -*O) strip_trailopt 'O'; skip_next=yes;; \
  78. -*O?*) strip_trailopt 'O';; \
  79. -*l) strip_trailopt 'l'; skip_next=yes;; \
  80. -*l?*) strip_trailopt 'l';; \
  81. -[dEDm]) skip_next=yes;; \
  82. -[JT]) skip_next=yes;; \
  83. esac; \
  84. case $$flg in \
  85. *$$target_option*) has_opt=yes; break;; \
  86. esac; \
  87. done; \
  88. test $$has_opt = yes
  89. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  90. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  91. pkgdatadir = $(datadir)/@PACKAGE@
  92. pkgincludedir = $(includedir)/@PACKAGE@
  93. pkglibdir = $(libdir)/@PACKAGE@
  94. pkglibexecdir = $(libexecdir)/@PACKAGE@
  95. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  96. install_sh_DATA = $(install_sh) -c -m 644
  97. install_sh_PROGRAM = $(install_sh) -c
  98. install_sh_SCRIPT = $(install_sh) -c
  99. INSTALL_HEADER = $(INSTALL_DATA)
  100. transform = $(program_transform_name)
  101. NORMAL_INSTALL = :
  102. PRE_INSTALL = :
  103. POST_INSTALL = :
  104. NORMAL_UNINSTALL = :
  105. PRE_UNINSTALL = :
  106. POST_UNINSTALL = :
  107. build_triplet = @build@
  108. host_triplet = @host@
  109. subdir = tests
  110. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  111. am__aclocal_m4_deps = $(top_srcdir)/m4/curl-amissl.m4 \
  112. $(top_srcdir)/m4/curl-bearssl.m4 \
  113. $(top_srcdir)/m4/curl-compilers.m4 \
  114. $(top_srcdir)/m4/curl-confopts.m4 \
  115. $(top_srcdir)/m4/curl-functions.m4 \
  116. $(top_srcdir)/m4/curl-gnutls.m4 \
  117. $(top_srcdir)/m4/curl-mbedtls.m4 $(top_srcdir)/m4/curl-nss.m4 \
  118. $(top_srcdir)/m4/curl-openssl.m4 \
  119. $(top_srcdir)/m4/curl-override.m4 \
  120. $(top_srcdir)/m4/curl-reentrant.m4 \
  121. $(top_srcdir)/m4/curl-rustls.m4 \
  122. $(top_srcdir)/m4/curl-schannel.m4 \
  123. $(top_srcdir)/m4/curl-sectransp.m4 \
  124. $(top_srcdir)/m4/curl-sysconfig.m4 \
  125. $(top_srcdir)/m4/curl-wolfssl.m4 $(top_srcdir)/m4/libtool.m4 \
  126. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  127. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  128. $(top_srcdir)/m4/xc-am-iface.m4 \
  129. $(top_srcdir)/m4/xc-cc-check.m4 \
  130. $(top_srcdir)/m4/xc-lt-iface.m4 \
  131. $(top_srcdir)/m4/xc-translit.m4 \
  132. $(top_srcdir)/m4/xc-val-flgs.m4 \
  133. $(top_srcdir)/m4/zz40-xc-ovr.m4 \
  134. $(top_srcdir)/m4/zz50-xc-ovr.m4 \
  135. $(top_srcdir)/m4/zz60-xc-ovr.m4 $(top_srcdir)/acinclude.m4 \
  136. $(top_srcdir)/configure.ac
  137. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  138. $(ACLOCAL_M4)
  139. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  140. mkinstalldirs = $(install_sh) -d
  141. CONFIG_HEADER = $(top_builddir)/lib/curl_config.h
  142. CONFIG_CLEAN_FILES =
  143. CONFIG_CLEAN_VPATH_FILES =
  144. AM_V_P = $(am__v_P_@AM_V@)
  145. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  146. am__v_P_0 = false
  147. am__v_P_1 = :
  148. AM_V_GEN = $(am__v_GEN_@AM_V@)
  149. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  150. am__v_GEN_0 = @echo " GEN " $@;
  151. am__v_GEN_1 =
  152. AM_V_at = $(am__v_at_@AM_V@)
  153. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  154. am__v_at_0 = @
  155. am__v_at_1 =
  156. SOURCES =
  157. DIST_SOURCES =
  158. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  159. ctags-recursive dvi-recursive html-recursive info-recursive \
  160. install-data-recursive install-dvi-recursive \
  161. install-exec-recursive install-html-recursive \
  162. install-info-recursive install-pdf-recursive \
  163. install-ps-recursive install-recursive installcheck-recursive \
  164. installdirs-recursive pdf-recursive ps-recursive \
  165. tags-recursive uninstall-recursive
  166. am__can_run_installinfo = \
  167. case $$AM_UPDATE_INFO_DIR in \
  168. n|no|NO) false;; \
  169. *) (install-info --version) >/dev/null 2>&1;; \
  170. esac
  171. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  172. distclean-recursive maintainer-clean-recursive
  173. am__recursive_targets = \
  174. $(RECURSIVE_TARGETS) \
  175. $(RECURSIVE_CLEAN_TARGETS) \
  176. $(am__extra_recursive_targets)
  177. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  178. distdir distdir-am
  179. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  180. # Read a list of newline-separated strings from the standard input,
  181. # and print each of them once, without duplicates. Input order is
  182. # *not* preserved.
  183. am__uniquify_input = $(AWK) '\
  184. BEGIN { nonempty = 0; } \
  185. { items[$$0] = 1; nonempty = 1; } \
  186. END { if (nonempty) { for (i in items) print i; }; } \
  187. '
  188. # Make sure the list of sources is unique. This is necessary because,
  189. # e.g., the same source file might be shared among _SOURCES variables
  190. # for different programs/libraries.
  191. am__define_uniq_tagged_files = \
  192. list='$(am__tagged_files)'; \
  193. unique=`for i in $$list; do \
  194. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  195. done | $(am__uniquify_input)`
  196. am__DIST_COMMON = $(srcdir)/Makefile.in README.md
  197. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  198. am__relativize = \
  199. dir0=`pwd`; \
  200. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  201. sed_rest='s,^[^/]*/*,,'; \
  202. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  203. sed_butlast='s,/*[^/]*$$,,'; \
  204. while test -n "$$dir1"; do \
  205. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  206. if test "$$first" != "."; then \
  207. if test "$$first" = ".."; then \
  208. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  209. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  210. else \
  211. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  212. if test "$$first2" = "$$first"; then \
  213. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  214. else \
  215. dir2="../$$dir2"; \
  216. fi; \
  217. dir0="$$dir0"/"$$first"; \
  218. fi; \
  219. fi; \
  220. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  221. done; \
  222. reldir="$$dir2"
  223. ACLOCAL = @ACLOCAL@
  224. AMTAR = @AMTAR@
  225. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  226. AR = @AR@
  227. AR_FLAGS = @AR_FLAGS@
  228. AS = @AS@
  229. AUTOCONF = @AUTOCONF@
  230. AUTOHEADER = @AUTOHEADER@
  231. AUTOMAKE = @AUTOMAKE@
  232. AWK = @AWK@
  233. BLANK_AT_MAKETIME = @BLANK_AT_MAKETIME@
  234. CC = @CC@
  235. CCDEPMODE = @CCDEPMODE@
  236. CFLAGS = @CFLAGS@
  237. CFLAG_CURL_SYMBOL_HIDING = @CFLAG_CURL_SYMBOL_HIDING@
  238. CONFIGURE_OPTIONS = @CONFIGURE_OPTIONS@
  239. CPP = @CPP@
  240. CPPFLAGS = @CPPFLAGS@
  241. CPPFLAG_CURL_STATICLIB = @CPPFLAG_CURL_STATICLIB@
  242. CSCOPE = @CSCOPE@
  243. CTAGS = @CTAGS@
  244. CURLVERSION = @CURLVERSION@
  245. CURL_CA_BUNDLE = @CURL_CA_BUNDLE@
  246. CURL_CFLAG_EXTRAS = @CURL_CFLAG_EXTRAS@
  247. CURL_DISABLE_DICT = @CURL_DISABLE_DICT@
  248. CURL_DISABLE_FILE = @CURL_DISABLE_FILE@
  249. CURL_DISABLE_FTP = @CURL_DISABLE_FTP@
  250. CURL_DISABLE_GOPHER = @CURL_DISABLE_GOPHER@
  251. CURL_DISABLE_HTTP = @CURL_DISABLE_HTTP@
  252. CURL_DISABLE_IMAP = @CURL_DISABLE_IMAP@
  253. CURL_DISABLE_LDAP = @CURL_DISABLE_LDAP@
  254. CURL_DISABLE_LDAPS = @CURL_DISABLE_LDAPS@
  255. CURL_DISABLE_MQTT = @CURL_DISABLE_MQTT@
  256. CURL_DISABLE_POP3 = @CURL_DISABLE_POP3@
  257. CURL_DISABLE_PROXY = @CURL_DISABLE_PROXY@
  258. CURL_DISABLE_RTSP = @CURL_DISABLE_RTSP@
  259. CURL_DISABLE_SMB = @CURL_DISABLE_SMB@
  260. CURL_DISABLE_SMTP = @CURL_DISABLE_SMTP@
  261. CURL_DISABLE_TELNET = @CURL_DISABLE_TELNET@
  262. CURL_DISABLE_TFTP = @CURL_DISABLE_TFTP@
  263. CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
  264. CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
  265. CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
  266. CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
  267. CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
  268. CYGPATH_W = @CYGPATH_W@
  269. DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
  270. DEFS = @DEFS@
  271. DEPDIR = @DEPDIR@
  272. DLLTOOL = @DLLTOOL@
  273. DSYMUTIL = @DSYMUTIL@
  274. DUMPBIN = @DUMPBIN@
  275. ECHO_C = @ECHO_C@
  276. ECHO_N = @ECHO_N@
  277. ECHO_T = @ECHO_T@
  278. EGREP = @EGREP@
  279. ENABLE_SHARED = @ENABLE_SHARED@
  280. ENABLE_STATIC = @ENABLE_STATIC@
  281. ETAGS = @ETAGS@
  282. EXEEXT = @EXEEXT@
  283. FGREP = @FGREP@
  284. FILECMD = @FILECMD@
  285. FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
  286. GCOV = @GCOV@
  287. GREP = @GREP@
  288. HAVE_BROTLI = @HAVE_BROTLI@
  289. HAVE_GNUTLS_SRP = @HAVE_GNUTLS_SRP@
  290. HAVE_LDAP_SSL = @HAVE_LDAP_SSL@
  291. HAVE_LIBZ = @HAVE_LIBZ@
  292. HAVE_OPENSSL_SRP = @HAVE_OPENSSL_SRP@
  293. HAVE_PROTO_BSDSOCKET_H = @HAVE_PROTO_BSDSOCKET_H@
  294. HAVE_ZSTD = @HAVE_ZSTD@
  295. IDN_ENABLED = @IDN_ENABLED@
  296. INSTALL = @INSTALL@
  297. INSTALL_DATA = @INSTALL_DATA@
  298. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  299. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  300. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  301. IPV6_ENABLED = @IPV6_ENABLED@
  302. LCOV = @LCOV@
  303. LD = @LD@
  304. LDFLAGS = @LDFLAGS@
  305. LIBCURL_LIBS = @LIBCURL_LIBS@
  306. LIBCURL_NO_SHARED = @LIBCURL_NO_SHARED@
  307. LIBOBJS = @LIBOBJS@
  308. LIBS = @LIBS@
  309. LIBTOOL = @LIBTOOL@
  310. LIPO = @LIPO@
  311. LN_S = @LN_S@
  312. LTLIBOBJS = @LTLIBOBJS@
  313. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  314. MAINT = @MAINT@
  315. MAKEINFO = @MAKEINFO@
  316. MANIFEST_TOOL = @MANIFEST_TOOL@
  317. MANOPT = @MANOPT@
  318. MKDIR_P = @MKDIR_P@
  319. NM = @NM@
  320. NMEDIT = @NMEDIT@
  321. NROFF = @NROFF@
  322. NSS_LIBS = @NSS_LIBS@
  323. OBJDUMP = @OBJDUMP@
  324. OBJEXT = @OBJEXT@
  325. OTOOL = @OTOOL@
  326. OTOOL64 = @OTOOL64@
  327. PACKAGE = @PACKAGE@
  328. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  329. PACKAGE_NAME = @PACKAGE_NAME@
  330. PACKAGE_STRING = @PACKAGE_STRING@
  331. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  332. PACKAGE_URL = @PACKAGE_URL@
  333. PACKAGE_VERSION = @PACKAGE_VERSION@
  334. PATH_SEPARATOR = @PATH_SEPARATOR@
  335. PERL = @PERL@
  336. PKGADD_NAME = @PKGADD_NAME@
  337. PKGADD_PKG = @PKGADD_PKG@
  338. PKGADD_VENDOR = @PKGADD_VENDOR@
  339. PKGCONFIG = @PKGCONFIG@
  340. RANDOM_FILE = @RANDOM_FILE@
  341. RANLIB = @RANLIB@
  342. REQUIRE_LIB_DEPS = @REQUIRE_LIB_DEPS@
  343. SED = @SED@
  344. SET_MAKE = @SET_MAKE@
  345. SHELL = @SHELL@
  346. SSL_BACKENDS = @SSL_BACKENDS@
  347. SSL_ENABLED = @SSL_ENABLED@
  348. SSL_LIBS = @SSL_LIBS@
  349. STRIP = @STRIP@
  350. SUPPORT_FEATURES = @SUPPORT_FEATURES@
  351. SUPPORT_PROTOCOLS = @SUPPORT_PROTOCOLS@
  352. USE_ARES = @USE_ARES@
  353. USE_BEARSSL = @USE_BEARSSL@
  354. USE_GNUTLS = @USE_GNUTLS@
  355. USE_HYPER = @USE_HYPER@
  356. USE_LIBRTMP = @USE_LIBRTMP@
  357. USE_LIBSSH = @USE_LIBSSH@
  358. USE_LIBSSH2 = @USE_LIBSSH2@
  359. USE_MBEDTLS = @USE_MBEDTLS@
  360. USE_MSH3 = @USE_MSH3@
  361. USE_NGHTTP2 = @USE_NGHTTP2@
  362. USE_NGHTTP3 = @USE_NGHTTP3@
  363. USE_NGTCP2 = @USE_NGTCP2@
  364. USE_NGTCP2_CRYPTO_GNUTLS = @USE_NGTCP2_CRYPTO_GNUTLS@
  365. USE_NGTCP2_CRYPTO_OPENSSL = @USE_NGTCP2_CRYPTO_OPENSSL@
  366. USE_NGTCP2_CRYPTO_WOLFSSL = @USE_NGTCP2_CRYPTO_WOLFSSL@
  367. USE_NSS = @USE_NSS@
  368. USE_OPENLDAP = @USE_OPENLDAP@
  369. USE_QUICHE = @USE_QUICHE@
  370. USE_RUSTLS = @USE_RUSTLS@
  371. USE_SCHANNEL = @USE_SCHANNEL@
  372. USE_SECTRANSP = @USE_SECTRANSP@
  373. USE_UNIX_SOCKETS = @USE_UNIX_SOCKETS@
  374. USE_WIN32_CRYPTO = @USE_WIN32_CRYPTO@
  375. USE_WIN32_LARGE_FILES = @USE_WIN32_LARGE_FILES@
  376. USE_WIN32_SMALL_FILES = @USE_WIN32_SMALL_FILES@
  377. USE_WINDOWS_SSPI = @USE_WINDOWS_SSPI@
  378. USE_WOLFSSH = @USE_WOLFSSH@
  379. USE_WOLFSSL = @USE_WOLFSSL@
  380. VERSION = @VERSION@
  381. VERSIONNUM = @VERSIONNUM@
  382. ZLIB_LIBS = @ZLIB_LIBS@
  383. ZSH_FUNCTIONS_DIR = @ZSH_FUNCTIONS_DIR@
  384. abs_builddir = @abs_builddir@
  385. abs_srcdir = @abs_srcdir@
  386. abs_top_builddir = @abs_top_builddir@
  387. abs_top_srcdir = @abs_top_srcdir@
  388. ac_ct_AR = @ac_ct_AR@
  389. ac_ct_CC = @ac_ct_CC@
  390. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  391. am__include = @am__include@
  392. am__leading_dot = @am__leading_dot@
  393. am__quote = @am__quote@
  394. am__tar = @am__tar@
  395. am__untar = @am__untar@
  396. bindir = @bindir@
  397. build = @build@
  398. build_alias = @build_alias@
  399. build_cpu = @build_cpu@
  400. build_os = @build_os@
  401. build_vendor = @build_vendor@
  402. builddir = @builddir@
  403. datadir = @datadir@
  404. datarootdir = @datarootdir@
  405. docdir = @docdir@
  406. dvidir = @dvidir@
  407. exec_prefix = @exec_prefix@
  408. host = @host@
  409. host_alias = @host_alias@
  410. host_cpu = @host_cpu@
  411. host_os = @host_os@
  412. host_vendor = @host_vendor@
  413. htmldir = @htmldir@
  414. includedir = @includedir@
  415. infodir = @infodir@
  416. install_sh = @install_sh@
  417. libdir = @libdir@
  418. libexecdir = @libexecdir@
  419. libext = @libext@
  420. localedir = @localedir@
  421. localstatedir = @localstatedir@
  422. mandir = @mandir@
  423. mkdir_p = @mkdir_p@
  424. oldincludedir = @oldincludedir@
  425. pdfdir = @pdfdir@
  426. prefix = @prefix@
  427. program_transform_name = @program_transform_name@
  428. psdir = @psdir@
  429. runstatedir = @runstatedir@
  430. sbindir = @sbindir@
  431. sharedstatedir = @sharedstatedir@
  432. srcdir = @srcdir@
  433. sysconfdir = @sysconfdir@
  434. target_alias = @target_alias@
  435. top_build_prefix = @top_build_prefix@
  436. top_builddir = @top_builddir@
  437. top_srcdir = @top_srcdir@
  438. HTMLPAGES = testcurl.html runtests.html
  439. PDFPAGES = testcurl.pdf runtests.pdf
  440. MANDISTPAGES = runtests.1.dist testcurl.1.dist
  441. EXTRA_DIST = ftpserver.pl httpserver.pl secureserver.pl runtests.pl \
  442. getpart.pm FILEFORMAT.md README.md stunnel.pem memanalyze.pl testcurl.pl \
  443. valgrind.pm ftp.pm sshserver.pl sshhelp.pm pathhelp.pm testcurl.1 runtests.1 \
  444. serverhelp.pm tftpserver.pl rtspserver.pl directories.pm symbol-scan.pl \
  445. CMakeLists.txt mem-include-scan.pl valgrind.supp extern-scan.pl \
  446. manpage-scan.pl nroff-scan.pl http2-server.pl dictserver.py \
  447. negtelnetserver.py smbserver.py util.py \
  448. disable-scan.pl manpage-syntax.pl error-codes.pl badsymbols.pl \
  449. azure.pm appveyor.pm version-scan.pl options-scan.pl
  450. DISTCLEANFILES = configurehelp.pm
  451. @BUILD_UNITTESTS_FALSE@BUILD_UNIT =
  452. # we have two variables here to make sure DIST_SUBDIRS won't get 'unit'
  453. # added twice as then targets such as 'distclean' misbehave and try to
  454. # do things twice in that subdir at times (and thus fails).
  455. @BUILD_UNITTESTS_TRUE@BUILD_UNIT = unit
  456. @BUILD_UNITTESTS_FALSE@DIST_UNIT = unit
  457. @BUILD_UNITTESTS_TRUE@DIST_UNIT =
  458. SUBDIRS = certs data server libtest $(BUILD_UNIT)
  459. DIST_SUBDIRS = $(SUBDIRS) $(DIST_UNIT)
  460. PERLFLAGS = -I$(srcdir)
  461. CLEANFILES = .http.pid .https.pid .ftp.pid .ftps.pid $(MANDISTPAGES)
  462. MAN2HTML = roffit $< >$@
  463. @CROSSCOMPILING_FALSE@TEST = srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl
  464. @CROSSCOMPILING_TRUE@TEST = @echo "NOTICE: we can't run the tests when cross-compiling!"
  465. @CROSSCOMPILING_FALSE@TEST_Q = -a -s
  466. @CROSSCOMPILING_FALSE@TEST_AM = -a -am
  467. @CROSSCOMPILING_FALSE@TEST_F = -a -p -r
  468. @CROSSCOMPILING_FALSE@TEST_T = -a -t
  469. @CROSSCOMPILING_FALSE@TEST_E = -a -e
  470. # !flaky means that it'll skip all tests using the flaky keyword
  471. @CROSSCOMPILING_FALSE@TEST_NF = -a -p !flaky
  472. # special CI target derived from nonflaky with CI-specific flags
  473. @CROSSCOMPILING_FALSE@TEST_CI = $(TEST_NF) -r -rm
  474. all: all-recursive
  475. .SUFFIXES:
  476. .SUFFIXES: .1 .html .pdf
  477. $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
  478. @for dep in $?; do \
  479. case '$(am__configure_deps)' in \
  480. *$$dep*) \
  481. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  482. && { if test -f $@; then exit 0; else break; fi; }; \
  483. exit 1;; \
  484. esac; \
  485. done; \
  486. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/Makefile'; \
  487. $(am__cd) $(top_srcdir) && \
  488. $(AUTOMAKE) --gnu tests/Makefile
  489. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  490. @case '$?' in \
  491. *config.status*) \
  492. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  493. *) \
  494. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  495. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  496. esac;
  497. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  498. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  499. $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  500. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  501. $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  502. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  503. $(am__aclocal_m4_deps):
  504. mostlyclean-libtool:
  505. -rm -f *.lo
  506. clean-libtool:
  507. -rm -rf .libs _libs
  508. # This directory's subdirectories are mostly independent; you can cd
  509. # into them and run 'make' without going through this Makefile.
  510. # To change the values of 'make' variables: instead of editing Makefiles,
  511. # (1) if the variable is set in 'config.status', edit 'config.status'
  512. # (which will cause the Makefiles to be regenerated when you run 'make');
  513. # (2) otherwise, pass the desired values on the 'make' command line.
  514. $(am__recursive_targets):
  515. @fail=; \
  516. if $(am__make_keepgoing); then \
  517. failcom='fail=yes'; \
  518. else \
  519. failcom='exit 1'; \
  520. fi; \
  521. dot_seen=no; \
  522. target=`echo $@ | sed s/-recursive//`; \
  523. case "$@" in \
  524. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  525. *) list='$(SUBDIRS)' ;; \
  526. esac; \
  527. for subdir in $$list; do \
  528. echo "Making $$target in $$subdir"; \
  529. if test "$$subdir" = "."; then \
  530. dot_seen=yes; \
  531. local_target="$$target-am"; \
  532. else \
  533. local_target="$$target"; \
  534. fi; \
  535. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  536. || eval $$failcom; \
  537. done; \
  538. if test "$$dot_seen" = "no"; then \
  539. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  540. fi; test -z "$$fail"
  541. ID: $(am__tagged_files)
  542. $(am__define_uniq_tagged_files); mkid -fID $$unique
  543. tags: tags-recursive
  544. TAGS: tags
  545. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  546. set x; \
  547. here=`pwd`; \
  548. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  549. include_option=--etags-include; \
  550. empty_fix=.; \
  551. else \
  552. include_option=--include; \
  553. empty_fix=; \
  554. fi; \
  555. list='$(SUBDIRS)'; for subdir in $$list; do \
  556. if test "$$subdir" = .; then :; else \
  557. test ! -f $$subdir/TAGS || \
  558. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  559. fi; \
  560. done; \
  561. $(am__define_uniq_tagged_files); \
  562. shift; \
  563. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  564. test -n "$$unique" || unique=$$empty_fix; \
  565. if test $$# -gt 0; then \
  566. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  567. "$$@" $$unique; \
  568. else \
  569. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  570. $$unique; \
  571. fi; \
  572. fi
  573. ctags: ctags-recursive
  574. CTAGS: ctags
  575. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  576. $(am__define_uniq_tagged_files); \
  577. test -z "$(CTAGS_ARGS)$$unique" \
  578. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  579. $$unique
  580. GTAGS:
  581. here=`$(am__cd) $(top_builddir) && pwd` \
  582. && $(am__cd) $(top_srcdir) \
  583. && gtags -i $(GTAGS_ARGS) "$$here"
  584. cscopelist: cscopelist-recursive
  585. cscopelist-am: $(am__tagged_files)
  586. list='$(am__tagged_files)'; \
  587. case "$(srcdir)" in \
  588. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  589. *) sdir=$(subdir)/$(srcdir) ;; \
  590. esac; \
  591. for i in $$list; do \
  592. if test -f "$$i"; then \
  593. echo "$(subdir)/$$i"; \
  594. else \
  595. echo "$$sdir/$$i"; \
  596. fi; \
  597. done >> $(top_builddir)/cscope.files
  598. distclean-tags:
  599. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  600. distdir: $(BUILT_SOURCES)
  601. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  602. distdir-am: $(DISTFILES)
  603. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  604. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  605. list='$(DISTFILES)'; \
  606. dist_files=`for file in $$list; do echo $$file; done | \
  607. sed -e "s|^$$srcdirstrip/||;t" \
  608. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  609. case $$dist_files in \
  610. */*) $(MKDIR_P) `echo "$$dist_files" | \
  611. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  612. sort -u` ;; \
  613. esac; \
  614. for file in $$dist_files; do \
  615. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  616. if test -d $$d/$$file; then \
  617. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  618. if test -d "$(distdir)/$$file"; then \
  619. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  620. fi; \
  621. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  622. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  623. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  624. fi; \
  625. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  626. else \
  627. test -f "$(distdir)/$$file" \
  628. || cp -p $$d/$$file "$(distdir)/$$file" \
  629. || exit 1; \
  630. fi; \
  631. done
  632. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  633. if test "$$subdir" = .; then :; else \
  634. $(am__make_dryrun) \
  635. || test -d "$(distdir)/$$subdir" \
  636. || $(MKDIR_P) "$(distdir)/$$subdir" \
  637. || exit 1; \
  638. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  639. $(am__relativize); \
  640. new_distdir=$$reldir; \
  641. dir1=$$subdir; dir2="$(top_distdir)"; \
  642. $(am__relativize); \
  643. new_top_distdir=$$reldir; \
  644. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  645. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  646. ($(am__cd) $$subdir && \
  647. $(MAKE) $(AM_MAKEFLAGS) \
  648. top_distdir="$$new_top_distdir" \
  649. distdir="$$new_distdir" \
  650. am__remove_distdir=: \
  651. am__skip_length_check=: \
  652. am__skip_mode_fix=: \
  653. distdir) \
  654. || exit 1; \
  655. fi; \
  656. done
  657. check-am: all-am
  658. check: check-recursive
  659. @CURLDEBUG_FALSE@all-local:
  660. all-am: Makefile all-local
  661. installdirs: installdirs-recursive
  662. installdirs-am:
  663. install: install-recursive
  664. install-exec: install-exec-recursive
  665. install-data: install-data-recursive
  666. uninstall: uninstall-recursive
  667. install-am: all-am
  668. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  669. installcheck: installcheck-recursive
  670. install-strip:
  671. if test -z '$(STRIP)'; then \
  672. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  673. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  674. install; \
  675. else \
  676. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  677. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  678. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  679. fi
  680. mostlyclean-generic:
  681. clean-generic:
  682. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  683. distclean-generic:
  684. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  685. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  686. -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
  687. maintainer-clean-generic:
  688. @echo "This command is intended for maintainers to use"
  689. @echo "it deletes files that may require special tools to rebuild."
  690. clean: clean-recursive
  691. clean-am: clean-generic clean-libtool mostlyclean-am
  692. distclean: distclean-recursive
  693. -rm -f Makefile
  694. distclean-am: clean-am distclean-generic distclean-tags
  695. dvi: dvi-recursive
  696. dvi-am:
  697. html: html-recursive
  698. html-am:
  699. info: info-recursive
  700. info-am:
  701. install-data-am:
  702. install-dvi: install-dvi-recursive
  703. install-dvi-am:
  704. install-exec-am:
  705. install-html: install-html-recursive
  706. install-html-am:
  707. install-info: install-info-recursive
  708. install-info-am:
  709. install-man:
  710. install-pdf: install-pdf-recursive
  711. install-pdf-am:
  712. install-ps: install-ps-recursive
  713. install-ps-am:
  714. installcheck-am:
  715. maintainer-clean: maintainer-clean-recursive
  716. -rm -f Makefile
  717. maintainer-clean-am: distclean-am maintainer-clean-generic
  718. mostlyclean: mostlyclean-recursive
  719. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  720. pdf: pdf-recursive
  721. pdf-am:
  722. ps: ps-recursive
  723. ps-am:
  724. uninstall-am:
  725. .MAKE: $(am__recursive_targets) install-am install-strip
  726. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \
  727. check check-am clean clean-generic clean-libtool cscopelist-am \
  728. ctags ctags-am distclean distclean-generic distclean-libtool \
  729. distclean-tags distdir dvi dvi-am html html-am info info-am \
  730. install install-am install-data install-data-am install-dvi \
  731. install-dvi-am install-exec install-exec-am install-html \
  732. install-html-am install-info install-info-am install-man \
  733. install-pdf install-pdf-am install-ps install-ps-am \
  734. install-strip installcheck installcheck-am installdirs \
  735. installdirs-am maintainer-clean maintainer-clean-generic \
  736. mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
  737. ps ps-am tags tags-am uninstall uninstall-am
  738. .PRECIOUS: Makefile
  739. curl:
  740. @cd $(top_builddir) && $(MAKE)
  741. # make sure that PERL is pointing to an executable
  742. perlcheck:
  743. @if ! test -x "$(PERL)"; then echo "No perl!"; exit 2; fi
  744. test: perlcheck all
  745. $(TEST) $(TFLAGS)
  746. quiet-test: perlcheck all
  747. $(TEST) $(TEST_Q) $(TFLAGS)
  748. am-test: perlcheck all
  749. $(TEST) $(TEST_AM) $(TFLAGS)
  750. ci-test: perlcheck all
  751. $(TEST) $(TEST_CI) $(TFLAGS)
  752. full-test: perlcheck all
  753. $(TEST) $(TEST_F) $(TFLAGS)
  754. nonflaky-test: perlcheck all
  755. $(TEST) $(TEST_NF) $(TFLAGS)
  756. torture-test: perlcheck all
  757. $(TEST) $(TEST_T) $(TFLAGS)
  758. event-test: perlcheck all
  759. $(TEST) $(TEST_E) $(TFLAGS)
  760. .1.html:
  761. $(MAN2HTML)
  762. .1.pdf:
  763. @(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \
  764. groff -Tps -man $< >$$foo.ps; \
  765. ps2pdf $$foo.ps $@; \
  766. rm $$foo.ps; \
  767. echo "converted $< to $@")
  768. checksrc:
  769. cd libtest && $(MAKE) checksrc
  770. cd unit && $(MAKE) checksrc
  771. cd server && $(MAKE) checksrc
  772. # for debug builds, we scan the sources on all regular make invokes
  773. @CURLDEBUG_TRUE@all-local: checksrc
  774. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  775. # Otherwise a system limit (for SysV at least) may be exceeded.
  776. .NOEXPORT: