Makefile.in 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119
  1. # Makefile.in generated by automake 1.15 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2014 Free Software Foundation, Inc.
  4. # This Makefile.in is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  9. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  10. # PARTICULAR PURPOSE.
  11. @SET_MAKE@
  12. VPATH = @srcdir@
  13. am__is_gnu_make = { \
  14. if test -z '$(MAKELEVEL)'; then \
  15. false; \
  16. elif test -n '$(MAKE_HOST)'; then \
  17. true; \
  18. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  19. true; \
  20. else \
  21. false; \
  22. fi; \
  23. }
  24. am__make_running_with_option = \
  25. case $${target_option-} in \
  26. ?) ;; \
  27. *) echo "am__make_running_with_option: internal error: invalid" \
  28. "target option '$${target_option-}' specified" >&2; \
  29. exit 1;; \
  30. esac; \
  31. has_opt=no; \
  32. sane_makeflags=$$MAKEFLAGS; \
  33. if $(am__is_gnu_make); then \
  34. sane_makeflags=$$MFLAGS; \
  35. else \
  36. case $$MAKEFLAGS in \
  37. *\\[\ \ ]*) \
  38. bs=\\; \
  39. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  40. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  41. esac; \
  42. fi; \
  43. skip_next=no; \
  44. strip_trailopt () \
  45. { \
  46. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  47. }; \
  48. for flg in $$sane_makeflags; do \
  49. test $$skip_next = yes && { skip_next=no; continue; }; \
  50. case $$flg in \
  51. *=*|--*) continue;; \
  52. -*I) strip_trailopt 'I'; skip_next=yes;; \
  53. -*I?*) strip_trailopt 'I';; \
  54. -*O) strip_trailopt 'O'; skip_next=yes;; \
  55. -*O?*) strip_trailopt 'O';; \
  56. -*l) strip_trailopt 'l'; skip_next=yes;; \
  57. -*l?*) strip_trailopt 'l';; \
  58. -[dEDm]) skip_next=yes;; \
  59. -[JT]) skip_next=yes;; \
  60. esac; \
  61. case $$flg in \
  62. *$$target_option*) has_opt=yes; break;; \
  63. esac; \
  64. done; \
  65. test $$has_opt = yes
  66. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  67. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  68. pkgdatadir = $(datadir)/@PACKAGE@
  69. pkgincludedir = $(includedir)/@PACKAGE@
  70. pkglibdir = $(libdir)/@PACKAGE@
  71. pkglibexecdir = $(libexecdir)/@PACKAGE@
  72. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  73. install_sh_DATA = $(install_sh) -c -m 644
  74. install_sh_PROGRAM = $(install_sh) -c
  75. install_sh_SCRIPT = $(install_sh) -c
  76. INSTALL_HEADER = $(INSTALL_DATA)
  77. transform = $(program_transform_name)
  78. NORMAL_INSTALL = :
  79. PRE_INSTALL = :
  80. POST_INSTALL = :
  81. NORMAL_UNINSTALL = :
  82. PRE_UNINSTALL = :
  83. POST_UNINSTALL = :
  84. build_triplet = @build@
  85. host_triplet = @host@
  86. EXTRA_PROGRAMS = perceptualdiff$(EXEEXT)
  87. TESTS =
  88. check_PROGRAMS =
  89. subdir = test/pdiff
  90. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  91. am__aclocal_m4_deps = $(top_srcdir)/build/aclocal.cairo.m4 \
  92. $(top_srcdir)/build/aclocal.compare.m4 \
  93. $(top_srcdir)/build/aclocal.enable.m4 \
  94. $(top_srcdir)/build/aclocal.float.m4 \
  95. $(top_srcdir)/build/aclocal.makefile.m4 \
  96. $(top_srcdir)/build/aclocal.pkg.m4 \
  97. $(top_srcdir)/build/gtk-doc.m4 $(top_srcdir)/build/libtool.m4 \
  98. $(top_srcdir)/build/ltoptions.m4 \
  99. $(top_srcdir)/build/ltsugar.m4 \
  100. $(top_srcdir)/build/ltversion.m4 \
  101. $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
  102. $(top_srcdir)/cairo-version.h \
  103. $(top_srcdir)/build/configure.ac.version \
  104. $(top_srcdir)/build/configure.ac.tools \
  105. $(top_srcdir)/build/configure.ac.features \
  106. $(top_srcdir)/build/configure.ac.warnings \
  107. $(top_srcdir)/build/configure.ac.system \
  108. $(top_srcdir)/build/configure.ac.analysis \
  109. $(top_srcdir)/build/configure.ac.noversion \
  110. $(top_srcdir)/build/configure.ac.pthread \
  111. $(top_srcdir)/configure.ac
  112. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  113. $(ACLOCAL_M4)
  114. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  115. mkinstalldirs = $(install_sh) -d
  116. CONFIG_HEADER = $(top_builddir)/config.h
  117. CONFIG_CLEAN_FILES =
  118. CONFIG_CLEAN_VPATH_FILES =
  119. LTLIBRARIES = $(noinst_LTLIBRARIES)
  120. libpdiff_la_LIBADD =
  121. am_libpdiff_la_OBJECTS = lpyramid.lo pdiff.lo
  122. libpdiff_la_OBJECTS = $(am_libpdiff_la_OBJECTS)
  123. AM_V_lt = $(am__v_lt_@AM_V@)
  124. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  125. am__v_lt_0 = --silent
  126. am__v_lt_1 =
  127. am_perceptualdiff_OBJECTS = args.$(OBJEXT) perceptualdiff.$(OBJEXT)
  128. perceptualdiff_OBJECTS = $(am_perceptualdiff_OBJECTS)
  129. perceptualdiff_LDADD = $(LDADD)
  130. perceptualdiff_DEPENDENCIES = libpdiff.la \
  131. $(top_builddir)/src/libcairo.la
  132. AM_V_P = $(am__v_P_@AM_V@)
  133. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  134. am__v_P_0 = false
  135. am__v_P_1 = :
  136. AM_V_GEN = $(am__v_GEN_@AM_V@)
  137. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  138. am__v_GEN_0 = @echo " GEN " $@;
  139. am__v_GEN_1 =
  140. AM_V_at = $(am__v_at_@AM_V@)
  141. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  142. am__v_at_0 = @
  143. am__v_at_1 =
  144. DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
  145. depcomp = $(SHELL) $(top_srcdir)/build/depcomp
  146. am__depfiles_maybe = depfiles
  147. am__mv = mv -f
  148. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  149. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  150. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  151. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  152. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  153. $(AM_CFLAGS) $(CFLAGS)
  154. AM_V_CC = $(am__v_CC_@AM_V@)
  155. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  156. am__v_CC_0 = @echo " CC " $@;
  157. am__v_CC_1 =
  158. CCLD = $(CC)
  159. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  160. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  161. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  162. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  163. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  164. am__v_CCLD_0 = @echo " CCLD " $@;
  165. am__v_CCLD_1 =
  166. SOURCES = $(libpdiff_la_SOURCES) $(perceptualdiff_SOURCES)
  167. DIST_SOURCES = $(libpdiff_la_SOURCES) $(perceptualdiff_SOURCES)
  168. am__can_run_installinfo = \
  169. case $$AM_UPDATE_INFO_DIR in \
  170. n|no|NO) false;; \
  171. *) (install-info --version) >/dev/null 2>&1;; \
  172. esac
  173. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  174. # Read a list of newline-separated strings from the standard input,
  175. # and print each of them once, without duplicates. Input order is
  176. # *not* preserved.
  177. am__uniquify_input = $(AWK) '\
  178. BEGIN { nonempty = 0; } \
  179. { items[$$0] = 1; nonempty = 1; } \
  180. END { if (nonempty) { for (i in items) print i; }; } \
  181. '
  182. # Make sure the list of sources is unique. This is necessary because,
  183. # e.g., the same source file might be shared among _SOURCES variables
  184. # for different programs/libraries.
  185. am__define_uniq_tagged_files = \
  186. list='$(am__tagged_files)'; \
  187. unique=`for i in $$list; do \
  188. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  189. done | $(am__uniquify_input)`
  190. ETAGS = etags
  191. CTAGS = ctags
  192. am__tty_colors_dummy = \
  193. mgn= red= grn= lgn= blu= brg= std=; \
  194. am__color_tests=no
  195. am__tty_colors = { \
  196. $(am__tty_colors_dummy); \
  197. if test "X$(AM_COLOR_TESTS)" = Xno; then \
  198. am__color_tests=no; \
  199. elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
  200. am__color_tests=yes; \
  201. elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
  202. am__color_tests=yes; \
  203. fi; \
  204. if test $$am__color_tests = yes; then \
  205. red=''; \
  206. grn=''; \
  207. lgn=''; \
  208. blu=''; \
  209. mgn=''; \
  210. brg=''; \
  211. std=''; \
  212. fi; \
  213. }
  214. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  215. am__vpath_adj = case $$p in \
  216. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  217. *) f=$$p;; \
  218. esac;
  219. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  220. am__install_max = 40
  221. am__nobase_strip_setup = \
  222. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  223. am__nobase_strip = \
  224. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  225. am__nobase_list = $(am__nobase_strip_setup); \
  226. for p in $$list; do echo "$$p $$p"; done | \
  227. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  228. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  229. if (++n[$$2] == $(am__install_max)) \
  230. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  231. END { for (dir in files) print dir, files[dir] }'
  232. am__base_list = \
  233. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  234. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  235. am__uninstall_files_from_dir = { \
  236. test -z "$$files" \
  237. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  238. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  239. $(am__cd) "$$dir" && rm -f $$files; }; \
  240. }
  241. am__recheck_rx = ^[ ]*:recheck:[ ]*
  242. am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
  243. am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
  244. # A command that, given a newline-separated list of test names on the
  245. # standard input, print the name of the tests that are to be re-run
  246. # upon "make recheck".
  247. am__list_recheck_tests = $(AWK) '{ \
  248. recheck = 1; \
  249. while ((rc = (getline line < ($$0 ".trs"))) != 0) \
  250. { \
  251. if (rc < 0) \
  252. { \
  253. if ((getline line2 < ($$0 ".log")) < 0) \
  254. recheck = 0; \
  255. break; \
  256. } \
  257. else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
  258. { \
  259. recheck = 0; \
  260. break; \
  261. } \
  262. else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
  263. { \
  264. break; \
  265. } \
  266. }; \
  267. if (recheck) \
  268. print $$0; \
  269. close ($$0 ".trs"); \
  270. close ($$0 ".log"); \
  271. }'
  272. # A command that, given a newline-separated list of test names on the
  273. # standard input, create the global log from their .trs and .log files.
  274. am__create_global_log = $(AWK) ' \
  275. function fatal(msg) \
  276. { \
  277. print "fatal: making $@: " msg | "cat >&2"; \
  278. exit 1; \
  279. } \
  280. function rst_section(header) \
  281. { \
  282. print header; \
  283. len = length(header); \
  284. for (i = 1; i <= len; i = i + 1) \
  285. printf "="; \
  286. printf "\n\n"; \
  287. } \
  288. { \
  289. copy_in_global_log = 1; \
  290. global_test_result = "RUN"; \
  291. while ((rc = (getline line < ($$0 ".trs"))) != 0) \
  292. { \
  293. if (rc < 0) \
  294. fatal("failed to read from " $$0 ".trs"); \
  295. if (line ~ /$(am__global_test_result_rx)/) \
  296. { \
  297. sub("$(am__global_test_result_rx)", "", line); \
  298. sub("[ ]*$$", "", line); \
  299. global_test_result = line; \
  300. } \
  301. else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
  302. copy_in_global_log = 0; \
  303. }; \
  304. if (copy_in_global_log) \
  305. { \
  306. rst_section(global_test_result ": " $$0); \
  307. while ((rc = (getline line < ($$0 ".log"))) != 0) \
  308. { \
  309. if (rc < 0) \
  310. fatal("failed to read from " $$0 ".log"); \
  311. print line; \
  312. }; \
  313. printf "\n"; \
  314. }; \
  315. close ($$0 ".trs"); \
  316. close ($$0 ".log"); \
  317. }'
  318. # Restructured Text title.
  319. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
  320. # Solaris 10 'make', and several other traditional 'make' implementations,
  321. # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
  322. # by disabling -e (using the XSI extension "set +e") if it's set.
  323. am__sh_e_setup = case $$- in *e*) set +e;; esac
  324. # Default flags passed to test drivers.
  325. am__common_driver_flags = \
  326. --color-tests "$$am__color_tests" \
  327. --enable-hard-errors "$$am__enable_hard_errors" \
  328. --expect-failure "$$am__expect_failure"
  329. # To be inserted before the command running the test. Creates the
  330. # directory for the log if needed. Stores in $dir the directory
  331. # containing $f, in $tst the test, in $log the log. Executes the
  332. # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
  333. # passes TESTS_ENVIRONMENT. Set up options for the wrapper that
  334. # will run the test scripts (or their associated LOG_COMPILER, if
  335. # thy have one).
  336. am__check_pre = \
  337. $(am__sh_e_setup); \
  338. $(am__vpath_adj_setup) $(am__vpath_adj) \
  339. $(am__tty_colors); \
  340. srcdir=$(srcdir); export srcdir; \
  341. case "$@" in \
  342. */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
  343. *) am__odir=.;; \
  344. esac; \
  345. test "x$$am__odir" = x"." || test -d "$$am__odir" \
  346. || $(MKDIR_P) "$$am__odir" || exit $$?; \
  347. if test -f "./$$f"; then dir=./; \
  348. elif test -f "$$f"; then dir=; \
  349. else dir="$(srcdir)/"; fi; \
  350. tst=$$dir$$f; log='$@'; \
  351. if test -n '$(DISABLE_HARD_ERRORS)'; then \
  352. am__enable_hard_errors=no; \
  353. else \
  354. am__enable_hard_errors=yes; \
  355. fi; \
  356. case " $(XFAIL_TESTS) " in \
  357. *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
  358. am__expect_failure=yes;; \
  359. *) \
  360. am__expect_failure=no;; \
  361. esac; \
  362. $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
  363. # A shell command to get the names of the tests scripts with any registered
  364. # extension removed (i.e., equivalently, the names of the test logs, with
  365. # the '.log' extension removed). The result is saved in the shell variable
  366. # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
  367. # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
  368. # since that might cause problem with VPATH rewrites for suffix-less tests.
  369. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
  370. am__set_TESTS_bases = \
  371. bases='$(TEST_LOGS)'; \
  372. bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
  373. bases=`echo $$bases`
  374. RECHECK_LOGS = $(TEST_LOGS)
  375. AM_RECURSIVE_TARGETS = check recheck
  376. TEST_SUITE_LOG = test-suite.log
  377. TEST_EXTENSIONS = @EXEEXT@ .test
  378. am__test_logs1 = $(TESTS:=.log)
  379. am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
  380. TEST_LOGS = $(am__test_logs2:.test.log=.log)
  381. TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build/test-driver
  382. TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
  383. $(TEST_LOG_FLAGS)
  384. am__set_b = \
  385. case '$@' in \
  386. */*) \
  387. case '$*' in \
  388. */*) b='$*';; \
  389. *) b=`echo '$@' | sed 's/\.log$$//'`; \
  390. esac;; \
  391. *) \
  392. b='$*';; \
  393. esac
  394. am__DIST_COMMON = $(srcdir)/Makefile.in \
  395. $(top_srcdir)/build/Makefile.am.common \
  396. $(top_srcdir)/build/depcomp $(top_srcdir)/build/test-driver
  397. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  398. ACLOCAL = @ACLOCAL@
  399. AMTAR = @AMTAR@
  400. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  401. AR = @AR@
  402. AS = @AS@
  403. AUTOCONF = @AUTOCONF@
  404. AUTOHEADER = @AUTOHEADER@
  405. AUTOMAKE = @AUTOMAKE@
  406. AWK = @AWK@
  407. BFD_LIBS = @BFD_LIBS@
  408. CAIROBOILERPLATE_LIBS = @CAIROBOILERPLATE_LIBS@
  409. CAIRO_CFLAGS = @CAIRO_CFLAGS@
  410. CAIRO_LDFLAGS = @CAIRO_LDFLAGS@
  411. CAIRO_LIBS = @CAIRO_LIBS@
  412. CAIRO_LIBTOOL_VERSION_INFO = @CAIRO_LIBTOOL_VERSION_INFO@
  413. CAIRO_NONPKGCONFIG_CFLAGS = @CAIRO_NONPKGCONFIG_CFLAGS@
  414. CAIRO_NONPKGCONFIG_LIBS = @CAIRO_NONPKGCONFIG_LIBS@
  415. CAIRO_RELEASE_STATUS = @CAIRO_RELEASE_STATUS@
  416. CAIRO_REQUIRES = @CAIRO_REQUIRES@
  417. CAIRO_TEST_MODE = @CAIRO_TEST_MODE@
  418. CAIRO_TEST_UNDEFINED_LDFLAGS = @CAIRO_TEST_UNDEFINED_LDFLAGS@
  419. CAIRO_VERSION_MAJOR = @CAIRO_VERSION_MAJOR@
  420. CAIRO_VERSION_MICRO = @CAIRO_VERSION_MICRO@
  421. CAIRO_VERSION_MINOR = @CAIRO_VERSION_MINOR@
  422. CAIRO_VERSION_SONUM = @CAIRO_VERSION_SONUM@
  423. CC = @CC@
  424. CCDEPMODE = @CCDEPMODE@
  425. CFLAGS = @CFLAGS@
  426. CPP = @CPP@
  427. CPPFLAGS = @CPPFLAGS@
  428. CXX = @CXX@
  429. CXXCPP = @CXXCPP@
  430. CXXDEPMODE = @CXXDEPMODE@
  431. CXXFLAGS = @CXXFLAGS@
  432. CYGPATH_W = @CYGPATH_W@
  433. DEFS = @DEFS@
  434. DEPDIR = @DEPDIR@
  435. DLLTOOL = @DLLTOOL@
  436. DSYMUTIL = @DSYMUTIL@
  437. DUMPBIN = @DUMPBIN@
  438. ECHO_C = @ECHO_C@
  439. ECHO_N = @ECHO_N@
  440. ECHO_T = @ECHO_T@
  441. EGREP = @EGREP@
  442. EXEEXT = @EXEEXT@
  443. FGREP = @FGREP@
  444. FIND = @FIND@
  445. FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@
  446. FONTCONFIG_LIBS = @FONTCONFIG_LIBS@
  447. FREETYPE_CFLAGS = @FREETYPE_CFLAGS@
  448. FREETYPE_CONFIG = @FREETYPE_CONFIG@
  449. FREETYPE_LIBS = @FREETYPE_LIBS@
  450. GOBJECT_CFLAGS = @GOBJECT_CFLAGS@
  451. GOBJECT_LIBS = @GOBJECT_LIBS@
  452. GREP = @GREP@
  453. GS = @GS@
  454. GTKDOC_CHECK = @GTKDOC_CHECK@
  455. GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
  456. GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
  457. GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
  458. GTKDOC_MKPDF = @GTKDOC_MKPDF@
  459. GTKDOC_REBASE = @GTKDOC_REBASE@
  460. HTML_DIR = @HTML_DIR@
  461. INSTALL = @INSTALL@
  462. INSTALL_DATA = @INSTALL_DATA@
  463. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  464. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  465. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  466. LD = @LD@
  467. LDFLAGS = @LDFLAGS@
  468. LIBM = @LIBM@
  469. LIBOBJS = @LIBOBJS@
  470. LIBRSVG_CFLAGS = @LIBRSVG_CFLAGS@
  471. LIBRSVG_LIBS = @LIBRSVG_LIBS@
  472. LIBS = @LIBS@
  473. LIBSPECTRE_CFLAGS = @LIBSPECTRE_CFLAGS@
  474. LIBSPECTRE_LIBS = @LIBSPECTRE_LIBS@
  475. LIBTOOL = @LIBTOOL@
  476. LIPO = @LIPO@
  477. LN_S = @LN_S@
  478. LTLIBOBJS = @LTLIBOBJS@
  479. LTP = @LTP@
  480. LTP_GENHTML = @LTP_GENHTML@
  481. LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
  482. MAKEINFO = @MAKEINFO@
  483. MANIFEST_TOOL = @MANIFEST_TOOL@
  484. MKDIR_P = @MKDIR_P@
  485. NM = @NM@
  486. NMEDIT = @NMEDIT@
  487. OBJDUMP = @OBJDUMP@
  488. OBJEXT = @OBJEXT@
  489. OTOOL = @OTOOL@
  490. OTOOL64 = @OTOOL64@
  491. PACKAGE = @PACKAGE@
  492. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  493. PACKAGE_NAME = @PACKAGE_NAME@
  494. PACKAGE_STRING = @PACKAGE_STRING@
  495. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  496. PACKAGE_URL = @PACKAGE_URL@
  497. PACKAGE_VERSION = @PACKAGE_VERSION@
  498. PATH_SEPARATOR = @PATH_SEPARATOR@
  499. PKGCONFIG_REQUIRES = @PKGCONFIG_REQUIRES@
  500. PKG_CONFIG = @PKG_CONFIG@
  501. POPPLER_CFLAGS = @POPPLER_CFLAGS@
  502. POPPLER_LIBS = @POPPLER_LIBS@
  503. RANLIB = @RANLIB@
  504. SED = @SED@
  505. SET_MAKE = @SET_MAKE@
  506. SHELL = @SHELL@
  507. SHLIB_EXT = @SHLIB_EXT@
  508. SHM_LIBS = @SHM_LIBS@
  509. SHTOOL = @SHTOOL@
  510. STRIP = @STRIP@
  511. VALGRIND_CFLAGS = @VALGRIND_CFLAGS@
  512. VALGRIND_LIBS = @VALGRIND_LIBS@
  513. VERSION = @VERSION@
  514. XARGS = @XARGS@
  515. XMKMF = @XMKMF@
  516. X_CFLAGS = @X_CFLAGS@
  517. X_EXTRA_LIBS = @X_EXTRA_LIBS@
  518. X_LIBS = @X_LIBS@
  519. X_PRE_LIBS = @X_PRE_LIBS@
  520. abs_builddir = @abs_builddir@
  521. abs_srcdir = @abs_srcdir@
  522. abs_top_builddir = @abs_top_builddir@
  523. abs_top_srcdir = @abs_top_srcdir@
  524. ac_ct_AR = @ac_ct_AR@
  525. ac_ct_CC = @ac_ct_CC@
  526. ac_ct_CXX = @ac_ct_CXX@
  527. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  528. am__include = @am__include@
  529. am__leading_dot = @am__leading_dot@
  530. am__quote = @am__quote@
  531. am__tar = @am__tar@
  532. am__untar = @am__untar@
  533. bindir = @bindir@
  534. build = @build@
  535. build_alias = @build_alias@
  536. build_cpu = @build_cpu@
  537. build_os = @build_os@
  538. build_vendor = @build_vendor@
  539. builddir = @builddir@
  540. cogl_CFLAGS = @cogl_CFLAGS@
  541. cogl_LIBS = @cogl_LIBS@
  542. datadir = @datadir@
  543. datarootdir = @datarootdir@
  544. directfb_CFLAGS = @directfb_CFLAGS@
  545. directfb_LIBS = @directfb_LIBS@
  546. docdir = @docdir@
  547. drm_CFLAGS = @drm_CFLAGS@
  548. drm_LIBS = @drm_LIBS@
  549. dvidir = @dvidir@
  550. egl_CFLAGS = @egl_CFLAGS@
  551. egl_LIBS = @egl_LIBS@
  552. exec_prefix = @exec_prefix@
  553. gallium_DIR = @gallium_DIR@
  554. gl_CFLAGS = @gl_CFLAGS@
  555. gl_LIBS = @gl_LIBS@
  556. glesv2_CFLAGS = @glesv2_CFLAGS@
  557. glesv2_LIBS = @glesv2_LIBS@
  558. glib_CFLAGS = @glib_CFLAGS@
  559. glib_LIBS = @glib_LIBS@
  560. gtk_CFLAGS = @gtk_CFLAGS@
  561. gtk_LIBS = @gtk_LIBS@
  562. host = @host@
  563. host_alias = @host_alias@
  564. host_cpu = @host_cpu@
  565. host_os = @host_os@
  566. host_vendor = @host_vendor@
  567. htmldir = @htmldir@
  568. includedir = @includedir@
  569. infodir = @infodir@
  570. install_sh = @install_sh@
  571. libdir = @libdir@
  572. libexecdir = @libexecdir@
  573. localedir = @localedir@
  574. localstatedir = @localstatedir@
  575. lzo_LIBS = @lzo_LIBS@
  576. mandir = @mandir@
  577. mesa_DIR = @mesa_DIR@
  578. mkdir_p = @mkdir_p@
  579. oldincludedir = @oldincludedir@
  580. pdfdir = @pdfdir@
  581. pixman_CFLAGS = @pixman_CFLAGS@
  582. pixman_LIBS = @pixman_LIBS@
  583. png_CFLAGS = @png_CFLAGS@
  584. png_LIBS = @png_LIBS@
  585. png_REQUIRES = @png_REQUIRES@
  586. prefix = @prefix@
  587. program_transform_name = @program_transform_name@
  588. psdir = @psdir@
  589. pthread_CFLAGS = @pthread_CFLAGS@
  590. pthread_LIBS = @pthread_LIBS@
  591. qt_CFLAGS = @qt_CFLAGS@
  592. qt_LIBS = @qt_LIBS@
  593. real_pthread_CFLAGS = @real_pthread_CFLAGS@
  594. real_pthread_LIBS = @real_pthread_LIBS@
  595. runstatedir = @runstatedir@
  596. sbindir = @sbindir@
  597. sharedstatedir = @sharedstatedir@
  598. shm_LIBS = @shm_LIBS@
  599. skia_DIR = @skia_DIR@
  600. srcdir = @srcdir@
  601. sysconfdir = @sysconfdir@
  602. target_alias = @target_alias@
  603. top_build_prefix = @top_build_prefix@
  604. top_builddir = @top_builddir@
  605. top_srcdir = @top_srcdir@
  606. xcb_CFLAGS = @xcb_CFLAGS@
  607. xcb_LIBS = @xcb_LIBS@
  608. xcb_shm_CFLAGS = @xcb_shm_CFLAGS@
  609. xcb_shm_LIBS = @xcb_shm_LIBS@
  610. xlib_CFLAGS = @xlib_CFLAGS@
  611. xlib_LIBS = @xlib_LIBS@
  612. xlib_xcb_CFLAGS = @xlib_xcb_CFLAGS@
  613. xlib_xcb_LIBS = @xlib_xcb_LIBS@
  614. xlib_xrender_CFLAGS = @xlib_xrender_CFLAGS@
  615. xlib_xrender_LIBS = @xlib_xrender_LIBS@
  616. BUILT_SOURCES =
  617. CLEANFILES = *.i *.s *.gch $(EXTRA_LTLIBRARIES) $(EXTRA_PROGRAMS) \
  618. $(check_PROGRAMS)
  619. DISTCLEANFILES = $(BUILT_SOURCES)
  620. EXTRA_DIST = gpl.txt
  621. EXTRA_LTLIBRARIES =
  622. MAINTAINERCLEANFILES = Makefile.in
  623. noinst_LTLIBRARIES = libpdiff.la
  624. libpdiff_la_SOURCES = \
  625. pdiff.h \
  626. lpyramid.c \
  627. lpyramid.h \
  628. pdiff.c
  629. perceptualdiff_SOURCES = \
  630. args.c \
  631. args.h \
  632. perceptualdiff.c
  633. AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(CAIRO_CFLAGS)
  634. LDADD = libpdiff.la $(top_builddir)/src/libcairo.la
  635. all: $(BUILT_SOURCES)
  636. $(MAKE) $(AM_MAKEFLAGS) all-am
  637. .SUFFIXES:
  638. .SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs
  639. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/Makefile.am.common $(am__configure_deps)
  640. @for dep in $?; do \
  641. case '$(am__configure_deps)' in \
  642. *$$dep*) \
  643. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  644. && { if test -f $@; then exit 0; else break; fi; }; \
  645. exit 1;; \
  646. esac; \
  647. done; \
  648. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign test/pdiff/Makefile'; \
  649. $(am__cd) $(top_srcdir) && \
  650. $(AUTOMAKE) --foreign test/pdiff/Makefile
  651. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  652. @case '$?' in \
  653. *config.status*) \
  654. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  655. *) \
  656. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  657. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  658. esac;
  659. $(top_srcdir)/build/Makefile.am.common $(am__empty):
  660. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  661. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  662. $(top_srcdir)/configure: $(am__configure_deps)
  663. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  664. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  665. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  666. $(am__aclocal_m4_deps):
  667. clean-noinstLTLIBRARIES:
  668. -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
  669. @list='$(noinst_LTLIBRARIES)'; \
  670. locs=`for p in $$list; do echo $$p; done | \
  671. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  672. sort -u`; \
  673. test -z "$$locs" || { \
  674. echo rm -f $${locs}; \
  675. rm -f $${locs}; \
  676. }
  677. libpdiff.la: $(libpdiff_la_OBJECTS) $(libpdiff_la_DEPENDENCIES) $(EXTRA_libpdiff_la_DEPENDENCIES)
  678. $(AM_V_CCLD)$(LINK) $(libpdiff_la_OBJECTS) $(libpdiff_la_LIBADD) $(LIBS)
  679. clean-checkPROGRAMS:
  680. @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
  681. echo " rm -f" $$list; \
  682. rm -f $$list || exit $$?; \
  683. test -n "$(EXEEXT)" || exit 0; \
  684. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  685. echo " rm -f" $$list; \
  686. rm -f $$list
  687. perceptualdiff$(EXEEXT): $(perceptualdiff_OBJECTS) $(perceptualdiff_DEPENDENCIES) $(EXTRA_perceptualdiff_DEPENDENCIES)
  688. @rm -f perceptualdiff$(EXEEXT)
  689. $(AM_V_CCLD)$(LINK) $(perceptualdiff_OBJECTS) $(perceptualdiff_LDADD) $(LIBS)
  690. mostlyclean-compile:
  691. -rm -f *.$(OBJEXT)
  692. distclean-compile:
  693. -rm -f *.tab.c
  694. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/args.Po@am__quote@
  695. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lpyramid.Plo@am__quote@
  696. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdiff.Plo@am__quote@
  697. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/perceptualdiff.Po@am__quote@
  698. .c.o:
  699. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  700. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  701. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  702. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  703. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  704. .c.obj:
  705. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  706. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  707. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  708. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  709. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  710. .c.lo:
  711. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  712. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  713. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  714. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  715. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  716. mostlyclean-libtool:
  717. -rm -f *.lo
  718. clean-libtool:
  719. -rm -rf .libs _libs
  720. ID: $(am__tagged_files)
  721. $(am__define_uniq_tagged_files); mkid -fID $$unique
  722. tags: tags-am
  723. TAGS: tags
  724. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  725. set x; \
  726. here=`pwd`; \
  727. $(am__define_uniq_tagged_files); \
  728. shift; \
  729. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  730. test -n "$$unique" || unique=$$empty_fix; \
  731. if test $$# -gt 0; then \
  732. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  733. "$$@" $$unique; \
  734. else \
  735. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  736. $$unique; \
  737. fi; \
  738. fi
  739. ctags: ctags-am
  740. CTAGS: ctags
  741. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  742. $(am__define_uniq_tagged_files); \
  743. test -z "$(CTAGS_ARGS)$$unique" \
  744. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  745. $$unique
  746. GTAGS:
  747. here=`$(am__cd) $(top_builddir) && pwd` \
  748. && $(am__cd) $(top_srcdir) \
  749. && gtags -i $(GTAGS_ARGS) "$$here"
  750. cscopelist: cscopelist-am
  751. cscopelist-am: $(am__tagged_files)
  752. list='$(am__tagged_files)'; \
  753. case "$(srcdir)" in \
  754. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  755. *) sdir=$(subdir)/$(srcdir) ;; \
  756. esac; \
  757. for i in $$list; do \
  758. if test -f "$$i"; then \
  759. echo "$(subdir)/$$i"; \
  760. else \
  761. echo "$$sdir/$$i"; \
  762. fi; \
  763. done >> $(top_builddir)/cscope.files
  764. distclean-tags:
  765. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  766. # Recover from deleted '.trs' file; this should ensure that
  767. # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
  768. # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
  769. # to avoid problems with "make -n".
  770. .log.trs:
  771. rm -f $< $@
  772. $(MAKE) $(AM_MAKEFLAGS) $<
  773. # Leading 'am--fnord' is there to ensure the list of targets does not
  774. # expand to empty, as could happen e.g. with make check TESTS=''.
  775. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
  776. am--force-recheck:
  777. @:
  778. $(TEST_SUITE_LOG): $(TEST_LOGS)
  779. @$(am__set_TESTS_bases); \
  780. am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
  781. redo_bases=`for i in $$bases; do \
  782. am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
  783. done`; \
  784. if test -n "$$redo_bases"; then \
  785. redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
  786. redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
  787. if $(am__make_dryrun); then :; else \
  788. rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
  789. fi; \
  790. fi; \
  791. if test -n "$$am__remaking_logs"; then \
  792. echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
  793. "recursion detected" >&2; \
  794. elif test -n "$$redo_logs"; then \
  795. am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
  796. fi; \
  797. if $(am__make_dryrun); then :; else \
  798. st=0; \
  799. errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
  800. for i in $$redo_bases; do \
  801. test -f $$i.trs && test -r $$i.trs \
  802. || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
  803. test -f $$i.log && test -r $$i.log \
  804. || { echo "$$errmsg $$i.log" >&2; st=1; }; \
  805. done; \
  806. test $$st -eq 0 || exit 1; \
  807. fi
  808. @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
  809. ws='[ ]'; \
  810. results=`for b in $$bases; do echo $$b.trs; done`; \
  811. test -n "$$results" || results=/dev/null; \
  812. all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
  813. pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
  814. fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
  815. skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
  816. xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
  817. xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
  818. error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
  819. if test `expr $$fail + $$xpass + $$error` -eq 0; then \
  820. success=true; \
  821. else \
  822. success=false; \
  823. fi; \
  824. br='==================='; br=$$br$$br$$br$$br; \
  825. result_count () \
  826. { \
  827. if test x"$$1" = x"--maybe-color"; then \
  828. maybe_colorize=yes; \
  829. elif test x"$$1" = x"--no-color"; then \
  830. maybe_colorize=no; \
  831. else \
  832. echo "$@: invalid 'result_count' usage" >&2; exit 4; \
  833. fi; \
  834. shift; \
  835. desc=$$1 count=$$2; \
  836. if test $$maybe_colorize = yes && test $$count -gt 0; then \
  837. color_start=$$3 color_end=$$std; \
  838. else \
  839. color_start= color_end=; \
  840. fi; \
  841. echo "$${color_start}# $$desc $$count$${color_end}"; \
  842. }; \
  843. create_testsuite_report () \
  844. { \
  845. result_count $$1 "TOTAL:" $$all "$$brg"; \
  846. result_count $$1 "PASS: " $$pass "$$grn"; \
  847. result_count $$1 "SKIP: " $$skip "$$blu"; \
  848. result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
  849. result_count $$1 "FAIL: " $$fail "$$red"; \
  850. result_count $$1 "XPASS:" $$xpass "$$red"; \
  851. result_count $$1 "ERROR:" $$error "$$mgn"; \
  852. }; \
  853. { \
  854. echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
  855. $(am__rst_title); \
  856. create_testsuite_report --no-color; \
  857. echo; \
  858. echo ".. contents:: :depth: 2"; \
  859. echo; \
  860. for b in $$bases; do echo $$b; done \
  861. | $(am__create_global_log); \
  862. } >$(TEST_SUITE_LOG).tmp || exit 1; \
  863. mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
  864. if $$success; then \
  865. col="$$grn"; \
  866. else \
  867. col="$$red"; \
  868. test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
  869. fi; \
  870. echo "$${col}$$br$${std}"; \
  871. echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \
  872. echo "$${col}$$br$${std}"; \
  873. create_testsuite_report --maybe-color; \
  874. echo "$$col$$br$$std"; \
  875. if $$success; then :; else \
  876. echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \
  877. if test -n "$(PACKAGE_BUGREPORT)"; then \
  878. echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
  879. fi; \
  880. echo "$$col$$br$$std"; \
  881. fi; \
  882. $$success || exit 1
  883. check-TESTS:
  884. @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
  885. @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
  886. @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
  887. @set +e; $(am__set_TESTS_bases); \
  888. log_list=`for i in $$bases; do echo $$i.log; done`; \
  889. trs_list=`for i in $$bases; do echo $$i.trs; done`; \
  890. log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
  891. $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
  892. exit $$?;
  893. recheck: all $(check_PROGRAMS)
  894. @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
  895. @set +e; $(am__set_TESTS_bases); \
  896. bases=`for i in $$bases; do echo $$i; done \
  897. | $(am__list_recheck_tests)` || exit 1; \
  898. log_list=`for i in $$bases; do echo $$i.log; done`; \
  899. log_list=`echo $$log_list`; \
  900. $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
  901. am__force_recheck=am--force-recheck \
  902. TEST_LOGS="$$log_list"; \
  903. exit $$?
  904. .test.log:
  905. @p='$<'; \
  906. $(am__set_b); \
  907. $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
  908. --log-file $$b.log --trs-file $$b.trs \
  909. $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
  910. "$$tst" $(AM_TESTS_FD_REDIRECT)
  911. @am__EXEEXT_TRUE@.test$(EXEEXT).log:
  912. @am__EXEEXT_TRUE@ @p='$<'; \
  913. @am__EXEEXT_TRUE@ $(am__set_b); \
  914. @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
  915. @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
  916. @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
  917. @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
  918. distdir: $(DISTFILES)
  919. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  920. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  921. list='$(DISTFILES)'; \
  922. dist_files=`for file in $$list; do echo $$file; done | \
  923. sed -e "s|^$$srcdirstrip/||;t" \
  924. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  925. case $$dist_files in \
  926. */*) $(MKDIR_P) `echo "$$dist_files" | \
  927. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  928. sort -u` ;; \
  929. esac; \
  930. for file in $$dist_files; do \
  931. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  932. if test -d $$d/$$file; then \
  933. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  934. if test -d "$(distdir)/$$file"; then \
  935. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  936. fi; \
  937. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  938. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  939. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  940. fi; \
  941. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  942. else \
  943. test -f "$(distdir)/$$file" \
  944. || cp -p $$d/$$file "$(distdir)/$$file" \
  945. || exit 1; \
  946. fi; \
  947. done
  948. check-am: all-am
  949. $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
  950. $(MAKE) $(AM_MAKEFLAGS) check-TESTS
  951. check: $(BUILT_SOURCES)
  952. $(MAKE) $(AM_MAKEFLAGS) check-am
  953. all-am: Makefile $(LTLIBRARIES)
  954. installdirs:
  955. install: $(BUILT_SOURCES)
  956. $(MAKE) $(AM_MAKEFLAGS) install-am
  957. install-exec: install-exec-am
  958. install-data: install-data-am
  959. uninstall: uninstall-am
  960. install-am: all-am
  961. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  962. installcheck: installcheck-am
  963. install-strip:
  964. if test -z '$(STRIP)'; then \
  965. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  966. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  967. install; \
  968. else \
  969. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  970. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  971. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  972. fi
  973. mostlyclean-generic:
  974. -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
  975. -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
  976. -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
  977. clean-generic:
  978. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  979. distclean-generic:
  980. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  981. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  982. -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
  983. maintainer-clean-generic:
  984. @echo "This command is intended for maintainers to use"
  985. @echo "it deletes files that may require special tools to rebuild."
  986. -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
  987. -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
  988. clean: clean-am
  989. clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
  990. clean-noinstLTLIBRARIES mostlyclean-am
  991. distclean: distclean-am
  992. -rm -rf ./$(DEPDIR)
  993. -rm -f Makefile
  994. distclean-am: clean-am distclean-compile distclean-generic \
  995. distclean-tags
  996. dvi: dvi-am
  997. dvi-am:
  998. html: html-am
  999. html-am:
  1000. info: info-am
  1001. info-am:
  1002. install-data-am:
  1003. install-dvi: install-dvi-am
  1004. install-dvi-am:
  1005. install-exec-am:
  1006. install-html: install-html-am
  1007. install-html-am:
  1008. install-info: install-info-am
  1009. install-info-am:
  1010. install-man:
  1011. install-pdf: install-pdf-am
  1012. install-pdf-am:
  1013. install-ps: install-ps-am
  1014. install-ps-am:
  1015. installcheck-am:
  1016. maintainer-clean: maintainer-clean-am
  1017. -rm -rf ./$(DEPDIR)
  1018. -rm -f Makefile
  1019. maintainer-clean-am: distclean-am maintainer-clean-generic
  1020. mostlyclean: mostlyclean-am
  1021. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  1022. mostlyclean-libtool
  1023. pdf: pdf-am
  1024. pdf-am:
  1025. ps: ps-am
  1026. ps-am:
  1027. uninstall-am:
  1028. .MAKE: all check check-am install install-am install-strip
  1029. .PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
  1030. clean-checkPROGRAMS clean-generic clean-libtool \
  1031. clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \
  1032. distclean-compile distclean-generic distclean-libtool \
  1033. distclean-tags distdir dvi dvi-am html html-am info info-am \
  1034. install install-am install-data install-data-am install-dvi \
  1035. install-dvi-am install-exec install-exec-am install-html \
  1036. install-html-am install-info install-info-am install-man \
  1037. install-pdf install-pdf-am install-ps install-ps-am \
  1038. install-strip installcheck installcheck-am installdirs \
  1039. maintainer-clean maintainer-clean-generic mostlyclean \
  1040. mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
  1041. pdf pdf-am ps ps-am recheck tags tags-am uninstall \
  1042. uninstall-am
  1043. .PRECIOUS: Makefile
  1044. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  1045. # Otherwise a system limit (for SysV at least) may be exceeded.
  1046. .NOEXPORT: