Makefile 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775
  1. # Makefile.in generated by automake 1.16.1 from Makefile.am.
  2. # tests/data/Makefile. Generated from Makefile.in by configure.
  3. # Copyright (C) 1994-2018 Free Software Foundation, Inc.
  4. # This Makefile.in is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  9. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  10. # PARTICULAR PURPOSE.
  11. #***************************************************************************
  12. # _ _ ____ _
  13. # Project ___| | | | _ \| |
  14. # / __| | | | |_) | |
  15. # | (__| |_| | _ <| |___
  16. # \___|\___/|_| \_\_____|
  17. #
  18. # Copyright (C) 1998 - 2018, 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 https://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. am__is_gnu_make = { \
  33. if test -z '$(MAKELEVEL)'; then \
  34. false; \
  35. elif test -n '$(MAKE_HOST)'; then \
  36. true; \
  37. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  38. true; \
  39. else \
  40. false; \
  41. fi; \
  42. }
  43. am__make_running_with_option = \
  44. case $${target_option-} in \
  45. ?) ;; \
  46. *) echo "am__make_running_with_option: internal error: invalid" \
  47. "target option '$${target_option-}' specified" >&2; \
  48. exit 1;; \
  49. esac; \
  50. has_opt=no; \
  51. sane_makeflags=$$MAKEFLAGS; \
  52. if $(am__is_gnu_make); then \
  53. sane_makeflags=$$MFLAGS; \
  54. else \
  55. case $$MAKEFLAGS in \
  56. *\\[\ \ ]*) \
  57. bs=\\; \
  58. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  59. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  60. esac; \
  61. fi; \
  62. skip_next=no; \
  63. strip_trailopt () \
  64. { \
  65. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  66. }; \
  67. for flg in $$sane_makeflags; do \
  68. test $$skip_next = yes && { skip_next=no; continue; }; \
  69. case $$flg in \
  70. *=*|--*) continue;; \
  71. -*I) strip_trailopt 'I'; skip_next=yes;; \
  72. -*I?*) strip_trailopt 'I';; \
  73. -*O) strip_trailopt 'O'; skip_next=yes;; \
  74. -*O?*) strip_trailopt 'O';; \
  75. -*l) strip_trailopt 'l'; skip_next=yes;; \
  76. -*l?*) strip_trailopt 'l';; \
  77. -[dEDm]) skip_next=yes;; \
  78. -[JT]) skip_next=yes;; \
  79. esac; \
  80. case $$flg in \
  81. *$$target_option*) has_opt=yes; break;; \
  82. esac; \
  83. done; \
  84. test $$has_opt = yes
  85. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  86. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  87. pkgdatadir = $(datadir)/curl
  88. pkgincludedir = $(includedir)/curl
  89. pkglibdir = $(libdir)/curl
  90. pkglibexecdir = $(libexecdir)/curl
  91. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  92. install_sh_DATA = $(install_sh) -c -m 644
  93. install_sh_PROGRAM = $(install_sh) -c
  94. install_sh_SCRIPT = $(install_sh) -c
  95. INSTALL_HEADER = $(INSTALL_DATA)
  96. transform = $(program_transform_name)
  97. NORMAL_INSTALL = :
  98. PRE_INSTALL = :
  99. POST_INSTALL = :
  100. NORMAL_UNINSTALL = :
  101. PRE_UNINSTALL = :
  102. POST_UNINSTALL = :
  103. build_triplet = x86_64-pc-linux-gnu
  104. host_triplet = arm-unknown-linux-gnueabihf
  105. subdir = tests/data
  106. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  107. am__aclocal_m4_deps = $(top_srcdir)/m4/ax_code_coverage.m4 \
  108. $(top_srcdir)/m4/ax_compile_check_sizeof.m4 \
  109. $(top_srcdir)/m4/curl-compilers.m4 \
  110. $(top_srcdir)/m4/curl-confopts.m4 \
  111. $(top_srcdir)/m4/curl-functions.m4 \
  112. $(top_srcdir)/m4/curl-openssl.m4 \
  113. $(top_srcdir)/m4/curl-override.m4 \
  114. $(top_srcdir)/m4/curl-reentrant.m4 $(top_srcdir)/m4/libtool.m4 \
  115. $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
  116. $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
  117. $(top_srcdir)/m4/xc-am-iface.m4 \
  118. $(top_srcdir)/m4/xc-cc-check.m4 \
  119. $(top_srcdir)/m4/xc-lt-iface.m4 \
  120. $(top_srcdir)/m4/xc-translit.m4 \
  121. $(top_srcdir)/m4/xc-val-flgs.m4 \
  122. $(top_srcdir)/m4/zz40-xc-ovr.m4 \
  123. $(top_srcdir)/m4/zz50-xc-ovr.m4 \
  124. $(top_srcdir)/m4/zz60-xc-ovr.m4 $(top_srcdir)/acinclude.m4 \
  125. $(top_srcdir)/configure.ac
  126. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  127. $(ACLOCAL_M4)
  128. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  129. mkinstalldirs = $(install_sh) -d
  130. CONFIG_HEADER = $(top_builddir)/lib/curl_config.h
  131. CONFIG_CLEAN_FILES =
  132. CONFIG_CLEAN_VPATH_FILES =
  133. AM_V_P = $(am__v_P_$(V))
  134. am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
  135. am__v_P_0 = false
  136. am__v_P_1 = :
  137. AM_V_GEN = $(am__v_GEN_$(V))
  138. am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
  139. am__v_GEN_0 = @echo " GEN " $@;
  140. am__v_GEN_1 =
  141. AM_V_at = $(am__v_at_$(V))
  142. am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
  143. am__v_at_0 = @
  144. am__v_at_1 =
  145. SOURCES =
  146. DIST_SOURCES =
  147. am__can_run_installinfo = \
  148. case $$AM_UPDATE_INFO_DIR in \
  149. n|no|NO) false;; \
  150. *) (install-info --version) >/dev/null 2>&1;; \
  151. esac
  152. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  153. am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.inc
  154. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  155. ACLOCAL = ${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.61.1/missing aclocal-1.16
  156. AMTAR = $${TAR-tar}
  157. AM_DEFAULT_VERBOSITY = 0
  158. 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
  159. AR_FLAGS = cr
  160. AS = as
  161. AUTOCONF = ${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.61.1/missing autoconf
  162. AUTOHEADER = ${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.61.1/missing autoheader
  163. AUTOMAKE = ${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.61.1/missing automake-1.16
  164. AWK = gawk
  165. BLANK_AT_MAKETIME =
  166. 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
  167. CCDEPMODE = depmode=gcc3
  168. CFLAGS = -Werror-implicit-function-declaration -O2 -Wno-system-headers -pthread
  169. CFLAG_CURL_SYMBOL_HIDING = -fvisibility=hidden
  170. CODE_COVERAGE_CFLAGS =
  171. CODE_COVERAGE_CPPFLAGS =
  172. CODE_COVERAGE_CXXFLAGS =
  173. CODE_COVERAGE_ENABLED = no
  174. CODE_COVERAGE_LDFLAGS =
  175. CODE_COVERAGE_LIBS =
  176. CONFIGURE_OPTIONS = " '--host=arm-linux-gnueabihf' '--prefix=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.61.1/release' '--with-ssl=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/openssl-1.1.1n/release' '--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'"
  177. 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
  178. CPPFLAGS = -I/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/openssl-1.1.1n/release/include
  179. CPPFLAG_CURL_STATICLIB =
  180. CURLVERSION = 7.61.1
  181. CURL_CA_BUNDLE =
  182. CURL_CFLAG_EXTRAS =
  183. CURL_DISABLE_DICT =
  184. CURL_DISABLE_FILE =
  185. CURL_DISABLE_FTP =
  186. CURL_DISABLE_GOPHER =
  187. CURL_DISABLE_HTTP =
  188. CURL_DISABLE_IMAP =
  189. CURL_DISABLE_LDAP = 1
  190. CURL_DISABLE_LDAPS = 1
  191. CURL_DISABLE_POP3 =
  192. CURL_DISABLE_PROXY =
  193. CURL_DISABLE_RTSP =
  194. CURL_DISABLE_SMB =
  195. CURL_DISABLE_SMTP =
  196. CURL_DISABLE_TELNET =
  197. CURL_DISABLE_TFTP =
  198. CURL_LT_SHLIB_VERSIONED_FLAVOUR =
  199. CURL_NETWORK_AND_TIME_LIBS = -lgcc
  200. CURL_NETWORK_LIBS = -lgcc
  201. CURL_WITH_MULTI_SSL =
  202. CYGPATH_W = echo
  203. DEFAULT_SSL_BACKEND = no
  204. DEFS = -DHAVE_CONFIG_H
  205. DEPDIR = .deps
  206. DLLTOOL = false
  207. DSYMUTIL =
  208. DUMPBIN = :
  209. ECHO_C =
  210. ECHO_N = -n
  211. ECHO_T =
  212. EGREP = /bin/grep -E
  213. ENABLE_SHARED = yes
  214. ENABLE_STATIC = yes
  215. EXEEXT =
  216. FGREP = /bin/grep -F
  217. GCOV =
  218. GENHTML =
  219. GREP = /bin/grep
  220. HAVE_BROTLI =
  221. HAVE_GNUTLS_SRP =
  222. HAVE_LDAP_SSL = 1
  223. HAVE_LIBZ = 1
  224. HAVE_OPENSSL_SRP = 1
  225. IDN_ENABLED =
  226. INSTALL = /usr/bin/install -c
  227. INSTALL_DATA = ${INSTALL} -m 644
  228. INSTALL_PROGRAM = ${INSTALL}
  229. INSTALL_SCRIPT = ${INSTALL}
  230. INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
  231. IPV6_ENABLED = 1
  232. LCOV =
  233. 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
  234. LDFLAGS = -L/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/openssl-1.1.1n/release/lib
  235. LIBCURL_LIBS = -lssl -lcrypto -lssl -lcrypto -lz -lgcc
  236. LIBMETALINK_CPPFLAGS =
  237. LIBMETALINK_LDFLAGS =
  238. LIBMETALINK_LIBS =
  239. LIBOBJS =
  240. LIBS = -lssl -lcrypto -lssl -lcrypto -lz -lgcc
  241. LIBTOOL = $(SHELL) $(top_builddir)/libtool
  242. LIPO =
  243. LN_S = ln -s
  244. LTLIBOBJS =
  245. LT_SYS_LIBRARY_PATH =
  246. MAINT = #
  247. MAKEINFO = ${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.61.1/missing makeinfo
  248. MANIFEST_TOOL = :
  249. MANOPT = -man
  250. MKDIR_P = /bin/mkdir -p
  251. NM = nm
  252. NMEDIT =
  253. NROFF = /usr/bin/nroff
  254. NSS_LIBS =
  255. OBJDUMP = objdump
  256. OBJEXT = o
  257. OTOOL =
  258. OTOOL64 =
  259. PACKAGE = curl
  260. PACKAGE_BUGREPORT = a suitable curl mailing list: https://curl.haxx.se/mail/
  261. PACKAGE_NAME = curl
  262. PACKAGE_STRING = curl -
  263. PACKAGE_TARNAME = curl
  264. PACKAGE_URL =
  265. PACKAGE_VERSION = -
  266. PATH_SEPARATOR = :
  267. PERL = /usr/bin/perl
  268. PKGADD_NAME = curl - a client that groks URLs
  269. PKGADD_PKG = HAXXcurl
  270. PKGADD_VENDOR = curl.haxx.se
  271. PKGCONFIG = no
  272. RANDOM_FILE =
  273. 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
  274. REQUIRE_LIB_DEPS = no
  275. SED = /bin/sed
  276. SET_MAKE =
  277. SHELL = /bin/bash
  278. SSL_BACKENDS = OpenSSL
  279. SSL_ENABLED = 1
  280. SSL_LIBS = -lssl -lcrypto
  281. 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
  282. SUPPORT_FEATURES = SSL IPv6 UnixSockets libz AsynchDNS NTLM NTLM_WB TLS-SRP HTTPS-proxy
  283. SUPPORT_PROTOCOLS = DICT FILE FTP FTPS GOPHER HTTP HTTPS IMAP IMAPS POP3 POP3S RTSP SMB SMBS SMTP SMTPS TELNET TFTP
  284. USE_ARES =
  285. USE_AXTLS =
  286. USE_CYASSL =
  287. USE_DARWINSSL =
  288. USE_GNUTLS =
  289. USE_GNUTLS_NETTLE =
  290. USE_LIBRTMP =
  291. USE_LIBSSH =
  292. USE_LIBSSH2 =
  293. USE_MBEDTLS =
  294. USE_NGHTTP2 =
  295. USE_NSS =
  296. USE_OPENLDAP =
  297. USE_POLARSSL =
  298. USE_SCHANNEL =
  299. USE_UNIX_SOCKETS = 1
  300. USE_WINDOWS_SSPI =
  301. VERSION = -
  302. VERSIONNUM = 073d01
  303. ZLIB_LIBS = -lz
  304. ZSH_FUNCTIONS_DIR = ${prefix}/share/zsh/site-functions
  305. abs_builddir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.61.1/tests/data
  306. abs_srcdir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.61.1/tests/data
  307. abs_top_builddir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.61.1
  308. abs_top_srcdir = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.61.1
  309. ac_ct_AR =
  310. ac_ct_CC =
  311. ac_ct_DUMPBIN = link -dump
  312. am__include = include
  313. am__leading_dot = .
  314. am__quote =
  315. am__tar = $${TAR-tar} chof - "$$tardir"
  316. am__untar = $${TAR-tar} xf -
  317. bindir = ${exec_prefix}/bin
  318. build = x86_64-pc-linux-gnu
  319. build_alias =
  320. build_cpu = x86_64
  321. build_os = linux-gnu
  322. build_vendor = pc
  323. builddir = .
  324. datadir = ${datarootdir}
  325. datarootdir = ${prefix}/share
  326. docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
  327. dvidir = ${docdir}
  328. exec_prefix = ${prefix}
  329. host = arm-unknown-linux-gnueabihf
  330. host_alias = arm-linux-gnueabihf
  331. host_cpu = arm
  332. host_os = linux-gnueabihf
  333. host_vendor = unknown
  334. htmldir = ${docdir}
  335. includedir = ${prefix}/include
  336. infodir = ${datarootdir}/info
  337. install_sh = ${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.61.1/install-sh
  338. libdir = ${exec_prefix}/lib
  339. libexecdir = ${exec_prefix}/libexec
  340. libext = a
  341. localedir = ${datarootdir}/locale
  342. localstatedir = ${prefix}/var
  343. mandir = ${datarootdir}/man
  344. mkdir_p = $(MKDIR_P)
  345. oldincludedir = /usr/include
  346. pdfdir = ${docdir}
  347. prefix = /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/curl-7.61.1/release
  348. program_transform_name = s,x,x,
  349. psdir = ${docdir}
  350. runstatedir = ${localstatedir}/run
  351. sbindir = ${exec_prefix}/sbin
  352. sharedstatedir = ${prefix}/com
  353. srcdir = .
  354. subdirs =
  355. sysconfdir = ${prefix}/etc
  356. target_alias =
  357. top_build_prefix = ../../
  358. top_builddir = ../..
  359. top_srcdir = ../..
  360. # this list is in numerical order
  361. TESTCASES = test1 test2 test3 test4 test5 test6 test7 test8 test9 \
  362. test10 test11 test12 test13 test14 test15 test16 test17 test18 test19 \
  363. test20 test21 test22 test23 test24 test25 test26 test27 test28 test29 \
  364. test30 test31 test32 test33 test34 test35 test36 test37 test38 test39 \
  365. test40 test41 test42 test43 test44 test45 test46 test47 test48 test49 \
  366. test50 test51 test52 test53 test54 test55 test56 test57 test58 test59 \
  367. test60 test61 test62 test63 test64 test65 test66 test67 test68 test69 \
  368. test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \
  369. test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \
  370. test90 test91 test92 test93 test94 test95 test96 test97 test98 test99 \
  371. test100 test101 test102 test103 test104 test105 test106 test107 test108 \
  372. test109 test110 test111 test112 test113 test114 test115 test116 test117 \
  373. test118 test119 test120 test121 test122 test123 test124 test125 test126 \
  374. test127 test128 test129 test130 test131 test132 test133 test134 test135 \
  375. test136 test137 test138 test139 test140 test141 test142 test143 test144 \
  376. test145 test146 test147 test148 test149 test150 test151 test152 test153 \
  377. test154 test155 test156 test157 test158 test159 test160 test161 test162 \
  378. test163 test164 test165 test166 test167 test168 test169 test170 test171 \
  379. test172 test173 test174 test175 test176 test177 test178 test179 test180 \
  380. test181 test182 test183 test184 test185 test186 test187 test188 test189 \
  381. test190 test191 test192 test193 test194 test195 test196 test197 test198 \
  382. test199 test200 test201 test202 test203 test204 test205 test206 test207 \
  383. test208 test209 test210 test211 test212 test213 test214 test215 test216 \
  384. test217 test218 test219 test220 test221 test222 test223 test224 test225 \
  385. test226 test227 test228 test229 test230 test231 test232 test233 test234 \
  386. test235 test236 test237 test238 test239 test240 test241 test242 test243 \
  387. test244 test245 test246 test247 test248 test249 test250 test251 test252 \
  388. test253 test254 test255 test256 test257 test258 test259 test260 test261 \
  389. test262 test263 test264 test265 test266 test267 test268 test269 test270 \
  390. test271 test272 test273 test274 test275 test276 test277 test278 test279 \
  391. test280 test281 test282 test283 test284 test285 test286 test287 test288 \
  392. test289 test290 test291 test292 test293 test294 test295 test296 test297 \
  393. test298 test299 test300 test301 test302 test303 test304 test305 test306 \
  394. test307 test308 test309 test310 test311 test312 test313 test314 test315 \
  395. test316 test317 test318 test319 test320 test321 test322 test323 test324 \
  396. test325 test326 \
  397. \
  398. test340 \
  399. \
  400. test350 test351 test352 test353 test354 \
  401. test393 test394 test395 \
  402. \
  403. test400 test401 test402 test403 test404 test405 test406 test407 test408 \
  404. test409 \
  405. \
  406. test500 test501 test502 test503 test504 test505 test506 test507 test508 \
  407. test509 test510 test511 test512 test513 test514 test515 test516 test517 \
  408. test518 test519 test520 test521 test522 test523 test524 test525 test526 \
  409. test527 test528 test529 test530 test531 test532 test533 test534 test535 \
  410. test536 test537 test538 test539 test540 test541 test542 test543 test544 \
  411. test545 test546 test547 test548 test549 test550 test551 test552 test553 \
  412. test554 test555 test556 test557 test558 test559 test560 test561 test562 \
  413. test563 test564 test565 test566 test567 test568 test569 test570 test571 \
  414. test572 test573 test574 test575 test576 test577 test578 test579 test580 \
  415. test581 test582 test583 test584 test585 test586 test587 test588 test589 \
  416. test590 test591 test592 test593 test594 test595 test596 test597 test598 \
  417. test599 test600 test601 test602 test603 test604 test605 test606 test607 \
  418. test608 test609 test610 test611 test612 test613 test614 test615 test616 \
  419. test617 test618 test619 test620 test621 test622 test623 test624 test625 \
  420. test626 test627 test628 test629 test630 test631 test632 test633 test634 \
  421. test635 test636 test637 test638 test639 test640 test641 test642 \
  422. test643 test644 test645 test646 test647 test648 test649 test650 test651 \
  423. test652 test653 test654 test655 test656 \
  424. \
  425. test700 test701 test702 test703 test704 test705 test706 test707 test708 \
  426. test709 test710 test711 test712 test713 test714 test715 \
  427. \
  428. test800 test801 test802 test803 test804 test805 test806 test807 test808 \
  429. test809 test810 test811 test812 test813 test814 test815 test816 test817 \
  430. test818 test819 test820 test821 test822 test823 test824 test825 test826 \
  431. test827 test828 test829 test830 test831 test832 test833 test834 test835 \
  432. test836 test837 test838 test839 test840 test841 test842 test843 test844 \
  433. test845 test846 \
  434. \
  435. test850 test851 test852 test853 test854 test855 test856 test857 test858 \
  436. test859 test860 test861 test862 test863 test864 test865 test866 test867 \
  437. test868 test869 test870 test871 test872 test873 test874 test875 test876 \
  438. test877 test878 test879 test880 test881 test882 test883 test884 test885 \
  439. test886 test887 test888 test889 test890 test891 \
  440. \
  441. test900 test901 test902 test903 test904 test905 test906 test907 test908 \
  442. test909 test910 test911 test912 test913 test914 test915 test916 test917 \
  443. test918 test919 test920 test921 test922 test923 test924 test925 test926 \
  444. test927 test928 test929 test930 test931 test932 test933 test934 test935 \
  445. test936 test937 test938 test939 test940 test941 test942 test943 test944 \
  446. test945 test946 test947 test948 test949 test950 test951 test952 \
  447. \
  448. test1000 test1001 test1002 test1003 test1004 test1005 test1006 test1007 \
  449. test1008 test1009 test1010 test1011 test1012 test1013 test1014 test1015 \
  450. test1016 test1017 test1018 test1019 test1020 test1021 test1022 test1023 \
  451. test1024 test1025 test1026 test1027 test1028 test1029 test1030 test1031 \
  452. test1032 test1033 test1034 test1035 test1036 test1037 test1038 test1039 \
  453. test1040 test1041 test1042 test1043 test1044 test1045 test1046 test1047 \
  454. test1048 test1049 test1050 test1051 test1052 test1053 test1054 test1055 \
  455. test1056 test1057 test1058 test1059 test1060 test1061 test1062 test1063 \
  456. test1064 test1065 test1066 test1067 test1068 test1069 test1070 test1071 \
  457. test1072 test1073 test1074 test1075 test1076 test1077 test1078 test1079 \
  458. test1080 test1081 test1082 test1083 test1084 test1085 test1086 test1087 \
  459. test1088 test1089 test1090 test1091 test1092 test1093 test1094 test1095 \
  460. test1096 test1097 test1098 test1099 test1100 test1101 test1102 test1103 \
  461. test1104 test1105 test1106 test1107 test1108 test1109 test1110 test1111 \
  462. test1112 test1113 test1114 test1115 test1116 test1117 test1118 test1119 \
  463. test1120 test1121 test1122 test1123 test1124 test1125 test1126 test1127 \
  464. test1128 test1129 test1130 test1131 test1132 test1133 test1134 test1135 \
  465. test1136 test1137 test1138 test1139 test1140 test1141 test1142 test1143 \
  466. test1144 test1145 test1146 test1147 test1148 test1149 test1150 test1151 \
  467. test1152 test1153 test1154 test1155 test1156 test1157 test1158 \
  468. \
  469. test1160 test1161 test1162 test1163 test1164 \
  470. test1170 test1171 \
  471. test1200 test1201 test1202 test1203 test1204 test1205 test1206 test1207 \
  472. test1208 test1209 test1210 test1211 test1212 test1213 test1214 test1215 \
  473. test1216 test1217 test1218 test1219 \
  474. test1220 test1221 test1222 test1223 test1224 test1225 test1226 test1227 \
  475. test1228 test1229 test1230 test1231 test1232 test1233 test1234 test1235 \
  476. test1236 test1237 test1238 test1239 test1240 test1241 test1242 test1243 \
  477. test1244 test1245 test1246 test1247 test1248 test1249 test1250 test1251 \
  478. test1252 test1253 test1254 test1255 test1256 test1257 test1258 test1259 \
  479. test1260 test1261 test1262 test1263 test1264 test1265 test1266 test1267 \
  480. test1268 \
  481. \
  482. test1280 test1281 test1282 test1283 test1284 test1285 test1286 test1287 \
  483. test1288 test1289 test1290 test1291 test1292 \
  484. test1298 test1299 \
  485. test1300 test1301 test1302 test1303 test1304 test1305 test1306 test1307 \
  486. test1308 test1309 test1310 test1311 test1312 test1313 test1314 test1315 \
  487. test1316 test1317 test1318 test1319 test1320 test1321 test1322 test1323 \
  488. test1324 test1325 test1326 test1327 test1328 test1329 test1330 test1331 \
  489. test1332 test1333 test1334 test1335 test1336 test1337 test1338 test1339 \
  490. test1340 test1341 test1342 test1343 test1344 test1345 test1346 test1347 \
  491. test1348 test1349 test1350 test1351 test1352 test1353 test1354 test1355 \
  492. test1356 test1357 test1358 test1359 test1360 test1361 test1362 test1363 \
  493. test1364 test1365 test1366 test1367 test1368 test1369 test1370 test1371 \
  494. test1372 test1373 test1374 test1375 test1376 test1377 test1378 test1379 \
  495. test1380 test1381 test1382 test1383 test1384 test1385 test1386 test1387 \
  496. test1388 test1389 test1390 test1391 test1392 test1393 test1394 test1395 \
  497. test1396 test1397 test1398 test1399 \
  498. \
  499. test1400 test1401 test1402 test1403 test1404 test1405 test1406 test1407 \
  500. test1408 test1409 test1410 test1411 test1412 test1413 test1414 test1415 \
  501. test1416 test1417 test1418 test1419 test1420 test1421 test1422 test1423 \
  502. test1424 test1425 test1426 test1427 \
  503. test1428 test1429 test1430 test1431 test1432 test1433 test1434 test1435 \
  504. test1436 test1437 test1438 test1439 test1440 test1441 test1442 test1443 \
  505. test1444 test1445 test1446 test1447 test1448 test1449 test1450 test1451 \
  506. test1452 test1453 test1454 test1455 test1456 \
  507. test1500 test1501 test1502 test1503 test1504 test1505 test1506 test1507 \
  508. test1508 test1509 test1510 test1511 test1512 test1513 test1514 test1515 \
  509. test1516 test1517 \
  510. \
  511. test1520 test1521 test1522 \
  512. \
  513. test1525 test1526 test1527 test1528 test1529 test1530 test1531 test1532 \
  514. test1533 test1534 test1535 test1536 test1537 test1538 \
  515. test1540 \
  516. test1550 test1551 test1552 test1553 test1554 test1555 test1556 test1557 \
  517. \
  518. test1590 \
  519. test1600 test1601 test1602 test1603 test1604 test1605 test1606 test1607 \
  520. test1608 test1609 \
  521. \
  522. test1700 test1701 test1702 \
  523. \
  524. test1800 test1801 \
  525. \
  526. test1900 test1901 test1902 test1903 test1904 \
  527. \
  528. test2000 test2001 test2002 test2003 test2004 test2005 test2006 test2007 \
  529. test2008 test2009 test2010 test2011 test2012 test2013 test2014 test2015 \
  530. test2016 test2017 test2018 test2019 test2020 test2021 test2022 test2023 \
  531. test2024 test2025 test2026 test2027 test2028 test2029 test2030 test2031 \
  532. test2032 test2033 test2034 test2035 test2036 test2037 test2038 test2039 \
  533. test2040 test2041 test2042 test2043 test2044 test2045 test2046 test2047 \
  534. test2048 test2049 test2050 test2051 test2052 test2053 test2054 test2055 \
  535. test2056 test2057 test2058 test2059 test2060 test2061 test2062 test2063 \
  536. test2064 test2065 test2066 test2067 test2068 test2069 \
  537. \
  538. test2070 test2071 test2072 test2073 \
  539. test2074 test2075 \
  540. \
  541. test3000 test3001
  542. # TESTCASES are taken from Makefile.inc
  543. EXTRA_DIST = $(TESTCASES) DISABLED CMakeLists.txt
  544. all: all-am
  545. .SUFFIXES:
  546. $(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(srcdir)/Makefile.inc $(am__configure_deps)
  547. @for dep in $?; do \
  548. case '$(am__configure_deps)' in \
  549. *$$dep*) \
  550. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  551. && { if test -f $@; then exit 0; else break; fi; }; \
  552. exit 1;; \
  553. esac; \
  554. done; \
  555. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tests/data/Makefile'; \
  556. $(am__cd) $(top_srcdir) && \
  557. $(AUTOMAKE) --foreign tests/data/Makefile
  558. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  559. @case '$?' in \
  560. *config.status*) \
  561. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  562. *) \
  563. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
  564. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
  565. esac;
  566. $(srcdir)/Makefile.inc $(am__empty):
  567. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  568. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  569. $(top_srcdir)/configure: # $(am__configure_deps)
  570. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  571. $(ACLOCAL_M4): # $(am__aclocal_m4_deps)
  572. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  573. $(am__aclocal_m4_deps):
  574. mostlyclean-libtool:
  575. -rm -f *.lo
  576. clean-libtool:
  577. -rm -rf .libs _libs
  578. tags TAGS:
  579. ctags CTAGS:
  580. cscope cscopelist:
  581. distdir: $(BUILT_SOURCES)
  582. $(MAKE) $(AM_MAKEFLAGS) distdir-am
  583. distdir-am: $(DISTFILES)
  584. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  585. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  586. list='$(DISTFILES)'; \
  587. dist_files=`for file in $$list; do echo $$file; done | \
  588. sed -e "s|^$$srcdirstrip/||;t" \
  589. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  590. case $$dist_files in \
  591. */*) $(MKDIR_P) `echo "$$dist_files" | \
  592. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  593. sort -u` ;; \
  594. esac; \
  595. for file in $$dist_files; do \
  596. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  597. if test -d $$d/$$file; then \
  598. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  599. if test -d "$(distdir)/$$file"; then \
  600. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  601. fi; \
  602. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  603. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  604. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  605. fi; \
  606. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  607. else \
  608. test -f "$(distdir)/$$file" \
  609. || cp -p $$d/$$file "$(distdir)/$$file" \
  610. || exit 1; \
  611. fi; \
  612. done
  613. check-am: all-am
  614. check: check-am
  615. all-am: Makefile
  616. installdirs:
  617. install-exec: install-exec-am
  618. install-data: install-data-am
  619. uninstall: uninstall-am
  620. install-am: all-am
  621. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  622. installcheck: installcheck-am
  623. install-strip:
  624. if test -z '$(STRIP)'; then \
  625. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  626. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  627. install; \
  628. else \
  629. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  630. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  631. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  632. fi
  633. mostlyclean-generic:
  634. clean-generic:
  635. distclean-generic:
  636. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  637. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  638. maintainer-clean-generic:
  639. @echo "This command is intended for maintainers to use"
  640. @echo "it deletes files that may require special tools to rebuild."
  641. clean: clean-am
  642. clean-am: clean-generic clean-libtool mostlyclean-am
  643. distclean: distclean-am
  644. -rm -f Makefile
  645. distclean-am: clean-am distclean-generic
  646. dvi: dvi-am
  647. dvi-am:
  648. html: html-am
  649. html-am:
  650. info: info-am
  651. info-am:
  652. install-data-am:
  653. install-dvi: install-dvi-am
  654. install-dvi-am:
  655. install-exec-am:
  656. install-html: install-html-am
  657. install-html-am:
  658. install-info: install-info-am
  659. install-info-am:
  660. install-man:
  661. install-pdf: install-pdf-am
  662. install-pdf-am:
  663. install-ps: install-ps-am
  664. install-ps-am:
  665. installcheck-am:
  666. maintainer-clean: maintainer-clean-am
  667. -rm -f Makefile
  668. maintainer-clean-am: distclean-am maintainer-clean-generic
  669. mostlyclean: mostlyclean-am
  670. mostlyclean-am: mostlyclean-generic mostlyclean-libtool
  671. pdf: pdf-am
  672. pdf-am:
  673. ps: ps-am
  674. ps-am:
  675. uninstall-am:
  676. .MAKE: install-am install-strip
  677. .PHONY: all all-am check check-am clean clean-generic clean-libtool \
  678. cscopelist-am ctags-am distclean distclean-generic \
  679. distclean-libtool distdir dvi dvi-am html html-am info info-am \
  680. install install-am install-data install-data-am install-dvi \
  681. install-dvi-am install-exec install-exec-am install-html \
  682. install-html-am install-info install-info-am install-man \
  683. install-pdf install-pdf-am install-ps install-ps-am \
  684. install-strip installcheck installcheck-am installdirs \
  685. maintainer-clean maintainer-clean-generic mostlyclean \
  686. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  687. tags-am uninstall uninstall-am
  688. .PRECIOUS: Makefile
  689. iall:
  690. install:
  691. test:
  692. filecheck:
  693. @mkdir test-place; \
  694. cp "$(top_srcdir)"/tests/data/test[0-9]* test-place/; \
  695. rm test-place/*~; \
  696. for f in $(EXTRA_DIST); do \
  697. if test -f "$(top_srcdir)/tests/data/$$f"; then \
  698. rm -f "test-place/$$f"; \
  699. else \
  700. echo "$$f is listed but missing!"; \
  701. fi \
  702. done; \
  703. echo "Local files not present in EXTRA_DIST:" ; \
  704. ls test-place; \
  705. ! ls test-place | grep . >/dev/null ; \
  706. RC=$$? ; \
  707. rm -rf test-place ; \
  708. exit $$RC
  709. show:
  710. @echo $(EXTRA_DIST)
  711. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  712. # Otherwise a system limit (for SysV at least) may be exceeded.
  713. .NOEXPORT: