You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.in 46 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149
  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. check_PROGRAMS = $(am__EXEEXT_1) test1Formatted$(EXEEXT) \
  87. test2Formatted$(EXEEXT)
  88. subdir = tests
  89. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  90. am__aclocal_m4_deps = $(top_srcdir)/configure.ac
  91. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  92. $(ACLOCAL_M4)
  93. DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
  94. mkinstalldirs = $(install_sh) -d
  95. CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/json_config.h
  96. CONFIG_CLEAN_FILES =
  97. CONFIG_CLEAN_VPATH_FILES =
  98. am__EXEEXT_1 = test1$(EXEEXT) test2$(EXEEXT) test4$(EXEEXT) \
  99. testReplaceExisting$(EXEEXT) test_parse_int64$(EXEEXT) \
  100. test_null$(EXEEXT) test_cast$(EXEEXT) test_parse$(EXEEXT) \
  101. test_locale$(EXEEXT) test_charcase$(EXEEXT) \
  102. test_printbuf$(EXEEXT) test_set_serializer$(EXEEXT)
  103. test1_SOURCES = test1.c
  104. test1_OBJECTS = test1.$(OBJEXT)
  105. test1_LDADD = $(LDADD)
  106. test1_DEPENDENCIES = $(LIBJSON_LA)
  107. AM_V_lt = $(am__v_lt_@AM_V@)
  108. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  109. am__v_lt_0 = --silent
  110. am__v_lt_1 =
  111. am_test1Formatted_OBJECTS = test1Formatted-test1.$(OBJEXT) \
  112. test1Formatted-parse_flags.$(OBJEXT)
  113. test1Formatted_OBJECTS = $(am_test1Formatted_OBJECTS)
  114. test1Formatted_LDADD = $(LDADD)
  115. test1Formatted_DEPENDENCIES = $(LIBJSON_LA)
  116. test2_SOURCES = test2.c
  117. test2_OBJECTS = test2.$(OBJEXT)
  118. test2_LDADD = $(LDADD)
  119. test2_DEPENDENCIES = $(LIBJSON_LA)
  120. am_test2Formatted_OBJECTS = test2Formatted-test2.$(OBJEXT) \
  121. test2Formatted-parse_flags.$(OBJEXT)
  122. test2Formatted_OBJECTS = $(am_test2Formatted_OBJECTS)
  123. test2Formatted_LDADD = $(LDADD)
  124. test2Formatted_DEPENDENCIES = $(LIBJSON_LA)
  125. test4_SOURCES = test4.c
  126. test4_OBJECTS = test4.$(OBJEXT)
  127. test4_LDADD = $(LDADD)
  128. test4_DEPENDENCIES = $(LIBJSON_LA)
  129. testReplaceExisting_SOURCES = testReplaceExisting.c
  130. testReplaceExisting_OBJECTS = testReplaceExisting.$(OBJEXT)
  131. testReplaceExisting_LDADD = $(LDADD)
  132. testReplaceExisting_DEPENDENCIES = $(LIBJSON_LA)
  133. test_cast_SOURCES = test_cast.c
  134. test_cast_OBJECTS = test_cast.$(OBJEXT)
  135. test_cast_LDADD = $(LDADD)
  136. test_cast_DEPENDENCIES = $(LIBJSON_LA)
  137. test_charcase_SOURCES = test_charcase.c
  138. test_charcase_OBJECTS = test_charcase.$(OBJEXT)
  139. test_charcase_LDADD = $(LDADD)
  140. test_charcase_DEPENDENCIES = $(LIBJSON_LA)
  141. test_locale_SOURCES = test_locale.c
  142. test_locale_OBJECTS = test_locale.$(OBJEXT)
  143. test_locale_LDADD = $(LDADD)
  144. test_locale_DEPENDENCIES = $(LIBJSON_LA)
  145. test_null_SOURCES = test_null.c
  146. test_null_OBJECTS = test_null.$(OBJEXT)
  147. test_null_LDADD = $(LDADD)
  148. test_null_DEPENDENCIES = $(LIBJSON_LA)
  149. test_parse_SOURCES = test_parse.c
  150. test_parse_OBJECTS = test_parse.$(OBJEXT)
  151. test_parse_LDADD = $(LDADD)
  152. test_parse_DEPENDENCIES = $(LIBJSON_LA)
  153. test_parse_int64_SOURCES = test_parse_int64.c
  154. test_parse_int64_OBJECTS = test_parse_int64.$(OBJEXT)
  155. test_parse_int64_LDADD = $(LDADD)
  156. test_parse_int64_DEPENDENCIES = $(LIBJSON_LA)
  157. test_printbuf_SOURCES = test_printbuf.c
  158. test_printbuf_OBJECTS = test_printbuf.$(OBJEXT)
  159. test_printbuf_LDADD = $(LDADD)
  160. test_printbuf_DEPENDENCIES = $(LIBJSON_LA)
  161. test_set_serializer_SOURCES = test_set_serializer.c
  162. test_set_serializer_OBJECTS = test_set_serializer.$(OBJEXT)
  163. test_set_serializer_LDADD = $(LDADD)
  164. test_set_serializer_DEPENDENCIES = $(LIBJSON_LA)
  165. AM_V_P = $(am__v_P_@AM_V@)
  166. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  167. am__v_P_0 = false
  168. am__v_P_1 = :
  169. AM_V_GEN = $(am__v_GEN_@AM_V@)
  170. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  171. am__v_GEN_0 = @echo " GEN " $@;
  172. am__v_GEN_1 =
  173. AM_V_at = $(am__v_at_@AM_V@)
  174. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  175. am__v_at_0 = @
  176. am__v_at_1 =
  177. DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
  178. depcomp = $(SHELL) $(top_srcdir)/depcomp
  179. am__depfiles_maybe = depfiles
  180. am__mv = mv -f
  181. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  182. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  183. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  184. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  185. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  186. $(AM_CFLAGS) $(CFLAGS)
  187. AM_V_CC = $(am__v_CC_@AM_V@)
  188. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  189. am__v_CC_0 = @echo " CC " $@;
  190. am__v_CC_1 =
  191. CCLD = $(CC)
  192. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  193. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  194. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  195. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  196. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  197. am__v_CCLD_0 = @echo " CCLD " $@;
  198. am__v_CCLD_1 =
  199. SOURCES = test1.c $(test1Formatted_SOURCES) test2.c \
  200. $(test2Formatted_SOURCES) test4.c testReplaceExisting.c \
  201. test_cast.c test_charcase.c test_locale.c test_null.c \
  202. test_parse.c test_parse_int64.c test_printbuf.c \
  203. test_set_serializer.c
  204. DIST_SOURCES = test1.c $(test1Formatted_SOURCES) test2.c \
  205. $(test2Formatted_SOURCES) test4.c testReplaceExisting.c \
  206. test_cast.c test_charcase.c test_locale.c test_null.c \
  207. test_parse.c test_parse_int64.c test_printbuf.c \
  208. test_set_serializer.c
  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. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  215. # Read a list of newline-separated strings from the standard input,
  216. # and print each of them once, without duplicates. Input order is
  217. # *not* preserved.
  218. am__uniquify_input = $(AWK) '\
  219. BEGIN { nonempty = 0; } \
  220. { items[$$0] = 1; nonempty = 1; } \
  221. END { if (nonempty) { for (i in items) print i; }; } \
  222. '
  223. # Make sure the list of sources is unique. This is necessary because,
  224. # e.g., the same source file might be shared among _SOURCES variables
  225. # for different programs/libraries.
  226. am__define_uniq_tagged_files = \
  227. list='$(am__tagged_files)'; \
  228. unique=`for i in $$list; do \
  229. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  230. done | $(am__uniquify_input)`
  231. ETAGS = etags
  232. CTAGS = ctags
  233. am__tty_colors_dummy = \
  234. mgn= red= grn= lgn= blu= brg= std=; \
  235. am__color_tests=no
  236. am__tty_colors = { \
  237. $(am__tty_colors_dummy); \
  238. if test "X$(AM_COLOR_TESTS)" = Xno; then \
  239. am__color_tests=no; \
  240. elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
  241. am__color_tests=yes; \
  242. elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
  243. am__color_tests=yes; \
  244. fi; \
  245. if test $$am__color_tests = yes; then \
  246. red=''; \
  247. grn=''; \
  248. lgn=''; \
  249. blu=''; \
  250. mgn=''; \
  251. brg=''; \
  252. std=''; \
  253. fi; \
  254. }
  255. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  256. am__vpath_adj = case $$p in \
  257. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  258. *) f=$$p;; \
  259. esac;
  260. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  261. am__install_max = 40
  262. am__nobase_strip_setup = \
  263. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  264. am__nobase_strip = \
  265. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  266. am__nobase_list = $(am__nobase_strip_setup); \
  267. for p in $$list; do echo "$$p $$p"; done | \
  268. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  269. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  270. if (++n[$$2] == $(am__install_max)) \
  271. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  272. END { for (dir in files) print dir, files[dir] }'
  273. am__base_list = \
  274. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  275. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  276. am__uninstall_files_from_dir = { \
  277. test -z "$$files" \
  278. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  279. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  280. $(am__cd) "$$dir" && rm -f $$files; }; \
  281. }
  282. am__recheck_rx = ^[ ]*:recheck:[ ]*
  283. am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
  284. am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
  285. # A command that, given a newline-separated list of test names on the
  286. # standard input, print the name of the tests that are to be re-run
  287. # upon "make recheck".
  288. am__list_recheck_tests = $(AWK) '{ \
  289. recheck = 1; \
  290. while ((rc = (getline line < ($$0 ".trs"))) != 0) \
  291. { \
  292. if (rc < 0) \
  293. { \
  294. if ((getline line2 < ($$0 ".log")) < 0) \
  295. recheck = 0; \
  296. break; \
  297. } \
  298. else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
  299. { \
  300. recheck = 0; \
  301. break; \
  302. } \
  303. else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
  304. { \
  305. break; \
  306. } \
  307. }; \
  308. if (recheck) \
  309. print $$0; \
  310. close ($$0 ".trs"); \
  311. close ($$0 ".log"); \
  312. }'
  313. # A command that, given a newline-separated list of test names on the
  314. # standard input, create the global log from their .trs and .log files.
  315. am__create_global_log = $(AWK) ' \
  316. function fatal(msg) \
  317. { \
  318. print "fatal: making $@: " msg | "cat >&2"; \
  319. exit 1; \
  320. } \
  321. function rst_section(header) \
  322. { \
  323. print header; \
  324. len = length(header); \
  325. for (i = 1; i <= len; i = i + 1) \
  326. printf "="; \
  327. printf "\n\n"; \
  328. } \
  329. { \
  330. copy_in_global_log = 1; \
  331. global_test_result = "RUN"; \
  332. while ((rc = (getline line < ($$0 ".trs"))) != 0) \
  333. { \
  334. if (rc < 0) \
  335. fatal("failed to read from " $$0 ".trs"); \
  336. if (line ~ /$(am__global_test_result_rx)/) \
  337. { \
  338. sub("$(am__global_test_result_rx)", "", line); \
  339. sub("[ ]*$$", "", line); \
  340. global_test_result = line; \
  341. } \
  342. else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
  343. copy_in_global_log = 0; \
  344. }; \
  345. if (copy_in_global_log) \
  346. { \
  347. rst_section(global_test_result ": " $$0); \
  348. while ((rc = (getline line < ($$0 ".log"))) != 0) \
  349. { \
  350. if (rc < 0) \
  351. fatal("failed to read from " $$0 ".log"); \
  352. print line; \
  353. }; \
  354. printf "\n"; \
  355. }; \
  356. close ($$0 ".trs"); \
  357. close ($$0 ".log"); \
  358. }'
  359. # Restructured Text title.
  360. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
  361. # Solaris 10 'make', and several other traditional 'make' implementations,
  362. # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
  363. # by disabling -e (using the XSI extension "set +e") if it's set.
  364. am__sh_e_setup = case $$- in *e*) set +e;; esac
  365. # Default flags passed to test drivers.
  366. am__common_driver_flags = \
  367. --color-tests "$$am__color_tests" \
  368. --enable-hard-errors "$$am__enable_hard_errors" \
  369. --expect-failure "$$am__expect_failure"
  370. # To be inserted before the command running the test. Creates the
  371. # directory for the log if needed. Stores in $dir the directory
  372. # containing $f, in $tst the test, in $log the log. Executes the
  373. # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
  374. # passes TESTS_ENVIRONMENT. Set up options for the wrapper that
  375. # will run the test scripts (or their associated LOG_COMPILER, if
  376. # thy have one).
  377. am__check_pre = \
  378. $(am__sh_e_setup); \
  379. $(am__vpath_adj_setup) $(am__vpath_adj) \
  380. $(am__tty_colors); \
  381. srcdir=$(srcdir); export srcdir; \
  382. case "$@" in \
  383. */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
  384. *) am__odir=.;; \
  385. esac; \
  386. test "x$$am__odir" = x"." || test -d "$$am__odir" \
  387. || $(MKDIR_P) "$$am__odir" || exit $$?; \
  388. if test -f "./$$f"; then dir=./; \
  389. elif test -f "$$f"; then dir=; \
  390. else dir="$(srcdir)/"; fi; \
  391. tst=$$dir$$f; log='$@'; \
  392. if test -n '$(DISABLE_HARD_ERRORS)'; then \
  393. am__enable_hard_errors=no; \
  394. else \
  395. am__enable_hard_errors=yes; \
  396. fi; \
  397. case " $(XFAIL_TESTS) " in \
  398. *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
  399. am__expect_failure=yes;; \
  400. *) \
  401. am__expect_failure=no;; \
  402. esac; \
  403. $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
  404. # A shell command to get the names of the tests scripts with any registered
  405. # extension removed (i.e., equivalently, the names of the test logs, with
  406. # the '.log' extension removed). The result is saved in the shell variable
  407. # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
  408. # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
  409. # since that might cause problem with VPATH rewrites for suffix-less tests.
  410. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
  411. am__set_TESTS_bases = \
  412. bases='$(TEST_LOGS)'; \
  413. bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
  414. bases=`echo $$bases`
  415. RECHECK_LOGS = $(TEST_LOGS)
  416. AM_RECURSIVE_TARGETS = check recheck
  417. TEST_SUITE_LOG = test-suite.log
  418. TEST_EXTENSIONS = @EXEEXT@ .test
  419. am__test_logs1 = $(TESTS:=.log)
  420. am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
  421. TEST_LOGS = $(am__test_logs2:.test.log=.log)
  422. TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver
  423. TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
  424. $(TEST_LOG_FLAGS)
  425. am__set_b = \
  426. case '$@' in \
  427. */*) \
  428. case '$*' in \
  429. */*) b='$*';; \
  430. *) b=`echo '$@' | sed 's/\.log$$//'`; \
  431. esac;; \
  432. *) \
  433. b='$*';; \
  434. esac
  435. am__DIST_COMMON = $(srcdir)/../Makefile.am.inc $(srcdir)/Makefile.in \
  436. $(top_srcdir)/depcomp $(top_srcdir)/test-driver
  437. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  438. ACLOCAL = @ACLOCAL@
  439. AMTAR = @AMTAR@
  440. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  441. AR = @AR@
  442. AUTOCONF = @AUTOCONF@
  443. AUTOHEADER = @AUTOHEADER@
  444. AUTOMAKE = @AUTOMAKE@
  445. AWK = @AWK@
  446. CC = @CC@
  447. CCDEPMODE = @CCDEPMODE@
  448. CFLAGS = @CFLAGS@
  449. CPP = @CPP@
  450. CPPFLAGS = @CPPFLAGS@
  451. CYGPATH_W = @CYGPATH_W@
  452. DEFS = @DEFS@
  453. DEPDIR = @DEPDIR@
  454. DLLTOOL = @DLLTOOL@
  455. DSYMUTIL = @DSYMUTIL@
  456. DUMPBIN = @DUMPBIN@
  457. ECHO_C = @ECHO_C@
  458. ECHO_N = @ECHO_N@
  459. ECHO_T = @ECHO_T@
  460. EGREP = @EGREP@
  461. EXEEXT = @EXEEXT@
  462. FGREP = @FGREP@
  463. GREP = @GREP@
  464. INSTALL = @INSTALL@
  465. INSTALL_DATA = @INSTALL_DATA@
  466. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  467. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  468. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  469. JSON_BSYMBOLIC_LDFLAGS = @JSON_BSYMBOLIC_LDFLAGS@
  470. LD = @LD@
  471. LDFLAGS = @LDFLAGS@
  472. LIBOBJS = @LIBOBJS@
  473. LIBS = @LIBS@
  474. LIBTOOL = @LIBTOOL@
  475. LIPO = @LIPO@
  476. LN_S = @LN_S@
  477. LTLIBOBJS = @LTLIBOBJS@
  478. MAKEINFO = @MAKEINFO@
  479. MANIFEST_TOOL = @MANIFEST_TOOL@
  480. MKDIR_P = @MKDIR_P@
  481. NM = @NM@
  482. NMEDIT = @NMEDIT@
  483. OBJDUMP = @OBJDUMP@
  484. OBJEXT = @OBJEXT@
  485. OTOOL = @OTOOL@
  486. OTOOL64 = @OTOOL64@
  487. PACKAGE = @PACKAGE@
  488. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  489. PACKAGE_NAME = @PACKAGE_NAME@
  490. PACKAGE_STRING = @PACKAGE_STRING@
  491. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  492. PACKAGE_URL = @PACKAGE_URL@
  493. PACKAGE_VERSION = @PACKAGE_VERSION@
  494. PATH_SEPARATOR = @PATH_SEPARATOR@
  495. RANLIB = @RANLIB@
  496. SED = @SED@
  497. SET_MAKE = @SET_MAKE@
  498. SHELL = @SHELL@
  499. STRIP = @STRIP@
  500. VERSION = @VERSION@
  501. abs_builddir = @abs_builddir@
  502. abs_srcdir = @abs_srcdir@
  503. abs_top_builddir = @abs_top_builddir@
  504. abs_top_srcdir = @abs_top_srcdir@
  505. ac_ct_AR = @ac_ct_AR@
  506. ac_ct_CC = @ac_ct_CC@
  507. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  508. am__include = @am__include@
  509. am__leading_dot = @am__leading_dot@
  510. am__quote = @am__quote@
  511. am__tar = @am__tar@
  512. am__untar = @am__untar@
  513. bindir = @bindir@
  514. build = @build@
  515. build_alias = @build_alias@
  516. build_cpu = @build_cpu@
  517. build_os = @build_os@
  518. build_vendor = @build_vendor@
  519. builddir = @builddir@
  520. datadir = @datadir@
  521. datarootdir = @datarootdir@
  522. docdir = @docdir@
  523. dvidir = @dvidir@
  524. exec_prefix = @exec_prefix@
  525. host = @host@
  526. host_alias = @host_alias@
  527. host_cpu = @host_cpu@
  528. host_os = @host_os@
  529. host_vendor = @host_vendor@
  530. htmldir = @htmldir@
  531. includedir = @includedir@
  532. infodir = @infodir@
  533. install_sh = @install_sh@
  534. libdir = @libdir@
  535. libexecdir = @libexecdir@
  536. localedir = @localedir@
  537. localstatedir = @localstatedir@
  538. mandir = @mandir@
  539. mkdir_p = @mkdir_p@
  540. oldincludedir = @oldincludedir@
  541. pdfdir = @pdfdir@
  542. prefix = @prefix@
  543. program_transform_name = @program_transform_name@
  544. psdir = @psdir@
  545. sbindir = @sbindir@
  546. sharedstatedir = @sharedstatedir@
  547. srcdir = @srcdir@
  548. sysconfdir = @sysconfdir@
  549. target_alias = @target_alias@
  550. top_build_prefix = @top_build_prefix@
  551. top_builddir = @top_builddir@
  552. top_srcdir = @top_srcdir@
  553. AM_CFLAGS = -Wall -Werror -Wno-error=deprecated-declarations -Wextra -Wwrite-strings -Wno-unused-parameter -std=gnu99 -D_GNU_SOURCE -D_REENTRANT
  554. LDADD = $(LIBJSON_LA)
  555. LIBJSON_LA = $(top_builddir)/libjson-c.la
  556. TESTS = test1.test test2.test test4.test testReplaceExisting.test \
  557. test_parse_int64.test test_null.test test_cast.test \
  558. test_parse.test test_locale.test test_charcase.test \
  559. test_printbuf.test test_set_serializer.test
  560. test1Formatted_SOURCES = test1.c parse_flags.c
  561. test1Formatted_CPPFLAGS = -DTEST_FORMATTED
  562. test2Formatted_SOURCES = test2.c parse_flags.c
  563. test2Formatted_CPPFLAGS = -DTEST_FORMATTED
  564. EXTRA_DIST = $(TESTS)
  565. testsubdir = testSubDir
  566. TESTS_ENVIRONMENT = top_builddir=$(top_builddir)
  567. all: all-am
  568. .SUFFIXES:
  569. .SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs
  570. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/../Makefile.am.inc $(am__configure_deps)
  571. @for dep in $?; do \
  572. case '$(am__configure_deps)' in \
  573. *$$dep*) \
  574. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  575. && { if test -f $@; then exit 0; else break; fi; }; \
  576. exit 1;; \
  577. esac; \
  578. done; \
  579. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/Makefile'; \
  580. $(am__cd) $(top_srcdir) && \
  581. $(AUTOMAKE) --gnu tests/Makefile
  582. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  583. @case '$?' in \
  584. *config.status*) \
  585. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  586. *) \
  587. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  588. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  589. esac;
  590. $(srcdir)/../Makefile.am.inc $(am__empty):
  591. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  592. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  593. $(top_srcdir)/configure: $(am__configure_deps)
  594. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  595. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  596. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  597. $(am__aclocal_m4_deps):
  598. clean-checkPROGRAMS:
  599. @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
  600. echo " rm -f" $$list; \
  601. rm -f $$list || exit $$?; \
  602. test -n "$(EXEEXT)" || exit 0; \
  603. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  604. echo " rm -f" $$list; \
  605. rm -f $$list
  606. test1$(EXEEXT): $(test1_OBJECTS) $(test1_DEPENDENCIES) $(EXTRA_test1_DEPENDENCIES)
  607. @rm -f test1$(EXEEXT)
  608. $(AM_V_CCLD)$(LINK) $(test1_OBJECTS) $(test1_LDADD) $(LIBS)
  609. test1Formatted$(EXEEXT): $(test1Formatted_OBJECTS) $(test1Formatted_DEPENDENCIES) $(EXTRA_test1Formatted_DEPENDENCIES)
  610. @rm -f test1Formatted$(EXEEXT)
  611. $(AM_V_CCLD)$(LINK) $(test1Formatted_OBJECTS) $(test1Formatted_LDADD) $(LIBS)
  612. test2$(EXEEXT): $(test2_OBJECTS) $(test2_DEPENDENCIES) $(EXTRA_test2_DEPENDENCIES)
  613. @rm -f test2$(EXEEXT)
  614. $(AM_V_CCLD)$(LINK) $(test2_OBJECTS) $(test2_LDADD) $(LIBS)
  615. test2Formatted$(EXEEXT): $(test2Formatted_OBJECTS) $(test2Formatted_DEPENDENCIES) $(EXTRA_test2Formatted_DEPENDENCIES)
  616. @rm -f test2Formatted$(EXEEXT)
  617. $(AM_V_CCLD)$(LINK) $(test2Formatted_OBJECTS) $(test2Formatted_LDADD) $(LIBS)
  618. test4$(EXEEXT): $(test4_OBJECTS) $(test4_DEPENDENCIES) $(EXTRA_test4_DEPENDENCIES)
  619. @rm -f test4$(EXEEXT)
  620. $(AM_V_CCLD)$(LINK) $(test4_OBJECTS) $(test4_LDADD) $(LIBS)
  621. testReplaceExisting$(EXEEXT): $(testReplaceExisting_OBJECTS) $(testReplaceExisting_DEPENDENCIES) $(EXTRA_testReplaceExisting_DEPENDENCIES)
  622. @rm -f testReplaceExisting$(EXEEXT)
  623. $(AM_V_CCLD)$(LINK) $(testReplaceExisting_OBJECTS) $(testReplaceExisting_LDADD) $(LIBS)
  624. test_cast$(EXEEXT): $(test_cast_OBJECTS) $(test_cast_DEPENDENCIES) $(EXTRA_test_cast_DEPENDENCIES)
  625. @rm -f test_cast$(EXEEXT)
  626. $(AM_V_CCLD)$(LINK) $(test_cast_OBJECTS) $(test_cast_LDADD) $(LIBS)
  627. test_charcase$(EXEEXT): $(test_charcase_OBJECTS) $(test_charcase_DEPENDENCIES) $(EXTRA_test_charcase_DEPENDENCIES)
  628. @rm -f test_charcase$(EXEEXT)
  629. $(AM_V_CCLD)$(LINK) $(test_charcase_OBJECTS) $(test_charcase_LDADD) $(LIBS)
  630. test_locale$(EXEEXT): $(test_locale_OBJECTS) $(test_locale_DEPENDENCIES) $(EXTRA_test_locale_DEPENDENCIES)
  631. @rm -f test_locale$(EXEEXT)
  632. $(AM_V_CCLD)$(LINK) $(test_locale_OBJECTS) $(test_locale_LDADD) $(LIBS)
  633. test_null$(EXEEXT): $(test_null_OBJECTS) $(test_null_DEPENDENCIES) $(EXTRA_test_null_DEPENDENCIES)
  634. @rm -f test_null$(EXEEXT)
  635. $(AM_V_CCLD)$(LINK) $(test_null_OBJECTS) $(test_null_LDADD) $(LIBS)
  636. test_parse$(EXEEXT): $(test_parse_OBJECTS) $(test_parse_DEPENDENCIES) $(EXTRA_test_parse_DEPENDENCIES)
  637. @rm -f test_parse$(EXEEXT)
  638. $(AM_V_CCLD)$(LINK) $(test_parse_OBJECTS) $(test_parse_LDADD) $(LIBS)
  639. test_parse_int64$(EXEEXT): $(test_parse_int64_OBJECTS) $(test_parse_int64_DEPENDENCIES) $(EXTRA_test_parse_int64_DEPENDENCIES)
  640. @rm -f test_parse_int64$(EXEEXT)
  641. $(AM_V_CCLD)$(LINK) $(test_parse_int64_OBJECTS) $(test_parse_int64_LDADD) $(LIBS)
  642. test_printbuf$(EXEEXT): $(test_printbuf_OBJECTS) $(test_printbuf_DEPENDENCIES) $(EXTRA_test_printbuf_DEPENDENCIES)
  643. @rm -f test_printbuf$(EXEEXT)
  644. $(AM_V_CCLD)$(LINK) $(test_printbuf_OBJECTS) $(test_printbuf_LDADD) $(LIBS)
  645. test_set_serializer$(EXEEXT): $(test_set_serializer_OBJECTS) $(test_set_serializer_DEPENDENCIES) $(EXTRA_test_set_serializer_DEPENDENCIES)
  646. @rm -f test_set_serializer$(EXEEXT)
  647. $(AM_V_CCLD)$(LINK) $(test_set_serializer_OBJECTS) $(test_set_serializer_LDADD) $(LIBS)
  648. mostlyclean-compile:
  649. -rm -f *.$(OBJEXT)
  650. distclean-compile:
  651. -rm -f *.tab.c
  652. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test1.Po@am__quote@
  653. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test1Formatted-parse_flags.Po@am__quote@
  654. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test1Formatted-test1.Po@am__quote@
  655. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test2.Po@am__quote@
  656. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test2Formatted-parse_flags.Po@am__quote@
  657. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test2Formatted-test2.Po@am__quote@
  658. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test4.Po@am__quote@
  659. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testReplaceExisting.Po@am__quote@
  660. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_cast.Po@am__quote@
  661. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_charcase.Po@am__quote@
  662. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_locale.Po@am__quote@
  663. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_null.Po@am__quote@
  664. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_parse.Po@am__quote@
  665. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_parse_int64.Po@am__quote@
  666. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_printbuf.Po@am__quote@
  667. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_set_serializer.Po@am__quote@
  668. .c.o:
  669. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  670. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  671. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  672. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  673. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  674. .c.obj:
  675. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  676. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  677. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  678. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  679. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  680. .c.lo:
  681. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  682. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  683. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  684. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  685. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  686. test1Formatted-test1.o: test1.c
  687. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test1Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test1Formatted-test1.o -MD -MP -MF $(DEPDIR)/test1Formatted-test1.Tpo -c -o test1Formatted-test1.o `test -f 'test1.c' || echo '$(srcdir)/'`test1.c
  688. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test1Formatted-test1.Tpo $(DEPDIR)/test1Formatted-test1.Po
  689. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test1.c' object='test1Formatted-test1.o' libtool=no @AMDEPBACKSLASH@
  690. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  691. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test1Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test1Formatted-test1.o `test -f 'test1.c' || echo '$(srcdir)/'`test1.c
  692. test1Formatted-test1.obj: test1.c
  693. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test1Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test1Formatted-test1.obj -MD -MP -MF $(DEPDIR)/test1Formatted-test1.Tpo -c -o test1Formatted-test1.obj `if test -f 'test1.c'; then $(CYGPATH_W) 'test1.c'; else $(CYGPATH_W) '$(srcdir)/test1.c'; fi`
  694. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test1Formatted-test1.Tpo $(DEPDIR)/test1Formatted-test1.Po
  695. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test1.c' object='test1Formatted-test1.obj' libtool=no @AMDEPBACKSLASH@
  696. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  697. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test1Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test1Formatted-test1.obj `if test -f 'test1.c'; then $(CYGPATH_W) 'test1.c'; else $(CYGPATH_W) '$(srcdir)/test1.c'; fi`
  698. test1Formatted-parse_flags.o: parse_flags.c
  699. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test1Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test1Formatted-parse_flags.o -MD -MP -MF $(DEPDIR)/test1Formatted-parse_flags.Tpo -c -o test1Formatted-parse_flags.o `test -f 'parse_flags.c' || echo '$(srcdir)/'`parse_flags.c
  700. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test1Formatted-parse_flags.Tpo $(DEPDIR)/test1Formatted-parse_flags.Po
  701. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='parse_flags.c' object='test1Formatted-parse_flags.o' libtool=no @AMDEPBACKSLASH@
  702. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  703. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test1Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test1Formatted-parse_flags.o `test -f 'parse_flags.c' || echo '$(srcdir)/'`parse_flags.c
  704. test1Formatted-parse_flags.obj: parse_flags.c
  705. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test1Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test1Formatted-parse_flags.obj -MD -MP -MF $(DEPDIR)/test1Formatted-parse_flags.Tpo -c -o test1Formatted-parse_flags.obj `if test -f 'parse_flags.c'; then $(CYGPATH_W) 'parse_flags.c'; else $(CYGPATH_W) '$(srcdir)/parse_flags.c'; fi`
  706. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test1Formatted-parse_flags.Tpo $(DEPDIR)/test1Formatted-parse_flags.Po
  707. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='parse_flags.c' object='test1Formatted-parse_flags.obj' libtool=no @AMDEPBACKSLASH@
  708. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  709. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test1Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test1Formatted-parse_flags.obj `if test -f 'parse_flags.c'; then $(CYGPATH_W) 'parse_flags.c'; else $(CYGPATH_W) '$(srcdir)/parse_flags.c'; fi`
  710. test2Formatted-test2.o: test2.c
  711. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test2Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test2Formatted-test2.o -MD -MP -MF $(DEPDIR)/test2Formatted-test2.Tpo -c -o test2Formatted-test2.o `test -f 'test2.c' || echo '$(srcdir)/'`test2.c
  712. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test2Formatted-test2.Tpo $(DEPDIR)/test2Formatted-test2.Po
  713. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test2.c' object='test2Formatted-test2.o' libtool=no @AMDEPBACKSLASH@
  714. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  715. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test2Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test2Formatted-test2.o `test -f 'test2.c' || echo '$(srcdir)/'`test2.c
  716. test2Formatted-test2.obj: test2.c
  717. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test2Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test2Formatted-test2.obj -MD -MP -MF $(DEPDIR)/test2Formatted-test2.Tpo -c -o test2Formatted-test2.obj `if test -f 'test2.c'; then $(CYGPATH_W) 'test2.c'; else $(CYGPATH_W) '$(srcdir)/test2.c'; fi`
  718. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test2Formatted-test2.Tpo $(DEPDIR)/test2Formatted-test2.Po
  719. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test2.c' object='test2Formatted-test2.obj' libtool=no @AMDEPBACKSLASH@
  720. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  721. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test2Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test2Formatted-test2.obj `if test -f 'test2.c'; then $(CYGPATH_W) 'test2.c'; else $(CYGPATH_W) '$(srcdir)/test2.c'; fi`
  722. test2Formatted-parse_flags.o: parse_flags.c
  723. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test2Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test2Formatted-parse_flags.o -MD -MP -MF $(DEPDIR)/test2Formatted-parse_flags.Tpo -c -o test2Formatted-parse_flags.o `test -f 'parse_flags.c' || echo '$(srcdir)/'`parse_flags.c
  724. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test2Formatted-parse_flags.Tpo $(DEPDIR)/test2Formatted-parse_flags.Po
  725. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='parse_flags.c' object='test2Formatted-parse_flags.o' libtool=no @AMDEPBACKSLASH@
  726. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  727. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test2Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test2Formatted-parse_flags.o `test -f 'parse_flags.c' || echo '$(srcdir)/'`parse_flags.c
  728. test2Formatted-parse_flags.obj: parse_flags.c
  729. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test2Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test2Formatted-parse_flags.obj -MD -MP -MF $(DEPDIR)/test2Formatted-parse_flags.Tpo -c -o test2Formatted-parse_flags.obj `if test -f 'parse_flags.c'; then $(CYGPATH_W) 'parse_flags.c'; else $(CYGPATH_W) '$(srcdir)/parse_flags.c'; fi`
  730. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test2Formatted-parse_flags.Tpo $(DEPDIR)/test2Formatted-parse_flags.Po
  731. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='parse_flags.c' object='test2Formatted-parse_flags.obj' libtool=no @AMDEPBACKSLASH@
  732. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  733. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test2Formatted_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test2Formatted-parse_flags.obj `if test -f 'parse_flags.c'; then $(CYGPATH_W) 'parse_flags.c'; else $(CYGPATH_W) '$(srcdir)/parse_flags.c'; fi`
  734. mostlyclean-libtool:
  735. -rm -f *.lo
  736. clean-libtool:
  737. -rm -rf .libs _libs
  738. ID: $(am__tagged_files)
  739. $(am__define_uniq_tagged_files); mkid -fID $$unique
  740. tags: tags-am
  741. TAGS: tags
  742. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  743. set x; \
  744. here=`pwd`; \
  745. $(am__define_uniq_tagged_files); \
  746. shift; \
  747. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  748. test -n "$$unique" || unique=$$empty_fix; \
  749. if test $$# -gt 0; then \
  750. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  751. "$$@" $$unique; \
  752. else \
  753. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  754. $$unique; \
  755. fi; \
  756. fi
  757. ctags: ctags-am
  758. CTAGS: ctags
  759. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  760. $(am__define_uniq_tagged_files); \
  761. test -z "$(CTAGS_ARGS)$$unique" \
  762. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  763. $$unique
  764. GTAGS:
  765. here=`$(am__cd) $(top_builddir) && pwd` \
  766. && $(am__cd) $(top_srcdir) \
  767. && gtags -i $(GTAGS_ARGS) "$$here"
  768. cscopelist: cscopelist-am
  769. cscopelist-am: $(am__tagged_files)
  770. list='$(am__tagged_files)'; \
  771. case "$(srcdir)" in \
  772. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  773. *) sdir=$(subdir)/$(srcdir) ;; \
  774. esac; \
  775. for i in $$list; do \
  776. if test -f "$$i"; then \
  777. echo "$(subdir)/$$i"; \
  778. else \
  779. echo "$$sdir/$$i"; \
  780. fi; \
  781. done >> $(top_builddir)/cscope.files
  782. distclean-tags:
  783. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  784. # Recover from deleted '.trs' file; this should ensure that
  785. # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
  786. # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
  787. # to avoid problems with "make -n".
  788. .log.trs:
  789. rm -f $< $@
  790. $(MAKE) $(AM_MAKEFLAGS) $<
  791. # Leading 'am--fnord' is there to ensure the list of targets does not
  792. # expand to empty, as could happen e.g. with make check TESTS=''.
  793. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
  794. am--force-recheck:
  795. @:
  796. $(TEST_SUITE_LOG): $(TEST_LOGS)
  797. @$(am__set_TESTS_bases); \
  798. am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
  799. redo_bases=`for i in $$bases; do \
  800. am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
  801. done`; \
  802. if test -n "$$redo_bases"; then \
  803. redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
  804. redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
  805. if $(am__make_dryrun); then :; else \
  806. rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
  807. fi; \
  808. fi; \
  809. if test -n "$$am__remaking_logs"; then \
  810. echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
  811. "recursion detected" >&2; \
  812. elif test -n "$$redo_logs"; then \
  813. am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
  814. fi; \
  815. if $(am__make_dryrun); then :; else \
  816. st=0; \
  817. errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
  818. for i in $$redo_bases; do \
  819. test -f $$i.trs && test -r $$i.trs \
  820. || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
  821. test -f $$i.log && test -r $$i.log \
  822. || { echo "$$errmsg $$i.log" >&2; st=1; }; \
  823. done; \
  824. test $$st -eq 0 || exit 1; \
  825. fi
  826. @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
  827. ws='[ ]'; \
  828. results=`for b in $$bases; do echo $$b.trs; done`; \
  829. test -n "$$results" || results=/dev/null; \
  830. all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
  831. pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
  832. fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
  833. skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
  834. xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
  835. xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
  836. error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
  837. if test `expr $$fail + $$xpass + $$error` -eq 0; then \
  838. success=true; \
  839. else \
  840. success=false; \
  841. fi; \
  842. br='==================='; br=$$br$$br$$br$$br; \
  843. result_count () \
  844. { \
  845. if test x"$$1" = x"--maybe-color"; then \
  846. maybe_colorize=yes; \
  847. elif test x"$$1" = x"--no-color"; then \
  848. maybe_colorize=no; \
  849. else \
  850. echo "$@: invalid 'result_count' usage" >&2; exit 4; \
  851. fi; \
  852. shift; \
  853. desc=$$1 count=$$2; \
  854. if test $$maybe_colorize = yes && test $$count -gt 0; then \
  855. color_start=$$3 color_end=$$std; \
  856. else \
  857. color_start= color_end=; \
  858. fi; \
  859. echo "$${color_start}# $$desc $$count$${color_end}"; \
  860. }; \
  861. create_testsuite_report () \
  862. { \
  863. result_count $$1 "TOTAL:" $$all "$$brg"; \
  864. result_count $$1 "PASS: " $$pass "$$grn"; \
  865. result_count $$1 "SKIP: " $$skip "$$blu"; \
  866. result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
  867. result_count $$1 "FAIL: " $$fail "$$red"; \
  868. result_count $$1 "XPASS:" $$xpass "$$red"; \
  869. result_count $$1 "ERROR:" $$error "$$mgn"; \
  870. }; \
  871. { \
  872. echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
  873. $(am__rst_title); \
  874. create_testsuite_report --no-color; \
  875. echo; \
  876. echo ".. contents:: :depth: 2"; \
  877. echo; \
  878. for b in $$bases; do echo $$b; done \
  879. | $(am__create_global_log); \
  880. } >$(TEST_SUITE_LOG).tmp || exit 1; \
  881. mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
  882. if $$success; then \
  883. col="$$grn"; \
  884. else \
  885. col="$$red"; \
  886. test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
  887. fi; \
  888. echo "$${col}$$br$${std}"; \
  889. echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \
  890. echo "$${col}$$br$${std}"; \
  891. create_testsuite_report --maybe-color; \
  892. echo "$$col$$br$$std"; \
  893. if $$success; then :; else \
  894. echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \
  895. if test -n "$(PACKAGE_BUGREPORT)"; then \
  896. echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
  897. fi; \
  898. echo "$$col$$br$$std"; \
  899. fi; \
  900. $$success || exit 1
  901. check-TESTS:
  902. @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
  903. @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
  904. @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
  905. @set +e; $(am__set_TESTS_bases); \
  906. log_list=`for i in $$bases; do echo $$i.log; done`; \
  907. trs_list=`for i in $$bases; do echo $$i.trs; done`; \
  908. log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
  909. $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
  910. exit $$?;
  911. recheck: all $(check_PROGRAMS)
  912. @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
  913. @set +e; $(am__set_TESTS_bases); \
  914. bases=`for i in $$bases; do echo $$i; done \
  915. | $(am__list_recheck_tests)` || exit 1; \
  916. log_list=`for i in $$bases; do echo $$i.log; done`; \
  917. log_list=`echo $$log_list`; \
  918. $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
  919. am__force_recheck=am--force-recheck \
  920. TEST_LOGS="$$log_list"; \
  921. exit $$?
  922. .test.log:
  923. @p='$<'; \
  924. $(am__set_b); \
  925. $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
  926. --log-file $$b.log --trs-file $$b.trs \
  927. $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
  928. "$$tst" $(AM_TESTS_FD_REDIRECT)
  929. @am__EXEEXT_TRUE@.test$(EXEEXT).log:
  930. @am__EXEEXT_TRUE@ @p='$<'; \
  931. @am__EXEEXT_TRUE@ $(am__set_b); \
  932. @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
  933. @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
  934. @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
  935. @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
  936. distdir: $(DISTFILES)
  937. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  938. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  939. list='$(DISTFILES)'; \
  940. dist_files=`for file in $$list; do echo $$file; done | \
  941. sed -e "s|^$$srcdirstrip/||;t" \
  942. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  943. case $$dist_files in \
  944. */*) $(MKDIR_P) `echo "$$dist_files" | \
  945. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  946. sort -u` ;; \
  947. esac; \
  948. for file in $$dist_files; do \
  949. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  950. if test -d $$d/$$file; then \
  951. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  952. if test -d "$(distdir)/$$file"; then \
  953. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  954. fi; \
  955. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  956. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  957. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  958. fi; \
  959. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  960. else \
  961. test -f "$(distdir)/$$file" \
  962. || cp -p $$d/$$file "$(distdir)/$$file" \
  963. || exit 1; \
  964. fi; \
  965. done
  966. check-am: all-am
  967. $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
  968. $(MAKE) $(AM_MAKEFLAGS) check-TESTS
  969. check: check-am
  970. all-am: Makefile
  971. installdirs:
  972. install: install-am
  973. install-exec: install-exec-am
  974. install-data: install-data-am
  975. uninstall: uninstall-am
  976. install-am: all-am
  977. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  978. installcheck: installcheck-am
  979. install-strip:
  980. if test -z '$(STRIP)'; then \
  981. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  982. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  983. install; \
  984. else \
  985. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  986. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  987. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  988. fi
  989. mostlyclean-generic:
  990. -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
  991. -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
  992. -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
  993. clean-generic:
  994. distclean-generic:
  995. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  996. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  997. maintainer-clean-generic:
  998. @echo "This command is intended for maintainers to use"
  999. @echo "it deletes files that may require special tools to rebuild."
  1000. clean: clean-am
  1001. clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
  1002. mostlyclean-am
  1003. distclean: distclean-am
  1004. -rm -rf ./$(DEPDIR)
  1005. -rm -f Makefile
  1006. distclean-am: clean-am distclean-compile distclean-generic \
  1007. distclean-local distclean-tags
  1008. dvi: dvi-am
  1009. dvi-am:
  1010. html: html-am
  1011. html-am:
  1012. info: info-am
  1013. info-am:
  1014. install-data-am:
  1015. install-dvi: install-dvi-am
  1016. install-dvi-am:
  1017. install-exec-am:
  1018. install-html: install-html-am
  1019. install-html-am:
  1020. install-info: install-info-am
  1021. install-info-am:
  1022. install-man:
  1023. install-pdf: install-pdf-am
  1024. install-pdf-am:
  1025. install-ps: install-ps-am
  1026. install-ps-am:
  1027. installcheck-am:
  1028. maintainer-clean: maintainer-clean-am
  1029. -rm -rf ./$(DEPDIR)
  1030. -rm -f Makefile
  1031. maintainer-clean-am: distclean-am maintainer-clean-generic
  1032. mostlyclean: mostlyclean-am
  1033. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  1034. mostlyclean-libtool
  1035. pdf: pdf-am
  1036. pdf-am:
  1037. ps: ps-am
  1038. ps-am:
  1039. uninstall-am:
  1040. .MAKE: check-am install-am install-strip
  1041. .PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
  1042. clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
  1043. ctags ctags-am distclean distclean-compile distclean-generic \
  1044. distclean-libtool distclean-local distclean-tags distdir dvi \
  1045. dvi-am html html-am info info-am install install-am \
  1046. install-data install-data-am install-dvi install-dvi-am \
  1047. install-exec install-exec-am install-html install-html-am \
  1048. install-info install-info-am install-man install-pdf \
  1049. install-pdf-am install-ps install-ps-am install-strip \
  1050. installcheck installcheck-am installdirs maintainer-clean \
  1051. maintainer-clean-generic mostlyclean mostlyclean-compile \
  1052. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  1053. recheck tags tags-am uninstall uninstall-am
  1054. .PRECIOUS: Makefile
  1055. distclean-local:
  1056. -rm -rf $(testsubdir)
  1057. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  1058. # Otherwise a system limit (for SysV at least) may be exceeded.
  1059. .NOEXPORT: