Makefile 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656
  1. # Makefile.in generated by automake 1.14.1 from Makefile.am.
  2. # Makefile. Generated from Makefile.in by configure.
  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. #***************************************************************************
  12. # _ _ ____ _
  13. # Project ___| | | | _ \| |
  14. # / __| | | | |_) | |
  15. # | (__| |_| | _ <| |___
  16. # \___|\___/|_| \_\_____|
  17. #
  18. # Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
  19. #
  20. # This software is licensed as described in the file COPYING, which
  21. # you should have received as part of this distribution. The terms
  22. # are also available at http://curl.haxx.se/docs/copyright.html.
  23. #
  24. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  25. # copies of the Software, and permit persons to whom the Software is
  26. # furnished to do so, under the terms of the COPYING file.
  27. #
  28. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  29. # KIND, either express or implied.
  30. #
  31. ###########################################################################
  32. #***************************************************************************
  33. # _ _ ____ _
  34. # Project ___| | | | _ \| |
  35. # / __| | | | |_) | |
  36. # | (__| |_| | _ <| |___
  37. # \___|\___/|_| \_\_____|
  38. #
  39. # Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
  40. #
  41. # This software is licensed as described in the file COPYING, which
  42. # you should have received as part of this distribution. The terms
  43. # are also available at http://curl.haxx.se/docs/copyright.html.
  44. #
  45. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  46. # copies of the Software, and permit persons to whom the Software is
  47. # furnished to do so, under the terms of the COPYING file.
  48. #
  49. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  50. # KIND, either express or implied.
  51. #
  52. ###########################################################################
  53. # ./src/Makefile.inc
  54. # Using the backslash as line continuation character might be problematic
  55. # with some make flavours, as Watcom's wmake showed us already. If we
  56. # ever want to change this in a portable manner then we should consider
  57. # this idea (posted to the libcurl list by Adam Kellas):
  58. # CSRC1 = file1.c file2.c file3.c
  59. # CSRC2 = file4.c file5.c file6.c
  60. # CSOURCES = $(CSRC1) $(CSRC2)
  61. am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
  62. am__make_running_with_option = \
  63. case $${target_option-} in \
  64. ?) ;; \
  65. *) echo "am__make_running_with_option: internal error: invalid" \
  66. "target option '$${target_option-}' specified" >&2; \
  67. exit 1;; \
  68. esac; \
  69. has_opt=no; \
  70. sane_makeflags=$$MAKEFLAGS; \
  71. if $(am__is_gnu_make); then \
  72. sane_makeflags=$$MFLAGS; \
  73. else \
  74. case $$MAKEFLAGS in \
  75. *\\[\ \ ]*) \
  76. bs=\\; \
  77. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  78. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  79. esac; \
  80. fi; \
  81. skip_next=no; \
  82. strip_trailopt () \
  83. { \
  84. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  85. }; \
  86. for flg in $$sane_makeflags; do \
  87. test $$skip_next = yes && { skip_next=no; continue; }; \
  88. case $$flg in \
  89. *=*|--*) continue;; \
  90. -*I) strip_trailopt 'I'; skip_next=yes;; \
  91. -*I?*) strip_trailopt 'I';; \
  92. -*O) strip_trailopt 'O'; skip_next=yes;; \
  93. -*O?*) strip_trailopt 'O';; \
  94. -*l) strip_trailopt 'l'; skip_next=yes;; \
  95. -*l?*) strip_trailopt 'l';; \
  96. -[dEDm]) skip_next=yes;; \
  97. -[JT]) skip_next=yes;; \
  98. esac; \
  99. case $$flg in \
  100. *$$target_option*) has_opt=yes; break;; \
  101. esac; \
  102. done; \
  103. test $$has_opt = yes
  104. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  105. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  106. pkgdatadir = $(datadir)/curl
  107. pkgincludedir = $(includedir)/curl
  108. pkglibdir = $(libdir)/curl
  109. pkglibexecdir = $(libexecdir)/curl
  110. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  111. install_sh_DATA = $(install_sh) -c -m 644
  112. install_sh_PROGRAM = $(install_sh) -c
  113. install_sh_SCRIPT = $(install_sh) -c
  114. INSTALL_HEADER = $(INSTALL_DATA)
  115. transform = $(program_transform_name)
  116. NORMAL_INSTALL = :
  117. PRE_INSTALL = :
  118. POST_INSTALL = :
  119. NORMAL_UNINSTALL = :
  120. PRE_UNINSTALL = :
  121. POST_UNINSTALL = :
  122. build_triplet = x86_64-unknown-linux-gnu
  123. host_triplet = arm-unknown-linux-gnueabihf
  124. DIST_COMMON = $(srcdir)/lib/Makefile.inc $(srcdir)/src/Makefile.inc \
  125. $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
  126. $(top_srcdir)/configure $(am__configure_deps) mkinstalldirs \
  127. $(srcdir)/curl-config.in $(srcdir)/libcurl.pc.in COPYING \
  128. README compile config.guess config.sub depcomp install-sh \
  129. missing ltmain.sh
  130. subdir = .
  131. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  132. am__aclocal_m4_deps = $(top_srcdir)/m4/curl-compilers.m4 \
  133. $(top_srcdir)/m4/curl-confopts.m4 \
  134. $(top_srcdir)/m4/curl-functions.m4 \
  135. $(top_srcdir)/m4/curl-openssl.m4 \
  136. $(top_srcdir)/m4/curl-override.m4 \
  137. $(top_srcdir)/m4/curl-reentrant.m4 $(top_srcdir)/m4/libtool.m4 \
  138. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  139. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  140. $(top_srcdir)/m4/xc-am-iface.m4 \
  141. $(top_srcdir)/m4/xc-cc-check.m4 \
  142. $(top_srcdir)/m4/xc-lt-iface.m4 \
  143. $(top_srcdir)/m4/xc-translit.m4 \
  144. $(top_srcdir)/m4/xc-val-flgs.m4 \
  145. $(top_srcdir)/m4/zz40-xc-ovr.m4 \
  146. $(top_srcdir)/m4/zz50-xc-ovr.m4 \
  147. $(top_srcdir)/m4/zz60-xc-ovr.m4 $(top_srcdir)/acinclude.m4 \
  148. $(top_srcdir)/configure.ac
  149. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  150. $(ACLOCAL_M4)
  151. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  152. configure.lineno config.status.lineno
  153. mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  154. CONFIG_HEADER = $(top_builddir)/lib/curl_config.h \
  155. $(top_builddir)/include/curl/curlbuild.h
  156. CONFIG_CLEAN_FILES = curl-config libcurl.pc
  157. CONFIG_CLEAN_VPATH_FILES =
  158. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  159. am__vpath_adj = case $$p in \
  160. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  161. *) f=$$p;; \
  162. esac;
  163. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  164. am__install_max = 40
  165. am__nobase_strip_setup = \
  166. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  167. am__nobase_strip = \
  168. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  169. am__nobase_list = $(am__nobase_strip_setup); \
  170. for p in $$list; do echo "$$p $$p"; done | \
  171. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  172. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  173. if (++n[$$2] == $(am__install_max)) \
  174. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  175. END { for (dir in files) print dir, files[dir] }'
  176. am__base_list = \
  177. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  178. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  179. am__uninstall_files_from_dir = { \
  180. test -z "$$files" \
  181. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  182. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  183. $(am__cd) "$$dir" && rm -f $$files; }; \
  184. }
  185. am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgconfigdir)"
  186. SCRIPTS = $(bin_SCRIPTS)
  187. AM_V_P = $(am__v_P_$(V))
  188. am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
  189. am__v_P_0 = false
  190. am__v_P_1 = :
  191. AM_V_GEN = $(am__v_GEN_$(V))
  192. am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
  193. am__v_GEN_0 = @echo " GEN " $@;
  194. am__v_GEN_1 =
  195. AM_V_at = $(am__v_at_$(V))
  196. am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
  197. am__v_at_0 = @
  198. am__v_at_1 =
  199. SOURCES =
  200. DIST_SOURCES =
  201. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  202. ctags-recursive dvi-recursive html-recursive info-recursive \
  203. install-data-recursive install-dvi-recursive \
  204. install-exec-recursive install-html-recursive \
  205. install-info-recursive install-pdf-recursive \
  206. install-ps-recursive install-recursive installcheck-recursive \
  207. installdirs-recursive pdf-recursive ps-recursive \
  208. tags-recursive uninstall-recursive
  209. am__can_run_installinfo = \
  210. case $$AM_UPDATE_INFO_DIR in \
  211. n|no|NO) false;; \
  212. *) (install-info --version) >/dev/null 2>&1;; \
  213. esac
  214. DATA = $(pkgconfig_DATA)
  215. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  216. distclean-recursive maintainer-clean-recursive
  217. am__recursive_targets = \
  218. $(RECURSIVE_TARGETS) \
  219. $(RECURSIVE_CLEAN_TARGETS) \
  220. $(am__extra_recursive_targets)
  221. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  222. cscope distdir dist dist-all distcheck
  223. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  224. # Read a list of newline-separated strings from the standard input,
  225. # and print each of them once, without duplicates. Input order is
  226. # *not* preserved.
  227. am__uniquify_input = $(AWK) '\
  228. BEGIN { nonempty = 0; } \
  229. { items[$$0] = 1; nonempty = 1; } \
  230. END { if (nonempty) { for (i in items) print i; }; } \
  231. '
  232. # Make sure the list of sources is unique. This is necessary because,
  233. # e.g., the same source file might be shared among _SOURCES variables
  234. # for different programs/libraries.
  235. am__define_uniq_tagged_files = \
  236. list='$(am__tagged_files)'; \
  237. unique=`for i in $$list; do \
  238. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  239. done | $(am__uniquify_input)`
  240. ETAGS = etags
  241. CTAGS = ctags
  242. CSCOPE = cscope
  243. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  244. distdir = $(PACKAGE)-$(VERSION)
  245. top_distdir = $(distdir)
  246. am__remove_distdir = \
  247. if test -d "$(distdir)"; then \
  248. find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
  249. && rm -rf "$(distdir)" \
  250. || { sleep 5 && rm -rf "$(distdir)"; }; \
  251. else :; fi
  252. am__post_remove_distdir = $(am__remove_distdir)
  253. am__relativize = \
  254. dir0=`pwd`; \
  255. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  256. sed_rest='s,^[^/]*/*,,'; \
  257. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  258. sed_butlast='s,/*[^/]*$$,,'; \
  259. while test -n "$$dir1"; do \
  260. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  261. if test "$$first" != "."; then \
  262. if test "$$first" = ".."; then \
  263. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  264. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  265. else \
  266. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  267. if test "$$first2" = "$$first"; then \
  268. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  269. else \
  270. dir2="../$$dir2"; \
  271. fi; \
  272. dir0="$$dir0"/"$$first"; \
  273. fi; \
  274. fi; \
  275. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  276. done; \
  277. reldir="$$dir2"
  278. DIST_ARCHIVES = $(distdir).tar.gz
  279. GZIP_ENV = --best
  280. DIST_TARGETS = dist-gzip
  281. distuninstallcheck_listfiles = find . -type f -print
  282. am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
  283. | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
  284. distcleancheck_listfiles = find . -type f -print
  285. ACLOCAL = ${SHELL} "/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.37.1/missing" --run aclocal-1.14
  286. AMTAR = $${TAR-tar}
  287. AM_DEFAULT_VERBOSITY = 1
  288. AR = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-ar
  289. AS = as
  290. AUTOCONF = ${SHELL} "/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.37.1/missing" --run autoconf
  291. AUTOHEADER = ${SHELL} "/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.37.1/missing" --run autoheader
  292. AUTOMAKE = ${SHELL} "/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.37.1/missing" --run automake-1.14
  293. AWK = gawk
  294. BLANK_AT_MAKETIME =
  295. CC = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc
  296. CCDEPMODE = depmode=gcc3
  297. CFLAGS = -O2 -Wno-system-headers
  298. CFLAG_CURL_SYMBOL_HIDING = -fvisibility=hidden
  299. CONFIGURE_OPTIONS = " '--host=arm-linux-gnueabihf' '--prefix=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.37.1/release' '--with-ssl' '--with-zlib' '--enable-static' '--enable-libgcc' 'CC=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc' 'AR=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-ar' 'RANLIB=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-ranlib' 'STRIP=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-strip' 'CXX=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-g++' 'host_alias=arm-linux-gnueabihf'"
  300. CPP = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc -E
  301. CPPFLAGS =
  302. CPPFLAG_CURL_STATICLIB =
  303. CURLVERSION = 7.37.1
  304. CURL_CA_BUNDLE =
  305. CURL_CFLAG_EXTRAS =
  306. CURL_DISABLE_DICT =
  307. CURL_DISABLE_FILE =
  308. CURL_DISABLE_FTP =
  309. CURL_DISABLE_GOPHER =
  310. CURL_DISABLE_HTTP =
  311. CURL_DISABLE_IMAP =
  312. CURL_DISABLE_LDAP = 1
  313. CURL_DISABLE_LDAPS = 1
  314. CURL_DISABLE_POP3 =
  315. CURL_DISABLE_PROXY =
  316. CURL_DISABLE_RTSP =
  317. CURL_DISABLE_SMTP =
  318. CURL_DISABLE_TELNET =
  319. CURL_DISABLE_TFTP =
  320. CURL_LT_SHLIB_VERSIONED_FLAVOUR =
  321. CURL_NETWORK_AND_TIME_LIBS = -lgcc
  322. CURL_NETWORK_LIBS = -lgcc
  323. CYGPATH_W = echo
  324. DEFS = -DHAVE_CONFIG_H
  325. DEPDIR = .deps
  326. DLLTOOL = false
  327. DSYMUTIL =
  328. DUMPBIN = :
  329. ECHO_C =
  330. ECHO_N = -n
  331. ECHO_T =
  332. EGREP = /bin/grep -E
  333. ENABLE_SHARED = yes
  334. ENABLE_STATIC = yes
  335. EXEEXT =
  336. FGREP = /bin/grep -F
  337. GREP = /bin/grep
  338. HAVE_GNUTLS_SRP =
  339. HAVE_LDAP_SSL = 1
  340. HAVE_LIBZ = 1
  341. HAVE_SSLEAY_SRP = 1
  342. IDN_ENABLED =
  343. INSTALL = /usr/bin/install -c
  344. INSTALL_DATA = ${INSTALL} -m 644
  345. INSTALL_PROGRAM = ${INSTALL}
  346. INSTALL_SCRIPT = ${INSTALL}
  347. INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
  348. IPV6_ENABLED =
  349. LD = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/arm-linux-gnueabihf/bin/ld
  350. LDFLAGS =
  351. LIBCURL_LIBS = -lssl -lcrypto -lz -lgcc
  352. LIBMETALINK_CPPFLAGS =
  353. LIBMETALINK_LDFLAGS =
  354. LIBMETALINK_LIBS =
  355. LIBOBJS =
  356. LIBS = -lssl -lcrypto -lz -lgcc
  357. LIBTOOL = $(SHELL) $(top_builddir)/libtool
  358. LIPO =
  359. LN_S = ln -s
  360. LTLIBOBJS =
  361. MAINT = #
  362. MAKEINFO = ${SHELL} "/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.37.1/missing" --run makeinfo
  363. MANIFEST_TOOL = :
  364. MANOPT = -man
  365. MKDIR_P = /bin/mkdir -p
  366. NM = nm
  367. NMEDIT =
  368. NROFF = /usr/bin/nroff
  369. OBJDUMP = objdump
  370. OBJEXT = o
  371. OTOOL =
  372. OTOOL64 =
  373. PACKAGE = curl
  374. PACKAGE_BUGREPORT = a suitable curl mailing list: http://curl.haxx.se/mail/
  375. PACKAGE_NAME = curl
  376. PACKAGE_STRING = curl -
  377. PACKAGE_TARNAME = curl
  378. PACKAGE_URL =
  379. PACKAGE_VERSION = -
  380. PATH_SEPARATOR = :
  381. PERL = /usr/bin/perl
  382. PKGADD_NAME = cURL - a client that groks URLs
  383. PKGADD_PKG = HAXXcurl
  384. PKGADD_VENDOR = curl.haxx.se
  385. PKGCONFIG = no
  386. RANDOM_FILE =
  387. RANLIB = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-ranlib
  388. REQUIRE_LIB_DEPS = no
  389. SED = /bin/sed
  390. SET_MAKE =
  391. SHELL = /bin/bash
  392. SSL_ENABLED = 1
  393. STRIP = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-strip
  394. SUPPORT_FEATURES = SSL libz NTLM NTLM_WB TLS-SRP
  395. SUPPORT_PROTOCOLS = DICT FILE FTP FTPS GOPHER HTTP HTTPS IMAP IMAPS POP3 POP3S RTSP SMTP SMTPS TELNET TFTP
  396. USE_ARES =
  397. USE_AXTLS =
  398. USE_CYASSL =
  399. USE_DARWINSSL =
  400. USE_GNUTLS =
  401. USE_GNUTLS_NETTLE =
  402. USE_LIBRTMP =
  403. USE_LIBSSH2 =
  404. USE_NGHTTP2 =
  405. USE_NSS =
  406. USE_OPENLDAP =
  407. USE_POLARSSL =
  408. USE_SCHANNEL =
  409. USE_SSLEAY = 1
  410. USE_WINDOWS_SSPI =
  411. VERSION = -
  412. VERSIONNUM = 072501
  413. ZLIB_LIBS = -lz
  414. abs_builddir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.37.1
  415. abs_srcdir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.37.1
  416. abs_top_builddir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.37.1
  417. abs_top_srcdir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.37.1
  418. ac_ct_AR =
  419. ac_ct_CC =
  420. ac_ct_DUMPBIN = link -dump
  421. am__include = include
  422. am__leading_dot = .
  423. am__quote =
  424. am__tar = $${TAR-tar} chof - "$$tardir"
  425. am__untar = $${TAR-tar} xf -
  426. bindir = ${exec_prefix}/bin
  427. build = x86_64-unknown-linux-gnu
  428. build_alias =
  429. build_cpu = x86_64
  430. build_os = linux-gnu
  431. build_vendor = unknown
  432. builddir = .
  433. datadir = ${datarootdir}
  434. datarootdir = ${prefix}/share
  435. docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
  436. dvidir = ${docdir}
  437. exec_prefix = ${prefix}
  438. host = arm-unknown-linux-gnueabihf
  439. host_alias = arm-linux-gnueabihf
  440. host_cpu = arm
  441. host_os = linux-gnueabihf
  442. host_vendor = unknown
  443. htmldir = ${docdir}
  444. includedir = ${prefix}/include
  445. infodir = ${datarootdir}/info
  446. install_sh = ${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.37.1/install-sh
  447. libdir = ${exec_prefix}/lib
  448. libexecdir = ${exec_prefix}/libexec
  449. libext = a
  450. localedir = ${datarootdir}/locale
  451. localstatedir = ${prefix}/var
  452. mandir = ${datarootdir}/man
  453. mkdir_p = $(MKDIR_P)
  454. oldincludedir = /usr/include
  455. pdfdir = ${docdir}
  456. prefix = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.37.1/release
  457. program_transform_name = s,x,x,
  458. psdir = ${docdir}
  459. sbindir = ${exec_prefix}/sbin
  460. sharedstatedir = ${prefix}/com
  461. srcdir = .
  462. subdirs =
  463. sysconfdir = ${prefix}/etc
  464. target_alias =
  465. top_build_prefix =
  466. top_builddir = .
  467. top_srcdir = .
  468. AUTOMAKE_OPTIONS = foreign
  469. ACLOCAL_AMFLAGS = -I m4
  470. CMAKE_DIST = CMakeLists.txt CMake/CMakeConfigurableFile.in \
  471. CMake/CurlCheckCSourceCompiles.cmake CMake/CurlCheckCSourceRuns.cmake \
  472. CMake/CurlTests.c CMake/FindOpenSSL.cmake CMake/FindZLIB.cmake \
  473. CMake/OtherTests.cmake CMake/Platforms/WindowsCache.cmake \
  474. CMake/Utilities.cmake include/curl/curlbuild.h.cmake
  475. VC6_LIBTMPL = projects/Windows/VC6/lib/libcurl.tmpl
  476. VC6_LIBDSP = projects/Windows/VC6/lib/libcurl.dsp
  477. VC6_LIBDSP_DEPS = $(VC6_LIBTMPL) Makefile.am lib/Makefile.inc
  478. VC6_SRCTMPL = projects/Windows/VC6/src/curlsrc.tmpl
  479. VC6_SRCDSP = projects/Windows/VC6/src/curlsrc.dsp
  480. VC6_SRCDSP_DEPS = $(VC6_SRCTMPL) Makefile.am src/Makefile.inc
  481. VC7_LIBTMPL = projects/Windows/VC7/lib/libcurl.tmpl
  482. VC7_LIBVCPROJ = projects/Windows/VC7/lib/libcurl.vcproj
  483. VC7_LIBVCPROJ_DEPS = $(VC7_LIBTMPL) Makefile.am lib/Makefile.inc
  484. VC7_SRCTMPL = projects/Windows/VC7/src/curlsrc.tmpl
  485. VC7_SRCVCPROJ = projects/Windows/VC7/src/curlsrc.vcproj
  486. VC7_SRCVCPROJ_DEPS = $(VC7_SRCTMPL) Makefile.am src/Makefile.inc
  487. VC71_LIBTMPL = projects/Windows/VC7.1/lib/libcurl.tmpl
  488. VC71_LIBVCPROJ = projects/Windows/VC7.1/lib/libcurl.vcproj
  489. VC71_LIBVCPROJ_DEPS = $(VC71_LIBTMPL) Makefile.am lib/Makefile.inc
  490. VC71_SRCTMPL = projects/Windows/VC7.1/src/curlsrc.tmpl
  491. VC71_SRCVCPROJ = projects/Windows/VC7.1/src/curlsrc.vcproj
  492. VC71_SRCVCPROJ_DEPS = $(VC71_SRCTMPL) Makefile.am src/Makefile.inc
  493. VC8_LIBTMPL = projects/Windows/VC8/lib/libcurl.tmpl
  494. VC8_LIBVCPROJ = projects/Windows/VC8/lib/libcurl.vcproj
  495. VC8_LIBVCPROJ_DEPS = $(VC8_LIBTMPL) Makefile.am lib/Makefile.inc
  496. VC8_SRCTMPL = projects/Windows/VC8/src/curlsrc.tmpl
  497. VC8_SRCVCPROJ = projects/Windows/VC8/src/curlsrc.vcproj
  498. VC8_SRCVCPROJ_DEPS = $(VC8_SRCTMPL) Makefile.am src/Makefile.inc
  499. VC9_LIBTMPL = projects/Windows/VC9/lib/libcurl.tmpl
  500. VC9_LIBVCPROJ = projects/Windows/VC9/lib/libcurl.vcproj
  501. VC9_LIBVCPROJ_DEPS = $(VC9_LIBTMPL) Makefile.am lib/Makefile.inc
  502. VC9_SRCTMPL = projects/Windows/VC9/src/curlsrc.tmpl
  503. VC9_SRCVCPROJ = projects/Windows/VC9/src/curlsrc.vcproj
  504. VC9_SRCVCPROJ_DEPS = $(VC9_SRCTMPL) Makefile.am src/Makefile.inc
  505. VC10_LIBTMPL = projects/Windows/VC10/lib/libcurl.tmpl
  506. VC10_LIBVCXPROJ = projects/Windows/VC10/lib/libcurl.vcxproj
  507. VC10_LIBVCXPROJ_DEPS = $(VC10_LIBTMPL) Makefile.am lib/Makefile.inc
  508. VC10_SRCTMPL = projects/Windows/VC10/src/curlsrc.tmpl
  509. VC10_SRCVCXPROJ = projects/Windows/VC10/src/curlsrc.vcxproj
  510. VC10_SRCVCXPROJ_DEPS = $(VC10_SRCTMPL) Makefile.am src/Makefile.inc
  511. VC11_LIBTMPL = projects/Windows/VC11/lib/libcurl.tmpl
  512. VC11_LIBVCXPROJ = projects/Windows/VC11/lib/libcurl.vcxproj
  513. VC11_LIBVCXPROJ_DEPS = $(VC11_LIBTMPL) Makefile.am lib/Makefile.inc
  514. VC11_SRCTMPL = projects/Windows/VC11/src/curlsrc.tmpl
  515. VC11_SRCVCXPROJ = projects/Windows/VC11/src/curlsrc.vcxproj
  516. VC11_SRCVCXPROJ_DEPS = $(VC11_SRCTMPL) Makefile.am src/Makefile.inc
  517. VC12_LIBTMPL = projects/Windows/VC12/lib/libcurl.tmpl
  518. VC12_LIBVCXPROJ = projects/Windows/VC12/lib/libcurl.vcxproj
  519. VC12_LIBVCXPROJ_DEPS = $(VC12_LIBTMPL) Makefile.am lib/Makefile.inc
  520. VC12_SRCTMPL = projects/Windows/VC12/src/curlsrc.tmpl
  521. VC12_SRCVCXPROJ = projects/Windows/VC12/src/curlsrc.vcxproj
  522. VC12_SRCVCXPROJ_DEPS = $(VC12_SRCTMPL) Makefile.am src/Makefile.inc
  523. VC_DIST = projects/README \
  524. projects/build-openssl.bat \
  525. projects/Windows/VC6/curl.dsw \
  526. projects/Windows/VC6/lib/libcurl.dsw $(VC6_LIBDSP) \
  527. projects/Windows/VC6/src/curlsrc.dsw $(VC6_SRCDSP) \
  528. projects/Windows/VC7/curl.sln \
  529. projects/Windows/VC7/lib/libcurl.sln $(VC7_LIBVCPROJ) \
  530. projects/Windows/VC7/src/curlsrc.sln $(VC7_SRCVCPROJ) \
  531. projects/Windows/VC7.1/curl.sln \
  532. projects/Windows/VC7.1/lib/libcurl.sln $(VC71_LIBVCPROJ) \
  533. projects/Windows/VC7.1/src/curlsrc.sln $(VC71_SRCVCPROJ) \
  534. projects/Windows/VC8/curl.sln \
  535. projects/Windows/VC8/lib/libcurl.sln $(VC8_LIBVCPROJ) \
  536. projects/Windows/VC8/src/curlsrc.sln $(VC8_SRCVCPROJ) \
  537. projects/Windows/VC9/curl.sln \
  538. projects/Windows/VC9/lib/libcurl.sln $(VC9_LIBVCPROJ) \
  539. projects/Windows/VC9/src/curlsrc.sln $(VC9_SRCVCPROJ) \
  540. projects/Windows/VC10/curl.sln \
  541. projects/Windows/VC10/lib/libcurl.sln $(VC10_LIBVCXPROJ) \
  542. projects/Windows/VC10/src/curlsrc.sln $(VC10_SRCVCXPROJ) \
  543. projects/Windows/VC11/curl.sln \
  544. projects/Windows/VC11/lib/libcurl.sln $(VC11_LIBVCXPROJ) \
  545. projects/Windows/VC11/src/curlsrc.sln $(VC11_SRCVCXPROJ) \
  546. projects/Windows/VC12/curl.sln \
  547. projects/Windows/VC12/lib/libcurl.sln $(VC12_LIBVCXPROJ) \
  548. projects/Windows/VC12/src/curlsrc.sln $(VC12_SRCVCXPROJ)
  549. WINBUILD_DIST = winbuild/BUILD.WINDOWS.txt winbuild/gen_resp_file.bat \
  550. winbuild/MakefileBuild.vc winbuild/Makefile.vc \
  551. winbuild/Makefile.msvc.names
  552. EXTRA_DIST = CHANGES COPYING maketgz Makefile.dist curl-config.in \
  553. RELEASE-NOTES buildconf libcurl.pc.in MacOSX-Framework \
  554. $(CMAKE_DIST) $(VC_DIST) $(WINBUILD_DIST) lib/libcurl.vers.in
  555. CLEANFILES = $(VC6_LIBDSP) $(VC6_SRCDSP) $(VC7_LIBVCPROJ) $(VC7_SRCVCPROJ) \
  556. $(VC71_LIBVCPROJ) $(VC71_SRCVCPROJ) $(VC8_LIBVCPROJ) $(VC8_SRCVCPROJ) \
  557. $(VC9_LIBVCPROJ) $(VC9_SRCVCPROJ) $(VC10_LIBVCXPROJ) $(VC10_SRCVCXPROJ) \
  558. $(VC11_LIBVCXPROJ) $(VC11_SRCVCXPROJ) $(VC12_LIBVCXPROJ) $(VC12_SRCVCXPROJ)
  559. bin_SCRIPTS = curl-config
  560. SUBDIRS = lib src include
  561. DIST_SUBDIRS = $(SUBDIRS) tests packages docs
  562. pkgconfigdir = $(libdir)/pkgconfig
  563. pkgconfig_DATA = libcurl.pc
  564. LIB_VTLS_CFILES = vtls/openssl.c vtls/gtls.c vtls/vtls.c vtls/nss.c \
  565. vtls/qssl.c vtls/polarssl.c vtls/polarssl_threadlock.c vtls/axtls.c \
  566. vtls/cyassl.c vtls/curl_schannel.c vtls/curl_darwinssl.c vtls/gskit.c
  567. LIB_VTLS_HFILES = vtls/qssl.h vtls/openssl.h vtls/vtls.h vtls/gtls.h \
  568. vtls/nssg.h vtls/polarssl.h vtls/polarssl_threadlock.h vtls/axtls.h \
  569. vtls/cyassl.h vtls/curl_schannel.h vtls/curl_darwinssl.h vtls/gskit.h
  570. LIB_CFILES = file.c timeval.c base64.c hostip.c progress.c formdata.c \
  571. cookie.c http.c sendf.c ftp.c url.c dict.c if2ip.c speedcheck.c \
  572. ldap.c version.c getenv.c escape.c mprintf.c telnet.c netrc.c \
  573. getinfo.c transfer.c strequal.c easy.c security.c curl_fnmatch.c \
  574. fileinfo.c ftplistparser.c wildcard.c krb5.c memdebug.c http_chunks.c \
  575. strtok.c connect.c llist.c hash.c multi.c content_encoding.c share.c \
  576. http_digest.c md4.c md5.c http_negotiate.c inet_pton.c strtoofft.c \
  577. strerror.c amigaos.c hostasyn.c hostip4.c hostip6.c hostsyn.c \
  578. inet_ntop.c parsedate.c select.c tftp.c splay.c strdup.c socks.c \
  579. ssh.c rawstr.c curl_addrinfo.c socks_gssapi.c socks_sspi.c \
  580. curl_sspi.c slist.c nonblock.c curl_memrchr.c imap.c pop3.c smtp.c \
  581. pingpong.c rtsp.c curl_threads.c warnless.c hmac.c curl_rtmp.c \
  582. openldap.c curl_gethostname.c gopher.c idn_win32.c \
  583. http_negotiate_sspi.c http_proxy.c non-ascii.c asyn-ares.c \
  584. asyn-thread.c curl_gssapi.c curl_ntlm.c curl_ntlm_wb.c \
  585. curl_ntlm_core.c curl_ntlm_msgs.c curl_sasl.c curl_multibyte.c \
  586. hostcheck.c bundles.c conncache.c pipeline.c dotdot.c x509asn1.c \
  587. http2.c curl_sasl_sspi.c
  588. LIB_HFILES = arpa_telnet.h netrc.h file.h timeval.h hostip.h progress.h \
  589. formdata.h cookie.h http.h sendf.h ftp.h url.h dict.h if2ip.h \
  590. speedcheck.h urldata.h curl_ldap.h escape.h telnet.h getinfo.h \
  591. strequal.h curl_sec.h memdebug.h http_chunks.h curl_fnmatch.h \
  592. wildcard.h fileinfo.h ftplistparser.h strtok.h connect.h llist.h \
  593. hash.h content_encoding.h share.h curl_md4.h curl_md5.h http_digest.h \
  594. http_negotiate.h inet_pton.h amigaos.h strtoofft.h strerror.h \
  595. inet_ntop.h curlx.h curl_memory.h curl_setup.h transfer.h select.h \
  596. easyif.h multiif.h parsedate.h tftp.h sockaddr.h splay.h strdup.h \
  597. socks.h ssh.h curl_base64.h rawstr.h curl_addrinfo.h curl_sspi.h \
  598. slist.h nonblock.h curl_memrchr.h imap.h pop3.h smtp.h pingpong.h \
  599. rtsp.h curl_threads.h warnless.h curl_hmac.h curl_rtmp.h \
  600. curl_gethostname.h gopher.h http_proxy.h non-ascii.h asyn.h \
  601. curl_ntlm.h curl_gssapi.h curl_ntlm_wb.h curl_ntlm_core.h \
  602. curl_ntlm_msgs.h curl_sasl.h curl_multibyte.h hostcheck.h bundles.h \
  603. conncache.h curl_setup_once.h multihandle.h setup-vms.h pipeline.h \
  604. dotdot.h x509asn1.h http2.h sigpipe.h
  605. LIB_RCFILES = libcurl.rc
  606. CSOURCES = $(LIB_CFILES) $(LIB_VTLS_CFILES)
  607. HHEADERS = $(LIB_HFILES) $(LIB_VTLS_HFILES)
  608. # libcurl has sources that provide functions named curlx_* that aren't part of
  609. # the official API, but we re-use the code here to avoid duplication.
  610. CURLX_CFILES = \
  611. ../lib/strtoofft.c \
  612. ../lib/strdup.c \
  613. ../lib/rawstr.c \
  614. ../lib/nonblock.c \
  615. ../lib/warnless.c
  616. CURLX_HFILES = \
  617. ../lib/curl_setup.h \
  618. ../lib/strtoofft.h \
  619. ../lib/strdup.h \
  620. ../lib/rawstr.h \
  621. ../lib/nonblock.h \
  622. ../lib/warnless.h
  623. CURL_CFILES = \
  624. tool_binmode.c \
  625. tool_bname.c \
  626. tool_cb_dbg.c \
  627. tool_cb_hdr.c \
  628. tool_cb_prg.c \
  629. tool_cb_rea.c \
  630. tool_cb_see.c \
  631. tool_cb_wrt.c \
  632. tool_cfgable.c \
  633. tool_convert.c \
  634. tool_dirhie.c \
  635. tool_doswin.c \
  636. tool_easysrc.c \
  637. tool_formparse.c \
  638. tool_getparam.c \
  639. tool_getpass.c \
  640. tool_help.c \
  641. tool_helpers.c \
  642. tool_homedir.c \
  643. tool_hugehelp.c \
  644. tool_libinfo.c \
  645. tool_main.c \
  646. tool_metalink.c \
  647. tool_mfiles.c \
  648. tool_msgs.c \
  649. tool_operate.c \
  650. tool_operhlp.c \
  651. tool_panykey.c \
  652. tool_paramhlp.c \
  653. tool_parsecfg.c \
  654. tool_setopt.c \
  655. tool_sleep.c \
  656. tool_urlglob.c \
  657. tool_util.c \
  658. tool_vms.c \
  659. tool_writeenv.c \
  660. tool_writeout.c \
  661. tool_xattr.c
  662. CURL_HFILES = \
  663. tool_binmode.h \
  664. tool_bname.h \
  665. tool_cb_dbg.h \
  666. tool_cb_hdr.h \
  667. tool_cb_prg.h \
  668. tool_cb_rea.h \
  669. tool_cb_see.h \
  670. tool_cb_wrt.h \
  671. tool_cfgable.h \
  672. tool_convert.h \
  673. tool_dirhie.h \
  674. tool_doswin.h \
  675. tool_easysrc.h \
  676. tool_formparse.h \
  677. tool_getparam.h \
  678. tool_getpass.h \
  679. tool_help.h \
  680. tool_helpers.h \
  681. tool_homedir.h \
  682. tool_hugehelp.h \
  683. tool_libinfo.h \
  684. tool_main.h \
  685. tool_metalink.h \
  686. tool_mfiles.h \
  687. tool_msgs.h \
  688. tool_operate.h \
  689. tool_operhlp.h \
  690. tool_panykey.h \
  691. tool_paramhlp.h \
  692. tool_parsecfg.h \
  693. tool_sdecls.h \
  694. tool_setopt.h \
  695. tool_setup.h \
  696. tool_sleep.h \
  697. tool_urlglob.h \
  698. tool_util.h \
  699. tool_version.h \
  700. tool_vms.h \
  701. tool_writeenv.h \
  702. tool_writeout.h \
  703. tool_xattr.h
  704. CURL_RCFILES = curl.rc
  705. curl_SOURCES = $(CURL_CFILES) $(CURLX_CFILES) $(CURL_HFILES)
  706. all: all-recursive
  707. .SUFFIXES:
  708. am--refresh: Makefile
  709. @:
  710. $(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(srcdir)/lib/Makefile.inc $(srcdir)/src/Makefile.inc $(am__configure_deps)
  711. @for dep in $?; do \
  712. case '$(am__configure_deps)' in \
  713. *$$dep*) \
  714. echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
  715. $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
  716. && exit 0; \
  717. exit 1;; \
  718. esac; \
  719. done; \
  720. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
  721. $(am__cd) $(top_srcdir) && \
  722. $(AUTOMAKE) --foreign Makefile
  723. .PRECIOUS: Makefile
  724. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  725. @case '$?' in \
  726. *config.status*) \
  727. echo ' $(SHELL) ./config.status'; \
  728. $(SHELL) ./config.status;; \
  729. *) \
  730. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  731. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  732. esac;
  733. $(srcdir)/lib/Makefile.inc $(srcdir)/src/Makefile.inc:
  734. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  735. $(SHELL) ./config.status --recheck
  736. $(top_srcdir)/configure: # $(am__configure_deps)
  737. $(am__cd) $(srcdir) && $(AUTOCONF)
  738. $(ACLOCAL_M4): # $(am__aclocal_m4_deps)
  739. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  740. $(am__aclocal_m4_deps):
  741. curl-config: $(top_builddir)/config.status $(srcdir)/curl-config.in
  742. cd $(top_builddir) && $(SHELL) ./config.status $@
  743. libcurl.pc: $(top_builddir)/config.status $(srcdir)/libcurl.pc.in
  744. cd $(top_builddir) && $(SHELL) ./config.status $@
  745. install-binSCRIPTS: $(bin_SCRIPTS)
  746. @$(NORMAL_INSTALL)
  747. @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \
  748. if test -n "$$list"; then \
  749. echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
  750. $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
  751. fi; \
  752. for p in $$list; do \
  753. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  754. if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
  755. done | \
  756. sed -e 'p;s,.*/,,;n' \
  757. -e 'h;s|.*|.|' \
  758. -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
  759. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
  760. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  761. if ($$2 == $$4) { files[d] = files[d] " " $$1; \
  762. if (++n[d] == $(am__install_max)) { \
  763. print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
  764. else { print "f", d "/" $$4, $$1 } } \
  765. END { for (d in files) print "f", d, files[d] }' | \
  766. while read type dir files; do \
  767. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  768. test -z "$$files" || { \
  769. echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \
  770. $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
  771. } \
  772. ; done
  773. uninstall-binSCRIPTS:
  774. @$(NORMAL_UNINSTALL)
  775. @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \
  776. files=`for p in $$list; do echo "$$p"; done | \
  777. sed -e 's,.*/,,;$(transform)'`; \
  778. dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir)
  779. mostlyclean-libtool:
  780. -rm -f *.lo
  781. clean-libtool:
  782. -rm -rf .libs _libs
  783. distclean-libtool:
  784. -rm -f libtool config.lt
  785. install-pkgconfigDATA: $(pkgconfig_DATA)
  786. @$(NORMAL_INSTALL)
  787. @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
  788. if test -n "$$list"; then \
  789. echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
  790. $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
  791. fi; \
  792. for p in $$list; do \
  793. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  794. echo "$$d$$p"; \
  795. done | $(am__base_list) | \
  796. while read files; do \
  797. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
  798. $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
  799. done
  800. uninstall-pkgconfigDATA:
  801. @$(NORMAL_UNINSTALL)
  802. @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
  803. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  804. dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
  805. # This directory's subdirectories are mostly independent; you can cd
  806. # into them and run 'make' without going through this Makefile.
  807. # To change the values of 'make' variables: instead of editing Makefiles,
  808. # (1) if the variable is set in 'config.status', edit 'config.status'
  809. # (which will cause the Makefiles to be regenerated when you run 'make');
  810. # (2) otherwise, pass the desired values on the 'make' command line.
  811. $(am__recursive_targets):
  812. @fail=; \
  813. if $(am__make_keepgoing); then \
  814. failcom='fail=yes'; \
  815. else \
  816. failcom='exit 1'; \
  817. fi; \
  818. dot_seen=no; \
  819. target=`echo $@ | sed s/-recursive//`; \
  820. case "$@" in \
  821. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  822. *) list='$(SUBDIRS)' ;; \
  823. esac; \
  824. for subdir in $$list; do \
  825. echo "Making $$target in $$subdir"; \
  826. if test "$$subdir" = "."; then \
  827. dot_seen=yes; \
  828. local_target="$$target-am"; \
  829. else \
  830. local_target="$$target"; \
  831. fi; \
  832. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  833. || eval $$failcom; \
  834. done; \
  835. if test "$$dot_seen" = "no"; then \
  836. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  837. fi; test -z "$$fail"
  838. ID: $(am__tagged_files)
  839. $(am__define_uniq_tagged_files); mkid -fID $$unique
  840. tags: tags-recursive
  841. TAGS: tags
  842. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  843. set x; \
  844. here=`pwd`; \
  845. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  846. include_option=--etags-include; \
  847. empty_fix=.; \
  848. else \
  849. include_option=--include; \
  850. empty_fix=; \
  851. fi; \
  852. list='$(SUBDIRS)'; for subdir in $$list; do \
  853. if test "$$subdir" = .; then :; else \
  854. test ! -f $$subdir/TAGS || \
  855. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  856. fi; \
  857. done; \
  858. $(am__define_uniq_tagged_files); \
  859. shift; \
  860. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  861. test -n "$$unique" || unique=$$empty_fix; \
  862. if test $$# -gt 0; then \
  863. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  864. "$$@" $$unique; \
  865. else \
  866. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  867. $$unique; \
  868. fi; \
  869. fi
  870. ctags: ctags-recursive
  871. CTAGS: ctags
  872. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  873. $(am__define_uniq_tagged_files); \
  874. test -z "$(CTAGS_ARGS)$$unique" \
  875. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  876. $$unique
  877. GTAGS:
  878. here=`$(am__cd) $(top_builddir) && pwd` \
  879. && $(am__cd) $(top_srcdir) \
  880. && gtags -i $(GTAGS_ARGS) "$$here"
  881. cscope: cscope.files
  882. test ! -s cscope.files \
  883. || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
  884. clean-cscope:
  885. -rm -f cscope.files
  886. cscope.files: clean-cscope cscopelist
  887. cscopelist: cscopelist-recursive
  888. cscopelist-am: $(am__tagged_files)
  889. list='$(am__tagged_files)'; \
  890. case "$(srcdir)" in \
  891. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  892. *) sdir=$(subdir)/$(srcdir) ;; \
  893. esac; \
  894. for i in $$list; do \
  895. if test -f "$$i"; then \
  896. echo "$(subdir)/$$i"; \
  897. else \
  898. echo "$$sdir/$$i"; \
  899. fi; \
  900. done >> $(top_builddir)/cscope.files
  901. distclean-tags:
  902. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  903. -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
  904. distdir: $(DISTFILES)
  905. $(am__remove_distdir)
  906. test -d "$(distdir)" || mkdir "$(distdir)"
  907. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  908. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  909. list='$(DISTFILES)'; \
  910. dist_files=`for file in $$list; do echo $$file; done | \
  911. sed -e "s|^$$srcdirstrip/||;t" \
  912. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  913. case $$dist_files in \
  914. */*) $(MKDIR_P) `echo "$$dist_files" | \
  915. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  916. sort -u` ;; \
  917. esac; \
  918. for file in $$dist_files; do \
  919. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  920. if test -d $$d/$$file; then \
  921. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  922. if test -d "$(distdir)/$$file"; then \
  923. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  924. fi; \
  925. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  926. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  927. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  928. fi; \
  929. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  930. else \
  931. test -f "$(distdir)/$$file" \
  932. || cp -p $$d/$$file "$(distdir)/$$file" \
  933. || exit 1; \
  934. fi; \
  935. done
  936. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  937. if test "$$subdir" = .; then :; else \
  938. $(am__make_dryrun) \
  939. || test -d "$(distdir)/$$subdir" \
  940. || $(MKDIR_P) "$(distdir)/$$subdir" \
  941. || exit 1; \
  942. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  943. $(am__relativize); \
  944. new_distdir=$$reldir; \
  945. dir1=$$subdir; dir2="$(top_distdir)"; \
  946. $(am__relativize); \
  947. new_top_distdir=$$reldir; \
  948. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  949. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  950. ($(am__cd) $$subdir && \
  951. $(MAKE) $(AM_MAKEFLAGS) \
  952. top_distdir="$$new_top_distdir" \
  953. distdir="$$new_distdir" \
  954. am__remove_distdir=: \
  955. am__skip_length_check=: \
  956. am__skip_mode_fix=: \
  957. distdir) \
  958. || exit 1; \
  959. fi; \
  960. done
  961. $(MAKE) $(AM_MAKEFLAGS) \
  962. top_distdir="$(top_distdir)" distdir="$(distdir)" \
  963. dist-hook
  964. -test -n "$(am__skip_mode_fix)" \
  965. || find "$(distdir)" -type d ! -perm -755 \
  966. -exec chmod u+rwx,go+rx {} \; -o \
  967. ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  968. ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  969. ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
  970. || chmod -R a+r "$(distdir)"
  971. dist-gzip: distdir
  972. tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  973. $(am__post_remove_distdir)
  974. dist-bzip2: distdir
  975. tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
  976. $(am__post_remove_distdir)
  977. dist-lzip: distdir
  978. tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
  979. $(am__post_remove_distdir)
  980. dist-xz: distdir
  981. tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
  982. $(am__post_remove_distdir)
  983. dist-tarZ: distdir
  984. @echo WARNING: "Support for shar distribution archives is" \
  985. "deprecated." >&2
  986. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  987. tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
  988. $(am__post_remove_distdir)
  989. dist-shar: distdir
  990. @echo WARNING: "Support for distribution archives compressed with" \
  991. "legacy program 'compress' is deprecated." >&2
  992. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  993. shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
  994. $(am__post_remove_distdir)
  995. dist-zip: distdir
  996. -rm -f $(distdir).zip
  997. zip -rq $(distdir).zip $(distdir)
  998. $(am__post_remove_distdir)
  999. dist dist-all:
  1000. $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
  1001. $(am__post_remove_distdir)
  1002. # This target untars the dist file and tries a VPATH configuration. Then
  1003. # it guarantees that the distribution is self-contained by making another
  1004. # tarfile.
  1005. distcheck: dist
  1006. case '$(DIST_ARCHIVES)' in \
  1007. *.tar.gz*) \
  1008. GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
  1009. *.tar.bz2*) \
  1010. bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
  1011. *.tar.lz*) \
  1012. lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
  1013. *.tar.xz*) \
  1014. xz -dc $(distdir).tar.xz | $(am__untar) ;;\
  1015. *.tar.Z*) \
  1016. uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
  1017. *.shar.gz*) \
  1018. GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
  1019. *.zip*) \
  1020. unzip $(distdir).zip ;;\
  1021. esac
  1022. chmod -R a-w $(distdir)
  1023. chmod u+w $(distdir)
  1024. mkdir $(distdir)/_build $(distdir)/_inst
  1025. chmod a-w $(distdir)
  1026. test -d $(distdir)/_build || exit 0; \
  1027. dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
  1028. && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
  1029. && am__cwd=`pwd` \
  1030. && $(am__cd) $(distdir)/_build \
  1031. && ../configure \
  1032. $(AM_DISTCHECK_CONFIGURE_FLAGS) \
  1033. $(DISTCHECK_CONFIGURE_FLAGS) \
  1034. --srcdir=.. --prefix="$$dc_install_base" \
  1035. && $(MAKE) $(AM_MAKEFLAGS) \
  1036. && $(MAKE) $(AM_MAKEFLAGS) dvi \
  1037. && $(MAKE) $(AM_MAKEFLAGS) check \
  1038. && $(MAKE) $(AM_MAKEFLAGS) install \
  1039. && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  1040. && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  1041. && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
  1042. distuninstallcheck \
  1043. && chmod -R a-w "$$dc_install_base" \
  1044. && ({ \
  1045. (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
  1046. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
  1047. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
  1048. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
  1049. distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
  1050. } || { rm -rf "$$dc_destdir"; exit 1; }) \
  1051. && rm -rf "$$dc_destdir" \
  1052. && $(MAKE) $(AM_MAKEFLAGS) dist \
  1053. && rm -rf $(DIST_ARCHIVES) \
  1054. && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
  1055. && cd "$$am__cwd" \
  1056. || exit 1
  1057. $(am__post_remove_distdir)
  1058. @(echo "$(distdir) archives ready for distribution: "; \
  1059. list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
  1060. sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
  1061. distuninstallcheck:
  1062. @test -n '$(distuninstallcheck_dir)' || { \
  1063. echo 'ERROR: trying to run $@ with an empty' \
  1064. '$$(distuninstallcheck_dir)' >&2; \
  1065. exit 1; \
  1066. }; \
  1067. $(am__cd) '$(distuninstallcheck_dir)' || { \
  1068. echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
  1069. exit 1; \
  1070. }; \
  1071. test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
  1072. || { echo "ERROR: files left after uninstall:" ; \
  1073. if test -n "$(DESTDIR)"; then \
  1074. echo " (check DESTDIR support)"; \
  1075. fi ; \
  1076. $(distuninstallcheck_listfiles) ; \
  1077. exit 1; } >&2
  1078. distcleancheck: distclean
  1079. @if test '$(srcdir)' = . ; then \
  1080. echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  1081. exit 1 ; \
  1082. fi
  1083. @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  1084. || { echo "ERROR: files left in build directory after distclean:" ; \
  1085. $(distcleancheck_listfiles) ; \
  1086. exit 1; } >&2
  1087. check-am: all-am
  1088. check: check-recursive
  1089. all-am: Makefile $(SCRIPTS) $(DATA)
  1090. installdirs: installdirs-recursive
  1091. installdirs-am:
  1092. for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgconfigdir)"; do \
  1093. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  1094. done
  1095. install: install-recursive
  1096. install-exec: install-exec-recursive
  1097. install-data: install-data-recursive
  1098. uninstall: uninstall-recursive
  1099. install-am: all-am
  1100. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  1101. installcheck: installcheck-recursive
  1102. install-strip:
  1103. if test -z '$(STRIP)'; then \
  1104. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  1105. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  1106. install; \
  1107. else \
  1108. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  1109. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  1110. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  1111. fi
  1112. mostlyclean-generic:
  1113. clean-generic:
  1114. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  1115. distclean-generic:
  1116. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  1117. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  1118. maintainer-clean-generic:
  1119. @echo "This command is intended for maintainers to use"
  1120. @echo "it deletes files that may require special tools to rebuild."
  1121. clean: clean-recursive
  1122. clean-am: clean-generic clean-libtool clean-local mostlyclean-am
  1123. distclean: distclean-recursive
  1124. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  1125. -rm -f Makefile
  1126. distclean-am: clean-am distclean-generic distclean-libtool \
  1127. distclean-tags
  1128. dvi: dvi-recursive
  1129. dvi-am:
  1130. html-am:
  1131. info: info-recursive
  1132. info-am:
  1133. install-data-am: install-pkgconfigDATA
  1134. @$(NORMAL_INSTALL)
  1135. $(MAKE) $(AM_MAKEFLAGS) install-data-hook
  1136. install-dvi: install-dvi-recursive
  1137. install-dvi-am:
  1138. install-exec-am: install-binSCRIPTS
  1139. install-html: install-html-recursive
  1140. install-html-am:
  1141. install-info: install-info-recursive
  1142. install-info-am:
  1143. install-man:
  1144. install-pdf: install-pdf-recursive
  1145. install-pdf-am:
  1146. install-ps: install-ps-recursive
  1147. install-ps-am:
  1148. installcheck-am:
  1149. maintainer-clean: maintainer-clean-recursive
  1150. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  1151. -rm -rf $(top_srcdir)/autom4te.cache
  1152. -rm -f Makefile
  1153. maintainer-clean-am: distclean-am maintainer-clean-generic
  1154. mostlyclean: mostlyclean-recursive
  1155. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  1156. pdf-am:
  1157. ps: ps-recursive
  1158. ps-am:
  1159. uninstall-am: uninstall-binSCRIPTS uninstall-pkgconfigDATA
  1160. @$(NORMAL_INSTALL)
  1161. $(MAKE) $(AM_MAKEFLAGS) uninstall-hook
  1162. .MAKE: $(am__recursive_targets) install-am install-data-am \
  1163. install-strip uninstall-am
  1164. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
  1165. am--refresh check check-am clean clean-cscope clean-generic \
  1166. clean-libtool clean-local cscope cscopelist-am ctags ctags-am \
  1167. dist dist-all dist-bzip2 dist-gzip dist-hook dist-lzip \
  1168. dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \
  1169. distclean-generic distclean-libtool distclean-tags \
  1170. distcleancheck distdir distuninstallcheck dvi dvi-am html \
  1171. html-am info info-am install install-am install-binSCRIPTS \
  1172. install-data install-data-am install-data-hook install-dvi \
  1173. install-dvi-am install-exec install-exec-am install-html \
  1174. install-html-am install-info install-info-am install-man \
  1175. install-pdf install-pdf-am install-pkgconfigDATA install-ps \
  1176. install-ps-am install-strip installcheck installcheck-am \
  1177. installdirs installdirs-am maintainer-clean \
  1178. maintainer-clean-generic mostlyclean mostlyclean-generic \
  1179. mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
  1180. uninstall-am uninstall-binSCRIPTS uninstall-hook \
  1181. uninstall-pkgconfigDATA
  1182. # List of files required to generate VC IDE .dsp, .vcproj and .vcxproj files
  1183. dist-hook:
  1184. rm -rf $(top_builddir)/tests/log
  1185. find $(distdir) -name "*.dist" -exec rm {} \;
  1186. (distit=`find $(srcdir) -name "*.dist" | grep -v ./ares/`; \
  1187. for file in $$distit; do \
  1188. strip=`echo $$file | sed -e s/^$(srcdir)// -e s/\.dist//`; \
  1189. cp $$file $(distdir)$$strip; \
  1190. done)
  1191. html:
  1192. cd docs; make html
  1193. pdf:
  1194. cd docs; make pdf
  1195. check: test examples
  1196. test-full: test
  1197. test-torture: test
  1198. test:
  1199. @echo "NOTICE: we can't run the tests when cross-compiling!"
  1200. #test:
  1201. # @(cd tests; $(MAKE) all quiet-test)
  1202. #test-full:
  1203. # @(cd tests; $(MAKE) all full-test)
  1204. #test-torture:
  1205. # @(cd tests; $(MAKE) all torture-test)
  1206. #test-am:
  1207. # @(cd tests; $(MAKE) all am-test)
  1208. examples:
  1209. @(cd docs/examples; $(MAKE) check)
  1210. # This is a hook to have 'make clean' also clean up the docs and the tests
  1211. # dir. The extra check for the Makefiles being present is necessary because
  1212. # 'make distcheck' will make clean first in these directories _before_ it runs
  1213. # this hook.
  1214. clean-local:
  1215. @(if test -f tests/Makefile; then cd tests; $(MAKE) clean; fi)
  1216. @(if test -f docs/Makefile; then cd docs; $(MAKE) clean; fi)
  1217. #
  1218. # Build source and binary rpms. For rpm-3.0 and above, the ~/.rpmmacros
  1219. # must contain the following line:
  1220. # %_topdir /home/loic/local/rpm
  1221. # and that /home/loic/local/rpm contains the directory SOURCES, BUILD etc.
  1222. #
  1223. # cd /home/loic/local/rpm ; mkdir -p SOURCES BUILD RPMS/i386 SPECS SRPMS
  1224. #
  1225. # If additional configure flags are needed to build the package, add the
  1226. # following in ~/.rpmmacros
  1227. # %configure CFLAGS="%{optflags}" ./configure %{_target_platform} --prefix=%{_prefix} ${AM_CONFIGFLAGS}
  1228. # and run make rpm in the following way:
  1229. # AM_CONFIGFLAGS='--with-uri=/home/users/loic/local/RedHat-6.2' make rpm
  1230. #
  1231. rpms:
  1232. $(MAKE) RPMDIST=curl rpm
  1233. $(MAKE) RPMDIST=curl-ssl rpm
  1234. rpm:
  1235. RPM_TOPDIR=`rpm --showrc | $(PERL) -n -e 'print if(s/.*_topdir\s+(.*)/$$1/)'` ; \
  1236. cp $(srcdir)/packages/Linux/RPM/$(RPMDIST).spec $$RPM_TOPDIR/SPECS ; \
  1237. cp $(PACKAGE)-$(VERSION).tar.gz $$RPM_TOPDIR/SOURCES ; \
  1238. rpm -ba --clean --rmsource $$RPM_TOPDIR/SPECS/$(RPMDIST).spec ; \
  1239. mv $$RPM_TOPDIR/RPMS/i386/$(RPMDIST)-*.rpm . ; \
  1240. mv $$RPM_TOPDIR/SRPMS/$(RPMDIST)-*.src.rpm .
  1241. #
  1242. # Build a Solaris pkgadd format file
  1243. # run 'make pkgadd' once you've done './configure' and 'make' to make a Solaris pkgadd format
  1244. # file (which ends up back in this directory).
  1245. # The pkgadd file is in 'pkgtrans' format, so to install on Solaris, do
  1246. # pkgadd -d ./HAXXcurl-*
  1247. #
  1248. # gak - libtool requires an absoulte directory, hence the pwd below...
  1249. pkgadd:
  1250. umask 022 ; \
  1251. make install DESTDIR=`/bin/pwd`/packages/Solaris/root ; \
  1252. cat COPYING > $(srcdir)/packages/Solaris/copyright ; \
  1253. cd $(srcdir)/packages/Solaris && $(MAKE) package
  1254. #
  1255. # Build a cygwin binary tarball installation file
  1256. # resulting .tar.bz2 file will end up at packages/Win32/cygwin
  1257. cygwinbin:
  1258. $(MAKE) -C packages/Win32/cygwin cygwinbin
  1259. # We extend the standard install with a custom hook:
  1260. install-data-hook:
  1261. cd include && $(MAKE) install
  1262. cd docs && $(MAKE) install
  1263. # We extend the standard uninstall with a custom hook:
  1264. uninstall-hook:
  1265. cd include && $(MAKE) uninstall
  1266. cd docs && $(MAKE) uninstall
  1267. ca-bundle: lib/mk-ca-bundle.pl
  1268. @echo "generating a fresh ca-bundle.crt"
  1269. @perl $< -b -l -u lib/ca-bundle.crt
  1270. ca-firefox: lib/firefox-db2pem.sh
  1271. @echo "generating a fresh ca-bundle.crt"
  1272. ./lib/firefox-db2pem.sh lib/ca-bundle.crt
  1273. checksrc:
  1274. cd lib && $(MAKE) checksrc
  1275. cd src && $(MAKE) checksrc
  1276. .PHONY: vc-ide
  1277. vc-ide: $(VC6_LIBDSP_DEPS) $(VC6_SRCDSP_DEPS) $(VC7_LIBVCPROJ_DEPS) \
  1278. $(VC7_SRCVCPROJ_DEPS) $(VC71_LIBVCPROJ_DEPS) $(VC71_SRCVCPROJ_DEPS) \
  1279. $(VC8_LIBVCPROJ_DEPS) $(VC8_SRCVCPROJ_DEPS) $(VC9_LIBVCPROJ_DEPS) \
  1280. $(VC9_SRCVCPROJ_DEPS) $(VC10_LIBVCXPROJ_DEPS) $(VC10_SRCVCXPROJ_DEPS) \
  1281. $(VC11_LIBVCXPROJ_DEPS) $(VC11_SRCVCXPROJ_DEPS) $(VC12_LIBVCXPROJ_DEPS) \
  1282. $(VC12_SRCVCXPROJ_DEPS)
  1283. @(win32_lib_srcs='$(LIB_CFILES)'; \
  1284. win32_lib_hdrs='$(LIB_HFILES) config-win32.h'; \
  1285. win32_lib_rc='$(LIB_RCFILES)'; \
  1286. win32_lib_vtls_srcs='$(LIB_VTLS_CFILES)'; \
  1287. win32_lib_vtls_hdrs='$(LIB_VTLS_HFILES)'; \
  1288. win32_src_srcs='$(CURL_CFILES)'; \
  1289. win32_src_hdrs='$(CURL_HFILES)'; \
  1290. win32_src_rc='$(CURL_RCFILES)'; \
  1291. win32_src_x_srcs='$(CURLX_CFILES)'; \
  1292. win32_src_x_hdrs='$(CURLX_HFILES) ../lib/config-win32.h'; \
  1293. \
  1294. sorted_lib_srcs=`for file in $$win32_lib_srcs; do echo $$file; done | sort`; \
  1295. sorted_lib_hdrs=`for file in $$win32_lib_hdrs; do echo $$file; done | sort`; \
  1296. sorted_lib_vtls_srcs=`for file in $$win32_lib_vtls_srcs; do echo $$file; done | sort`; \
  1297. sorted_lib_vtls_hdrs=`for file in $$win32_lib_vtls_hdrs; do echo $$file; done | sort`; \
  1298. sorted_src_srcs=`for file in $$win32_src_srcs; do echo $$file; done | sort`; \
  1299. sorted_src_hdrs=`for file in $$win32_src_hdrs; do echo $$file; done | sort`; \
  1300. sorted_src_x_srcs=`for file in $$win32_src_x_srcs; do echo $$file; done | sort`; \
  1301. sorted_src_x_hdrs=`for file in $$win32_src_x_hdrs; do echo $$file; done | sort`; \
  1302. \
  1303. awk_code='\
  1304. function gen_element(type, dir, file)\
  1305. {\
  1306. sub(/vtls\//, "", file);\
  1307. \
  1308. spaces=" ";\
  1309. if(dir == "lib\\vtls")\
  1310. tabs=" ";\
  1311. else\
  1312. tabs=" ";\
  1313. \
  1314. if(type == "dsp") {\
  1315. printf("# Begin Source File\r\n");\
  1316. printf("\r\n");\
  1317. printf("SOURCE=..\\..\\..\\..\\%s\\%s\r\n", dir, file);\
  1318. printf("# End Source File\r\n");\
  1319. }\
  1320. else if(type == "vcproj1") {\
  1321. printf("%s<File\r\n", tabs);\
  1322. printf("%s RelativePath=\"..\\..\\..\\..\\%s\\%s\">\r\n",\
  1323. tabs, dir, file);\
  1324. printf("%s</File>\r\n", tabs);\
  1325. }\
  1326. else if(type == "vcproj2") {\
  1327. printf("%s<File\r\n", tabs);\
  1328. printf("%s RelativePath=\"..\\..\\..\\..\\%s\\%s\"\r\n",\
  1329. tabs, dir, file);\
  1330. printf("%s>\r\n", tabs);\
  1331. printf("%s</File>\r\n", tabs);\
  1332. }\
  1333. else if(type == "vcxproj") {\
  1334. i = index(file, ".");\
  1335. ext = substr(file, i == 0 ? 0 : i + 1);\
  1336. \
  1337. if(ext == "c")\
  1338. printf("%s<ClCompile Include=\"..\\..\\..\\..\\%s\\%s\" />\r\n",\
  1339. spaces, dir, file);\
  1340. else if(ext == "h")\
  1341. printf("%s<ClInclude Include=\"..\\..\\..\\..\\%s\\%s\" />\r\n",\
  1342. spaces, dir, file);\
  1343. else if(ext == "rc")\
  1344. printf("%s<ResourceCompile Include=\"..\\..\\..\\..\\%s\\%s\" />\r\n",\
  1345. spaces, dir, file);\
  1346. }\
  1347. }\
  1348. \
  1349. {\
  1350. \
  1351. if($$0 == "CURL_LIB_C_FILES") {\
  1352. split(lib_srcs, arr);\
  1353. for(val in arr) gen_element(proj_type, "lib", arr[val]);\
  1354. }\
  1355. else if($$0 == "CURL_LIB_H_FILES") {\
  1356. split(lib_hdrs, arr);\
  1357. for(val in arr) gen_element(proj_type, "lib", arr[val]);\
  1358. }\
  1359. else if($$0 == "CURL_LIB_RC_FILES") {\
  1360. split(lib_rc, arr);\
  1361. for(val in arr) gen_element(proj_type, "lib", arr[val]);\
  1362. }\
  1363. else if($$0 == "CURL_LIB_VTLS_C_FILES") {\
  1364. split(lib_vtls_srcs, arr);\
  1365. for(val in arr) gen_element(proj_type, "lib\\vtls", arr[val]);\
  1366. }\
  1367. else if($$0 == "CURL_LIB_VTLS_H_FILES") {\
  1368. split(lib_vtls_hdrs, arr);\
  1369. for(val in arr) gen_element(proj_type, "lib\\vtls", arr[val]);\
  1370. }\
  1371. else if($$0 == "CURL_SRC_C_FILES") {\
  1372. split(src_srcs, arr);\
  1373. for(val in arr) gen_element(proj_type, "src", arr[val]);\
  1374. }\
  1375. else if($$0 == "CURL_SRC_H_FILES") {\
  1376. split(src_hdrs, arr);\
  1377. for(val in arr) gen_element(proj_type, "src", arr[val]);\
  1378. }\
  1379. else if($$0 == "CURL_SRC_RC_FILES") {\
  1380. split(src_rc, arr);\
  1381. for(val in arr) gen_element(proj_type, "src", arr[val]);\
  1382. }\
  1383. else if($$0 == "CURL_SRC_X_C_FILES") {\
  1384. split(src_x_srcs, arr);\
  1385. for(val in arr) {\
  1386. sub(/..\/lib\//, "", arr[val]);\
  1387. gen_element(proj_type, "lib", arr[val]);\
  1388. }\
  1389. }\
  1390. else if($$0 == "CURL_SRC_X_H_FILES") {\
  1391. split(src_x_hdrs, arr);\
  1392. for(val in arr) {\
  1393. sub(/..\/lib\//, "", arr[val]);\
  1394. gen_element(proj_type, "lib", arr[val]);\
  1395. }\
  1396. }\
  1397. else\
  1398. printf("%s\r\n", $$0);\
  1399. }';\
  1400. \
  1401. echo "generating '$(VC6_LIBDSP)'"; \
  1402. awk -v proj_type=dsp \
  1403. -v lib_srcs="$$sorted_lib_srcs" \
  1404. -v lib_hdrs="$$sorted_lib_hdrs" \
  1405. -v lib_rc="$$win32_lib_rc" \
  1406. -v lib_vtls_srcs="$$sorted_lib_vtls_srcs" \
  1407. -v lib_vtls_hdrs="$$sorted_lib_vtls_hdrs" \
  1408. "$$awk_code" $(srcdir)/$(VC6_LIBTMPL) > $(VC6_LIBDSP) || { exit 1; }; \
  1409. \
  1410. echo "generating '$(VC6_SRCDSP)'"; \
  1411. awk -v proj_type=dsp \
  1412. -v src_srcs="$$sorted_src_srcs" \
  1413. -v src_hdrs="$$sorted_src_hdrs" \
  1414. -v src_rc="$$win32_src_rc" \
  1415. -v src_x_srcs="$$sorted_src_x_srcs" \
  1416. -v src_x_hdrs="$$sorted_src_x_hdrs" \
  1417. "$$awk_code" $(srcdir)/$(VC6_SRCTMPL) > $(VC6_SRCDSP) || { exit 1; }; \
  1418. \
  1419. echo "generating '$(VC7_LIBVCPROJ)'"; \
  1420. awk -v proj_type=vcproj1 \
  1421. -v lib_srcs="$$sorted_lib_srcs" \
  1422. -v lib_hdrs="$$sorted_lib_hdrs" \
  1423. -v lib_rc="$$win32_lib_rc" \
  1424. -v lib_vtls_srcs="$$sorted_lib_vtls_srcs" \
  1425. -v lib_vtls_hdrs="$$sorted_lib_vtls_hdrs" \
  1426. "$$awk_code" $(srcdir)/$(VC7_LIBTMPL) > $(VC7_LIBVCPROJ) || { exit 1; }; \
  1427. \
  1428. echo "generating '$(VC7_SRCVCPROJ)'"; \
  1429. awk -v proj_type=vcproj1 \
  1430. -v src_srcs="$$sorted_src_srcs" \
  1431. -v src_hdrs="$$sorted_src_hdrs" \
  1432. -v src_rc="$$win32_src_rc" \
  1433. -v src_x_srcs="$$sorted_src_x_srcs" \
  1434. -v src_x_hdrs="$$sorted_src_x_hdrs" \
  1435. "$$awk_code" $(srcdir)/$(VC7_SRCTMPL) > $(VC7_SRCVCPROJ) || { exit 1; }; \
  1436. \
  1437. echo "generating '$(VC71_LIBVCPROJ)'"; \
  1438. awk -v proj_type=vcproj1 \
  1439. -v lib_srcs="$$sorted_lib_srcs" \
  1440. -v lib_hdrs="$$sorted_lib_hdrs" \
  1441. -v lib_rc="$$win32_lib_rc" \
  1442. -v lib_vtls_srcs="$$sorted_lib_vtls_srcs" \
  1443. -v lib_vtls_hdrs="$$sorted_lib_vtls_hdrs" \
  1444. "$$awk_code" $(srcdir)/$(VC71_LIBTMPL) > $(VC71_LIBVCPROJ) || { exit 1; }; \
  1445. \
  1446. echo "generating '$(VC71_SRCVCPROJ)'"; \
  1447. awk -v proj_type=vcproj1 \
  1448. -v src_srcs="$$sorted_src_srcs" \
  1449. -v src_hdrs="$$sorted_src_hdrs" \
  1450. -v src_rc="$$win32_src_rc" \
  1451. -v src_x_srcs="$$sorted_src_x_srcs" \
  1452. -v src_x_hdrs="$$sorted_src_x_hdrs" \
  1453. "$$awk_code" $(srcdir)/$(VC71_SRCTMPL) > $(VC71_SRCVCPROJ) || { exit 1; }; \
  1454. \
  1455. echo "generating '$(VC8_LIBVCPROJ)'"; \
  1456. awk -v proj_type=vcproj2 \
  1457. -v lib_srcs="$$sorted_lib_srcs" \
  1458. -v lib_hdrs="$$sorted_lib_hdrs" \
  1459. -v lib_rc="$$win32_lib_rc" \
  1460. -v lib_vtls_srcs="$$sorted_lib_vtls_srcs" \
  1461. -v lib_vtls_hdrs="$$sorted_lib_vtls_hdrs" \
  1462. "$$awk_code" $(srcdir)/$(VC8_LIBTMPL) > $(VC8_LIBVCPROJ) || { exit 1; }; \
  1463. \
  1464. echo "generating '$(VC8_SRCVCPROJ)'"; \
  1465. awk -v proj_type=vcproj2 \
  1466. -v src_srcs="$$sorted_src_srcs" \
  1467. -v src_hdrs="$$sorted_src_hdrs" \
  1468. -v src_rc="$$win32_src_rc" \
  1469. -v src_x_srcs="$$sorted_src_x_srcs" \
  1470. -v src_x_hdrs="$$sorted_src_x_hdrs" \
  1471. "$$awk_code" $(srcdir)/$(VC8_SRCTMPL) > $(VC8_SRCVCPROJ) || { exit 1; }; \
  1472. \
  1473. echo "generating '$(VC9_LIBVCPROJ)'"; \
  1474. awk -v proj_type=vcproj2 \
  1475. -v lib_srcs="$$sorted_lib_srcs" \
  1476. -v lib_hdrs="$$sorted_lib_hdrs" \
  1477. -v lib_rc="$$win32_lib_rc" \
  1478. -v lib_vtls_srcs="$$sorted_lib_vtls_srcs" \
  1479. -v lib_vtls_hdrs="$$sorted_lib_vtls_hdrs" \
  1480. "$$awk_code" $(srcdir)/$(VC9_LIBTMPL) > $(VC9_LIBVCPROJ) || { exit 1; }; \
  1481. \
  1482. echo "generating '$(VC9_SRCVCPROJ)'"; \
  1483. awk -v proj_type=vcproj2 \
  1484. -v src_srcs="$$sorted_src_srcs" \
  1485. -v src_hdrs="$$sorted_src_hdrs" \
  1486. -v src_rc="$$win32_src_rc" \
  1487. -v src_x_srcs="$$sorted_src_x_srcs" \
  1488. -v src_x_hdrs="$$sorted_src_x_hdrs" \
  1489. "$$awk_code" $(srcdir)/$(VC9_SRCTMPL) > $(VC9_SRCVCPROJ) || { exit 1; }; \
  1490. \
  1491. echo "generating '$(VC10_LIBVCXPROJ)'"; \
  1492. awk -v proj_type=vcxproj \
  1493. -v lib_srcs="$$sorted_lib_srcs" \
  1494. -v lib_hdrs="$$sorted_lib_hdrs" \
  1495. -v lib_rc="$$win32_lib_rc" \
  1496. -v lib_vtls_srcs="$$sorted_lib_vtls_srcs" \
  1497. -v lib_vtls_hdrs="$$sorted_lib_vtls_hdrs" \
  1498. "$$awk_code" $(srcdir)/$(VC10_LIBTMPL) > $(VC10_LIBVCXPROJ) || { exit 1; }; \
  1499. \
  1500. echo "generating '$(VC10_SRCVCXPROJ)'"; \
  1501. awk -v proj_type=vcxproj \
  1502. -v src_srcs="$$sorted_src_srcs" \
  1503. -v src_hdrs="$$sorted_src_hdrs" \
  1504. -v src_rc="$$win32_src_rc" \
  1505. -v src_x_srcs="$$sorted_src_x_srcs" \
  1506. -v src_x_hdrs="$$sorted_src_x_hdrs" \
  1507. "$$awk_code" $(srcdir)/$(VC10_SRCTMPL) > $(VC10_SRCVCXPROJ) || { exit 1; }; \
  1508. \
  1509. echo "generating '$(VC11_LIBVCXPROJ)'"; \
  1510. awk -v proj_type=vcxproj \
  1511. -v lib_srcs="$$sorted_lib_srcs" \
  1512. -v lib_hdrs="$$sorted_lib_hdrs" \
  1513. -v lib_rc="$$win32_lib_rc" \
  1514. -v lib_vtls_srcs="$$sorted_lib_vtls_srcs" \
  1515. -v lib_vtls_hdrs="$$sorted_lib_vtls_hdrs" \
  1516. "$$awk_code" $(srcdir)/$(VC11_LIBTMPL) > $(VC11_LIBVCXPROJ) || { exit 1; }; \
  1517. \
  1518. echo "generating '$(VC11_SRCVCXPROJ)'"; \
  1519. awk -v proj_type=vcxproj \
  1520. -v src_srcs="$$sorted_src_srcs" \
  1521. -v src_hdrs="$$sorted_src_hdrs" \
  1522. -v src_rc="$$win32_src_rc" \
  1523. -v src_x_srcs="$$sorted_src_x_srcs" \
  1524. -v src_x_hdrs="$$sorted_src_x_hdrs" \
  1525. "$$awk_code" $(srcdir)/$(VC11_SRCTMPL) > $(VC11_SRCVCXPROJ) || { exit 1; }; \
  1526. \
  1527. echo "generating '$(VC12_LIBVCXPROJ)'"; \
  1528. awk -v proj_type=vcxproj \
  1529. -v lib_srcs="$$sorted_lib_srcs" \
  1530. -v lib_hdrs="$$sorted_lib_hdrs" \
  1531. -v lib_rc="$$win32_lib_rc" \
  1532. -v lib_vtls_srcs="$$sorted_lib_vtls_srcs" \
  1533. -v lib_vtls_hdrs="$$sorted_lib_vtls_hdrs" \
  1534. "$$awk_code" $(srcdir)/$(VC12_LIBTMPL) > $(VC12_LIBVCXPROJ) || { exit 1; }; \
  1535. \
  1536. echo "generating '$(VC12_SRCVCXPROJ)'"; \
  1537. awk -v proj_type=vcxproj \
  1538. -v src_srcs="$$sorted_src_srcs" \
  1539. -v src_hdrs="$$sorted_src_hdrs" \
  1540. -v src_rc="$$win32_src_rc" \
  1541. -v src_x_srcs="$$sorted_src_x_srcs" \
  1542. -v src_x_hdrs="$$sorted_src_x_hdrs" \
  1543. "$$awk_code" $(srcdir)/$(VC12_SRCTMPL) > $(VC12_SRCVCXPROJ) || { exit 1; };)
  1544. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  1545. # Otherwise a system limit (for SysV at least) may be exceeded.
  1546. .NOEXPORT: