Makefile.in 26 KB

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