Makefile.in 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939
  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 = docs
  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. depcomp =
  157. am__maybe_remake_depfiles =
  158. SOURCES =
  159. DIST_SOURCES =
  160. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  161. ctags-recursive dvi-recursive html-recursive info-recursive \
  162. install-data-recursive install-dvi-recursive \
  163. install-exec-recursive install-html-recursive \
  164. install-info-recursive install-pdf-recursive \
  165. install-ps-recursive install-recursive installcheck-recursive \
  166. installdirs-recursive pdf-recursive ps-recursive \
  167. tags-recursive uninstall-recursive
  168. am__can_run_installinfo = \
  169. case $$AM_UPDATE_INFO_DIR in \
  170. n|no|NO) false;; \
  171. *) (install-info --version) >/dev/null 2>&1;; \
  172. esac
  173. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  174. am__vpath_adj = case $$p in \
  175. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  176. *) f=$$p;; \
  177. esac;
  178. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  179. am__install_max = 40
  180. am__nobase_strip_setup = \
  181. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  182. am__nobase_strip = \
  183. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  184. am__nobase_list = $(am__nobase_strip_setup); \
  185. for p in $$list; do echo "$$p $$p"; done | \
  186. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  187. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  188. if (++n[$$2] == $(am__install_max)) \
  189. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  190. END { for (dir in files) print dir, files[dir] }'
  191. am__base_list = \
  192. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  193. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  194. am__uninstall_files_from_dir = { \
  195. test -z "$$files" \
  196. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  197. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  198. $(am__cd) "$$dir" && rm -f $$files; }; \
  199. }
  200. man1dir = $(mandir)/man1
  201. am__installdirs = "$(DESTDIR)$(man1dir)"
  202. MANS = $(dist_man_MANS) $(man_MANS)
  203. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  204. distclean-recursive maintainer-clean-recursive
  205. am__recursive_targets = \
  206. $(RECURSIVE_TARGETS) \
  207. $(RECURSIVE_CLEAN_TARGETS) \
  208. $(am__extra_recursive_targets)
  209. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  210. distdir distdir-am
  211. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  212. # Read a list of newline-separated strings from the standard input,
  213. # and print each of them once, without duplicates. Input order is
  214. # *not* preserved.
  215. am__uniquify_input = $(AWK) '\
  216. BEGIN { nonempty = 0; } \
  217. { items[$$0] = 1; nonempty = 1; } \
  218. END { if (nonempty) { for (i in items) print i; }; } \
  219. '
  220. # Make sure the list of sources is unique. This is necessary because,
  221. # e.g., the same source file might be shared among _SOURCES variables
  222. # for different programs/libraries.
  223. am__define_uniq_tagged_files = \
  224. list='$(am__tagged_files)'; \
  225. unique=`for i in $$list; do \
  226. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  227. done | $(am__uniquify_input)`
  228. am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in INSTALL \
  229. README.md THANKS TODO
  230. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  231. am__relativize = \
  232. dir0=`pwd`; \
  233. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  234. sed_rest='s,^[^/]*/*,,'; \
  235. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  236. sed_butlast='s,/*[^/]*$$,,'; \
  237. while test -n "$$dir1"; do \
  238. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  239. if test "$$first" != "."; then \
  240. if test "$$first" = ".."; then \
  241. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  242. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  243. else \
  244. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  245. if test "$$first2" = "$$first"; then \
  246. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  247. else \
  248. dir2="../$$dir2"; \
  249. fi; \
  250. dir0="$$dir0"/"$$first"; \
  251. fi; \
  252. fi; \
  253. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  254. done; \
  255. reldir="$$dir2"
  256. ACLOCAL = @ACLOCAL@
  257. AMTAR = @AMTAR@
  258. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  259. AR = @AR@
  260. AR_FLAGS = @AR_FLAGS@
  261. AS = @AS@
  262. AUTOCONF = @AUTOCONF@
  263. AUTOHEADER = @AUTOHEADER@
  264. AUTOMAKE = @AUTOMAKE@
  265. AWK = @AWK@
  266. BLANK_AT_MAKETIME = @BLANK_AT_MAKETIME@
  267. CC = @CC@
  268. CCDEPMODE = @CCDEPMODE@
  269. CFLAGS = @CFLAGS@
  270. CFLAG_CURL_SYMBOL_HIDING = @CFLAG_CURL_SYMBOL_HIDING@
  271. CONFIGURE_OPTIONS = @CONFIGURE_OPTIONS@
  272. CPP = @CPP@
  273. CPPFLAGS = @CPPFLAGS@
  274. CPPFLAG_CURL_STATICLIB = @CPPFLAG_CURL_STATICLIB@
  275. CSCOPE = @CSCOPE@
  276. CTAGS = @CTAGS@
  277. CURLVERSION = @CURLVERSION@
  278. CURL_CA_BUNDLE = @CURL_CA_BUNDLE@
  279. CURL_CFLAG_EXTRAS = @CURL_CFLAG_EXTRAS@
  280. CURL_DISABLE_DICT = @CURL_DISABLE_DICT@
  281. CURL_DISABLE_FILE = @CURL_DISABLE_FILE@
  282. CURL_DISABLE_FTP = @CURL_DISABLE_FTP@
  283. CURL_DISABLE_GOPHER = @CURL_DISABLE_GOPHER@
  284. CURL_DISABLE_HTTP = @CURL_DISABLE_HTTP@
  285. CURL_DISABLE_IMAP = @CURL_DISABLE_IMAP@
  286. CURL_DISABLE_LDAP = @CURL_DISABLE_LDAP@
  287. CURL_DISABLE_LDAPS = @CURL_DISABLE_LDAPS@
  288. CURL_DISABLE_MQTT = @CURL_DISABLE_MQTT@
  289. CURL_DISABLE_POP3 = @CURL_DISABLE_POP3@
  290. CURL_DISABLE_PROXY = @CURL_DISABLE_PROXY@
  291. CURL_DISABLE_RTSP = @CURL_DISABLE_RTSP@
  292. CURL_DISABLE_SMB = @CURL_DISABLE_SMB@
  293. CURL_DISABLE_SMTP = @CURL_DISABLE_SMTP@
  294. CURL_DISABLE_TELNET = @CURL_DISABLE_TELNET@
  295. CURL_DISABLE_TFTP = @CURL_DISABLE_TFTP@
  296. CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@
  297. CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@
  298. CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@
  299. CURL_PLIST_VERSION = @CURL_PLIST_VERSION@
  300. CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@
  301. CYGPATH_W = @CYGPATH_W@
  302. DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@
  303. DEFS = @DEFS@
  304. DEPDIR = @DEPDIR@
  305. DLLTOOL = @DLLTOOL@
  306. DSYMUTIL = @DSYMUTIL@
  307. DUMPBIN = @DUMPBIN@
  308. ECHO_C = @ECHO_C@
  309. ECHO_N = @ECHO_N@
  310. ECHO_T = @ECHO_T@
  311. EGREP = @EGREP@
  312. ENABLE_SHARED = @ENABLE_SHARED@
  313. ENABLE_STATIC = @ENABLE_STATIC@
  314. ETAGS = @ETAGS@
  315. EXEEXT = @EXEEXT@
  316. FGREP = @FGREP@
  317. FILECMD = @FILECMD@
  318. FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@
  319. GCOV = @GCOV@
  320. GREP = @GREP@
  321. HAVE_BROTLI = @HAVE_BROTLI@
  322. HAVE_GNUTLS_SRP = @HAVE_GNUTLS_SRP@
  323. HAVE_LDAP_SSL = @HAVE_LDAP_SSL@
  324. HAVE_LIBZ = @HAVE_LIBZ@
  325. HAVE_OPENSSL_SRP = @HAVE_OPENSSL_SRP@
  326. HAVE_PROTO_BSDSOCKET_H = @HAVE_PROTO_BSDSOCKET_H@
  327. HAVE_ZSTD = @HAVE_ZSTD@
  328. IDN_ENABLED = @IDN_ENABLED@
  329. INSTALL = @INSTALL@
  330. INSTALL_DATA = @INSTALL_DATA@
  331. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  332. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  333. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  334. IPV6_ENABLED = @IPV6_ENABLED@
  335. LCOV = @LCOV@
  336. LD = @LD@
  337. LDFLAGS = @LDFLAGS@
  338. LIBCURL_LIBS = @LIBCURL_LIBS@
  339. LIBCURL_NO_SHARED = @LIBCURL_NO_SHARED@
  340. LIBOBJS = @LIBOBJS@
  341. LIBS = @LIBS@
  342. LIBTOOL = @LIBTOOL@
  343. LIPO = @LIPO@
  344. LN_S = @LN_S@
  345. LTLIBOBJS = @LTLIBOBJS@
  346. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  347. MAINT = @MAINT@
  348. MAKEINFO = @MAKEINFO@
  349. MANIFEST_TOOL = @MANIFEST_TOOL@
  350. MANOPT = @MANOPT@
  351. MKDIR_P = @MKDIR_P@
  352. NM = @NM@
  353. NMEDIT = @NMEDIT@
  354. NROFF = @NROFF@
  355. NSS_LIBS = @NSS_LIBS@
  356. OBJDUMP = @OBJDUMP@
  357. OBJEXT = @OBJEXT@
  358. OTOOL = @OTOOL@
  359. OTOOL64 = @OTOOL64@
  360. PACKAGE = @PACKAGE@
  361. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  362. PACKAGE_NAME = @PACKAGE_NAME@
  363. PACKAGE_STRING = @PACKAGE_STRING@
  364. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  365. PACKAGE_URL = @PACKAGE_URL@
  366. PACKAGE_VERSION = @PACKAGE_VERSION@
  367. PATH_SEPARATOR = @PATH_SEPARATOR@
  368. PERL = @PERL@
  369. PKGADD_NAME = @PKGADD_NAME@
  370. PKGADD_PKG = @PKGADD_PKG@
  371. PKGADD_VENDOR = @PKGADD_VENDOR@
  372. PKGCONFIG = @PKGCONFIG@
  373. RANDOM_FILE = @RANDOM_FILE@
  374. RANLIB = @RANLIB@
  375. REQUIRE_LIB_DEPS = @REQUIRE_LIB_DEPS@
  376. SED = @SED@
  377. SET_MAKE = @SET_MAKE@
  378. SHELL = @SHELL@
  379. SSL_BACKENDS = @SSL_BACKENDS@
  380. SSL_ENABLED = @SSL_ENABLED@
  381. SSL_LIBS = @SSL_LIBS@
  382. STRIP = @STRIP@
  383. SUPPORT_FEATURES = @SUPPORT_FEATURES@
  384. SUPPORT_PROTOCOLS = @SUPPORT_PROTOCOLS@
  385. USE_ARES = @USE_ARES@
  386. USE_BEARSSL = @USE_BEARSSL@
  387. USE_GNUTLS = @USE_GNUTLS@
  388. USE_HYPER = @USE_HYPER@
  389. USE_LIBRTMP = @USE_LIBRTMP@
  390. USE_LIBSSH = @USE_LIBSSH@
  391. USE_LIBSSH2 = @USE_LIBSSH2@
  392. USE_MBEDTLS = @USE_MBEDTLS@
  393. USE_MSH3 = @USE_MSH3@
  394. USE_NGHTTP2 = @USE_NGHTTP2@
  395. USE_NGHTTP3 = @USE_NGHTTP3@
  396. USE_NGTCP2 = @USE_NGTCP2@
  397. USE_NGTCP2_CRYPTO_GNUTLS = @USE_NGTCP2_CRYPTO_GNUTLS@
  398. USE_NGTCP2_CRYPTO_OPENSSL = @USE_NGTCP2_CRYPTO_OPENSSL@
  399. USE_NGTCP2_CRYPTO_WOLFSSL = @USE_NGTCP2_CRYPTO_WOLFSSL@
  400. USE_NSS = @USE_NSS@
  401. USE_OPENLDAP = @USE_OPENLDAP@
  402. USE_QUICHE = @USE_QUICHE@
  403. USE_RUSTLS = @USE_RUSTLS@
  404. USE_SCHANNEL = @USE_SCHANNEL@
  405. USE_SECTRANSP = @USE_SECTRANSP@
  406. USE_UNIX_SOCKETS = @USE_UNIX_SOCKETS@
  407. USE_WIN32_CRYPTO = @USE_WIN32_CRYPTO@
  408. USE_WIN32_LARGE_FILES = @USE_WIN32_LARGE_FILES@
  409. USE_WIN32_SMALL_FILES = @USE_WIN32_SMALL_FILES@
  410. USE_WINDOWS_SSPI = @USE_WINDOWS_SSPI@
  411. USE_WOLFSSH = @USE_WOLFSSH@
  412. USE_WOLFSSL = @USE_WOLFSSL@
  413. VERSION = @VERSION@
  414. VERSIONNUM = @VERSIONNUM@
  415. ZLIB_LIBS = @ZLIB_LIBS@
  416. ZSH_FUNCTIONS_DIR = @ZSH_FUNCTIONS_DIR@
  417. abs_builddir = @abs_builddir@
  418. abs_srcdir = @abs_srcdir@
  419. abs_top_builddir = @abs_top_builddir@
  420. abs_top_srcdir = @abs_top_srcdir@
  421. ac_ct_AR = @ac_ct_AR@
  422. ac_ct_CC = @ac_ct_CC@
  423. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  424. am__include = @am__include@
  425. am__leading_dot = @am__leading_dot@
  426. am__quote = @am__quote@
  427. am__tar = @am__tar@
  428. am__untar = @am__untar@
  429. bindir = @bindir@
  430. build = @build@
  431. build_alias = @build_alias@
  432. build_cpu = @build_cpu@
  433. build_os = @build_os@
  434. build_vendor = @build_vendor@
  435. builddir = @builddir@
  436. datadir = @datadir@
  437. datarootdir = @datarootdir@
  438. docdir = @docdir@
  439. dvidir = @dvidir@
  440. exec_prefix = @exec_prefix@
  441. host = @host@
  442. host_alias = @host_alias@
  443. host_cpu = @host_cpu@
  444. host_os = @host_os@
  445. host_vendor = @host_vendor@
  446. htmldir = @htmldir@
  447. includedir = @includedir@
  448. infodir = @infodir@
  449. install_sh = @install_sh@
  450. libdir = @libdir@
  451. libexecdir = @libexecdir@
  452. libext = @libext@
  453. localedir = @localedir@
  454. localstatedir = @localstatedir@
  455. mandir = @mandir@
  456. mkdir_p = @mkdir_p@
  457. oldincludedir = @oldincludedir@
  458. pdfdir = @pdfdir@
  459. prefix = @prefix@
  460. program_transform_name = @program_transform_name@
  461. psdir = @psdir@
  462. runstatedir = @runstatedir@
  463. sbindir = @sbindir@
  464. sharedstatedir = @sharedstatedir@
  465. srcdir = @srcdir@
  466. sysconfdir = @sysconfdir@
  467. target_alias = @target_alias@
  468. top_build_prefix = @top_build_prefix@
  469. top_builddir = @top_builddir@
  470. top_srcdir = @top_srcdir@
  471. AUTOMAKE_OPTIONS = foreign no-dependencies
  472. # EXTRA_DIST breaks with $(abs_builddir) so build it using this variable
  473. # but distribute it (using the relative file name) in the next variable
  474. man_MANS = $(abs_builddir)/curl.1
  475. noinst_man_MANS = curl.1 mk-ca-bundle.1
  476. dist_man_MANS = curl-config.1
  477. GENHTMLPAGES = curl.html curl-config.html mk-ca-bundle.html
  478. PDFPAGES = curl.pdf curl-config.pdf mk-ca-bundle.pdf
  479. MANDISTPAGES = curl.1.dist curl-config.1.dist
  480. HTMLPAGES = $(GENHTMLPAGES)
  481. # Build targets in this file (.) before cmdline-opts to ensure that
  482. # the curl.1 rule below runs first
  483. SUBDIRS = . cmdline-opts
  484. DIST_SUBDIRS = $(SUBDIRS) examples libcurl
  485. CLEANFILES = $(GENHTMLPAGES) $(PDFPAGES) $(MANDISTPAGES) curl.1
  486. EXTRA_DIST = \
  487. $(noinst_man_MANS) \
  488. ALTSVC.md \
  489. BINDINGS.md \
  490. BUFREF.md \
  491. BUG-BOUNTY.md \
  492. BUGS.md \
  493. CHECKSRC.md \
  494. CIPHERS.md \
  495. CMakeLists.txt \
  496. CODE_OF_CONDUCT.md \
  497. CODE_REVIEW.md \
  498. CODE_STYLE.md \
  499. CONTRIBUTE.md \
  500. CURL-DISABLE.md \
  501. DEPRECATE.md \
  502. DYNBUF.md \
  503. EXPERIMENTAL.md \
  504. FAQ \
  505. FEATURES.md \
  506. GOVERNANCE.md \
  507. HELP-US.md \
  508. HISTORY.md \
  509. HSTS.md \
  510. HTTP-COOKIES.md \
  511. HTTP2.md \
  512. HTTP3.md \
  513. HYPER.md \
  514. INSTALL \
  515. INSTALL.cmake \
  516. INSTALL.md \
  517. INTERNALS.md \
  518. KNOWN_BUGS \
  519. MAIL-ETIQUETTE \
  520. MQTT.md \
  521. NEW-PROTOCOL.md \
  522. options-in-versions \
  523. PARALLEL-TRANSFERS.md \
  524. README.md \
  525. RELEASE-PROCEDURE.md \
  526. RUSTLS.md \
  527. ROADMAP.md \
  528. SECURITY-PROCESS.md \
  529. SSL-PROBLEMS.md \
  530. SSLCERTS.md \
  531. THANKS \
  532. TODO \
  533. TheArtOfHttpScripting.md \
  534. URL-SYNTAX.md \
  535. VERSIONS.md
  536. MAN2HTML = roffit $< >$@
  537. SUFFIXES = .1 .html .pdf
  538. all: all-recursive
  539. .SUFFIXES:
  540. .SUFFIXES: .1 .html .pdf
  541. $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
  542. @for dep in $?; do \
  543. case '$(am__configure_deps)' in \
  544. *$$dep*) \
  545. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  546. && { if test -f $@; then exit 0; else break; fi; }; \
  547. exit 1;; \
  548. esac; \
  549. done; \
  550. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign docs/Makefile'; \
  551. $(am__cd) $(top_srcdir) && \
  552. $(AUTOMAKE) --foreign docs/Makefile
  553. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  554. @case '$?' in \
  555. *config.status*) \
  556. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  557. *) \
  558. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  559. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  560. esac;
  561. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  562. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  563. $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  564. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  565. $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  566. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  567. $(am__aclocal_m4_deps):
  568. mostlyclean-libtool:
  569. -rm -f *.lo
  570. clean-libtool:
  571. -rm -rf .libs _libs
  572. install-man1: $(dist_man_MANS) $(man_MANS)
  573. @$(NORMAL_INSTALL)
  574. @list1=''; \
  575. list2='$(dist_man_MANS) $(man_MANS)'; \
  576. test -n "$(man1dir)" \
  577. && test -n "`echo $$list1$$list2`" \
  578. || exit 0; \
  579. echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
  580. $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
  581. { for i in $$list1; do echo "$$i"; done; \
  582. if test -n "$$list2"; then \
  583. for i in $$list2; do echo "$$i"; done \
  584. | sed -n '/\.1[a-z]*$$/p'; \
  585. fi; \
  586. } | while read p; do \
  587. if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
  588. echo "$$d$$p"; echo "$$p"; \
  589. done | \
  590. sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  591. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
  592. sed 'N;N;s,\n, ,g' | { \
  593. list=; while read file base inst; do \
  594. if test "$$base" = "$$inst"; then list="$$list $$file"; else \
  595. echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
  596. $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
  597. fi; \
  598. done; \
  599. for i in $$list; do echo "$$i"; done | $(am__base_list) | \
  600. while read files; do \
  601. test -z "$$files" || { \
  602. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
  603. $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
  604. done; }
  605. uninstall-man1:
  606. @$(NORMAL_UNINSTALL)
  607. @list=''; test -n "$(man1dir)" || exit 0; \
  608. files=`{ for i in $$list; do echo "$$i"; done; \
  609. l2='$(dist_man_MANS) $(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
  610. sed -n '/\.1[a-z]*$$/p'; \
  611. } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  612. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
  613. dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
  614. # This directory's subdirectories are mostly independent; you can cd
  615. # into them and run 'make' without going through this Makefile.
  616. # To change the values of 'make' variables: instead of editing Makefiles,
  617. # (1) if the variable is set in 'config.status', edit 'config.status'
  618. # (which will cause the Makefiles to be regenerated when you run 'make');
  619. # (2) otherwise, pass the desired values on the 'make' command line.
  620. $(am__recursive_targets):
  621. @fail=; \
  622. if $(am__make_keepgoing); then \
  623. failcom='fail=yes'; \
  624. else \
  625. failcom='exit 1'; \
  626. fi; \
  627. dot_seen=no; \
  628. target=`echo $@ | sed s/-recursive//`; \
  629. case "$@" in \
  630. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  631. *) list='$(SUBDIRS)' ;; \
  632. esac; \
  633. for subdir in $$list; do \
  634. echo "Making $$target in $$subdir"; \
  635. if test "$$subdir" = "."; then \
  636. dot_seen=yes; \
  637. local_target="$$target-am"; \
  638. else \
  639. local_target="$$target"; \
  640. fi; \
  641. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  642. || eval $$failcom; \
  643. done; \
  644. if test "$$dot_seen" = "no"; then \
  645. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  646. fi; test -z "$$fail"
  647. ID: $(am__tagged_files)
  648. $(am__define_uniq_tagged_files); mkid -fID $$unique
  649. tags: tags-recursive
  650. TAGS: tags
  651. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  652. set x; \
  653. here=`pwd`; \
  654. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  655. include_option=--etags-include; \
  656. empty_fix=.; \
  657. else \
  658. include_option=--include; \
  659. empty_fix=; \
  660. fi; \
  661. list='$(SUBDIRS)'; for subdir in $$list; do \
  662. if test "$$subdir" = .; then :; else \
  663. test ! -f $$subdir/TAGS || \
  664. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  665. fi; \
  666. done; \
  667. $(am__define_uniq_tagged_files); \
  668. shift; \
  669. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  670. test -n "$$unique" || unique=$$empty_fix; \
  671. if test $$# -gt 0; then \
  672. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  673. "$$@" $$unique; \
  674. else \
  675. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  676. $$unique; \
  677. fi; \
  678. fi
  679. ctags: ctags-recursive
  680. CTAGS: ctags
  681. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  682. $(am__define_uniq_tagged_files); \
  683. test -z "$(CTAGS_ARGS)$$unique" \
  684. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  685. $$unique
  686. GTAGS:
  687. here=`$(am__cd) $(top_builddir) && pwd` \
  688. && $(am__cd) $(top_srcdir) \
  689. && gtags -i $(GTAGS_ARGS) "$$here"
  690. cscopelist: cscopelist-recursive
  691. cscopelist-am: $(am__tagged_files)
  692. list='$(am__tagged_files)'; \
  693. case "$(srcdir)" in \
  694. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  695. *) sdir=$(subdir)/$(srcdir) ;; \
  696. esac; \
  697. for i in $$list; do \
  698. if test -f "$$i"; then \
  699. echo "$(subdir)/$$i"; \
  700. else \
  701. echo "$$sdir/$$i"; \
  702. fi; \
  703. done >> $(top_builddir)/cscope.files
  704. distclean-tags:
  705. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  706. distdir: $(BUILT_SOURCES)
  707. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  708. distdir-am: $(DISTFILES)
  709. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  710. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  711. list='$(DISTFILES)'; \
  712. dist_files=`for file in $$list; do echo $$file; done | \
  713. sed -e "s|^$$srcdirstrip/||;t" \
  714. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  715. case $$dist_files in \
  716. */*) $(MKDIR_P) `echo "$$dist_files" | \
  717. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  718. sort -u` ;; \
  719. esac; \
  720. for file in $$dist_files; do \
  721. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  722. if test -d $$d/$$file; then \
  723. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  724. if test -d "$(distdir)/$$file"; then \
  725. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  726. fi; \
  727. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  728. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  729. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  730. fi; \
  731. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  732. else \
  733. test -f "$(distdir)/$$file" \
  734. || cp -p $$d/$$file "$(distdir)/$$file" \
  735. || exit 1; \
  736. fi; \
  737. done
  738. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  739. if test "$$subdir" = .; then :; else \
  740. $(am__make_dryrun) \
  741. || test -d "$(distdir)/$$subdir" \
  742. || $(MKDIR_P) "$(distdir)/$$subdir" \
  743. || exit 1; \
  744. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  745. $(am__relativize); \
  746. new_distdir=$$reldir; \
  747. dir1=$$subdir; dir2="$(top_distdir)"; \
  748. $(am__relativize); \
  749. new_top_distdir=$$reldir; \
  750. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  751. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  752. ($(am__cd) $$subdir && \
  753. $(MAKE) $(AM_MAKEFLAGS) \
  754. top_distdir="$$new_top_distdir" \
  755. distdir="$$new_distdir" \
  756. am__remove_distdir=: \
  757. am__skip_length_check=: \
  758. am__skip_mode_fix=: \
  759. distdir) \
  760. || exit 1; \
  761. fi; \
  762. done
  763. check-am: all-am
  764. check: check-recursive
  765. all-am: Makefile $(MANS)
  766. installdirs: installdirs-recursive
  767. installdirs-am:
  768. for dir in "$(DESTDIR)$(man1dir)"; do \
  769. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  770. done
  771. install: install-recursive
  772. install-exec: install-exec-recursive
  773. install-data: install-data-recursive
  774. uninstall: uninstall-recursive
  775. install-am: all-am
  776. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  777. installcheck: installcheck-recursive
  778. install-strip:
  779. if test -z '$(STRIP)'; then \
  780. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  781. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  782. install; \
  783. else \
  784. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  785. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  786. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  787. fi
  788. mostlyclean-generic:
  789. clean-generic:
  790. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  791. distclean-generic:
  792. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  793. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  794. maintainer-clean-generic:
  795. @echo "This command is intended for maintainers to use"
  796. @echo "it deletes files that may require special tools to rebuild."
  797. clean: clean-recursive
  798. clean-am: clean-generic clean-libtool mostlyclean-am
  799. distclean-am: clean-am distclean-generic distclean-tags
  800. dvi: dvi-recursive
  801. dvi-am:
  802. html-am:
  803. info: info-recursive
  804. info-am:
  805. install-data-am: install-man
  806. install-dvi: install-dvi-recursive
  807. install-dvi-am:
  808. install-exec-am:
  809. install-html: install-html-recursive
  810. install-html-am:
  811. install-info: install-info-recursive
  812. install-info-am:
  813. install-man: install-man1
  814. install-pdf: install-pdf-recursive
  815. install-pdf-am:
  816. install-ps: install-ps-recursive
  817. install-ps-am:
  818. installcheck-am:
  819. maintainer-clean: maintainer-clean-recursive
  820. -rm -f Makefile
  821. maintainer-clean-am: distclean-am maintainer-clean-generic
  822. mostlyclean: mostlyclean-recursive
  823. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  824. pdf-am:
  825. ps: ps-recursive
  826. ps-am:
  827. uninstall-am: uninstall-man
  828. uninstall-man: uninstall-man1
  829. .MAKE: $(am__recursive_targets) install-am install-strip
  830. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
  831. check-am clean clean-generic clean-libtool cscopelist-am ctags \
  832. ctags-am distclean distclean-generic distclean-libtool \
  833. distclean-tags distdir dvi dvi-am html html-am info info-am \
  834. install install-am install-data install-data-am install-dvi \
  835. install-dvi-am install-exec install-exec-am install-html \
  836. install-html-am install-info install-info-am install-man \
  837. install-man1 install-pdf install-pdf-am install-ps \
  838. install-ps-am install-strip installcheck installcheck-am \
  839. installdirs installdirs-am maintainer-clean \
  840. maintainer-clean-generic mostlyclean mostlyclean-generic \
  841. mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
  842. uninstall-am uninstall-man uninstall-man1
  843. .PRECIOUS: Makefile
  844. # $(abs_builddir) is to disable VPATH when searching for this file, which
  845. # would otherwise find the copy in $(srcdir) which breaks the $(HUGE)
  846. # rule in src/Makefile.am in out-of-tree builds that references the file in the
  847. # build directory.
  848. #
  849. # First, seed the used copy of curl.1 with the prebuilt copy (in an out-of-tree
  850. # build), then run make recursively to rebuild it only if its dependencies
  851. # have changed.
  852. $(abs_builddir)/curl.1:
  853. if test "$(top_builddir)x" != "$(top_srcdir)x" -a -e "$(srcdir)/curl.1"; then \
  854. $(INSTALL_DATA) "$(srcdir)/curl.1" $@; fi
  855. cd cmdline-opts && $(MAKE)
  856. html: $(HTMLPAGES)
  857. cd libcurl && $(MAKE) html
  858. pdf: $(PDFPAGES)
  859. cd libcurl && $(MAKE) pdf
  860. .1.html:
  861. $(MAN2HTML)
  862. .1.pdf:
  863. @(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \
  864. groff -Tps -man $< >$$foo.ps; \
  865. ps2pdf $$foo.ps $@; \
  866. rm $$foo.ps; \
  867. echo "converted $< to $@")
  868. distclean:
  869. rm -f $(CLEANFILES)
  870. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  871. # Otherwise a system limit (for SysV at least) may be exceeded.
  872. .NOEXPORT: