gtl-parsley-ruby 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (299) hide show
  1. data/CHANGELOG +3 -0
  2. data/README +32 -0
  3. data/Rakefile +57 -0
  4. data/VERSION +1 -0
  5. data/ext/cparsley.c +152 -0
  6. data/ext/extconf.rb +82 -0
  7. data/ext/parsley/.gitignore +32 -0
  8. data/ext/parsley/AUTHORS +1 -0
  9. data/ext/parsley/ChangeLog +0 -0
  10. data/ext/parsley/HACKING +4 -0
  11. data/ext/parsley/INSTALL +73 -0
  12. data/ext/parsley/INTRO +84 -0
  13. data/ext/parsley/Makefile.am +80 -0
  14. data/ext/parsley/Makefile.in +1009 -0
  15. data/ext/parsley/NEWS +0 -0
  16. data/ext/parsley/PAPER +36 -0
  17. data/ext/parsley/Portfile +18 -0
  18. data/ext/parsley/Portfile.in +17 -0
  19. data/ext/parsley/README.C-LANG +92 -0
  20. data/ext/parsley/README.markdown +1 -0
  21. data/ext/parsley/TODO +39 -0
  22. data/ext/parsley/VERSION +1 -0
  23. data/ext/parsley/aclocal.m4 +8918 -0
  24. data/ext/parsley/bootstrap.sh +6 -0
  25. data/ext/parsley/config.guess +1561 -0
  26. data/ext/parsley/config.sub +1686 -0
  27. data/ext/parsley/configure +13437 -0
  28. data/ext/parsley/configure.ac +46 -0
  29. data/ext/parsley/depcomp +630 -0
  30. data/ext/parsley/functions.c +368 -0
  31. data/ext/parsley/functions.h +19 -0
  32. data/ext/parsley/generate_bisect.sh +12 -0
  33. data/ext/parsley/hooks/prepare-commit-msg +16 -0
  34. data/ext/parsley/install-sh +520 -0
  35. data/ext/parsley/json-c-0.9/AUTHORS +2 -0
  36. data/ext/parsley/json-c-0.9/COPYING +19 -0
  37. data/ext/parsley/json-c-0.9/ChangeLog +103 -0
  38. data/ext/parsley/json-c-0.9/INSTALL +302 -0
  39. data/ext/parsley/json-c-0.9/Makefile.am +43 -0
  40. data/ext/parsley/json-c-0.9/Makefile.in +800 -0
  41. data/ext/parsley/json-c-0.9/NEWS +1 -0
  42. data/ext/parsley/json-c-0.9/README +20 -0
  43. data/ext/parsley/json-c-0.9/README-WIN32.html +57 -0
  44. data/ext/parsley/json-c-0.9/README.html +32 -0
  45. data/ext/parsley/json-c-0.9/aclocal.m4 +8909 -0
  46. data/ext/parsley/json-c-0.9/arraylist.c +94 -0
  47. data/ext/parsley/json-c-0.9/arraylist.h +53 -0
  48. data/ext/parsley/json-c-0.9/bits.h +27 -0
  49. data/ext/parsley/json-c-0.9/config.guess +1561 -0
  50. data/ext/parsley/json-c-0.9/config.h +125 -0
  51. data/ext/parsley/json-c-0.9/config.h.in +124 -0
  52. data/ext/parsley/json-c-0.9/config.h.win32 +94 -0
  53. data/ext/parsley/json-c-0.9/config.sub +1686 -0
  54. data/ext/parsley/json-c-0.9/configure +13084 -0
  55. data/ext/parsley/json-c-0.9/configure.in +33 -0
  56. data/ext/parsley/json-c-0.9/debug.c +98 -0
  57. data/ext/parsley/json-c-0.9/debug.h +50 -0
  58. data/ext/parsley/json-c-0.9/depcomp +630 -0
  59. data/ext/parsley/json-c-0.9/doc/html/annotated.html +40 -0
  60. data/ext/parsley/json-c-0.9/doc/html/arraylist_8h.html +240 -0
  61. data/ext/parsley/json-c-0.9/doc/html/bits_8h.html +150 -0
  62. data/ext/parsley/json-c-0.9/doc/html/classes.html +36 -0
  63. data/ext/parsley/json-c-0.9/doc/html/config_8h.html +612 -0
  64. data/ext/parsley/json-c-0.9/doc/html/debug_8h.html +392 -0
  65. data/ext/parsley/json-c-0.9/doc/html/doxygen.css +441 -0
  66. data/ext/parsley/json-c-0.9/doc/html/doxygen.png +0 -0
  67. data/ext/parsley/json-c-0.9/doc/html/files.html +42 -0
  68. data/ext/parsley/json-c-0.9/doc/html/functions.html +206 -0
  69. data/ext/parsley/json-c-0.9/doc/html/functions_vars.html +206 -0
  70. data/ext/parsley/json-c-0.9/doc/html/globals.html +459 -0
  71. data/ext/parsley/json-c-0.9/doc/html/globals_defs.html +202 -0
  72. data/ext/parsley/json-c-0.9/doc/html/globals_enum.html +50 -0
  73. data/ext/parsley/json-c-0.9/doc/html/globals_eval.html +135 -0
  74. data/ext/parsley/json-c-0.9/doc/html/globals_func.html +194 -0
  75. data/ext/parsley/json-c-0.9/doc/html/globals_type.html +70 -0
  76. data/ext/parsley/json-c-0.9/doc/html/globals_vars.html +50 -0
  77. data/ext/parsley/json-c-0.9/doc/html/index.html +25 -0
  78. data/ext/parsley/json-c-0.9/doc/html/json_8h.html +32 -0
  79. data/ext/parsley/json-c-0.9/doc/html/json__object_8h.html +1150 -0
  80. data/ext/parsley/json-c-0.9/doc/html/json__object__private_8h.html +75 -0
  81. data/ext/parsley/json-c-0.9/doc/html/json__tokener_8h.html +366 -0
  82. data/ext/parsley/json-c-0.9/doc/html/json__util_8h.html +106 -0
  83. data/ext/parsley/json-c-0.9/doc/html/linkhash_8h.html +740 -0
  84. data/ext/parsley/json-c-0.9/doc/html/printbuf_8h.html +214 -0
  85. data/ext/parsley/json-c-0.9/doc/html/structarray__list.html +104 -0
  86. data/ext/parsley/json-c-0.9/doc/html/structjson__object.html +141 -0
  87. data/ext/parsley/json-c-0.9/doc/html/structjson__object__iter.html +87 -0
  88. data/ext/parsley/json-c-0.9/doc/html/structjson__tokener.html +206 -0
  89. data/ext/parsley/json-c-0.9/doc/html/structjson__tokener__srec.html +104 -0
  90. data/ext/parsley/json-c-0.9/doc/html/structlh__entry.html +105 -0
  91. data/ext/parsley/json-c-0.9/doc/html/structlh__table.html +275 -0
  92. data/ext/parsley/json-c-0.9/doc/html/structprintbuf.html +87 -0
  93. data/ext/parsley/json-c-0.9/doc/html/tab_b.gif +0 -0
  94. data/ext/parsley/json-c-0.9/doc/html/tab_l.gif +0 -0
  95. data/ext/parsley/json-c-0.9/doc/html/tab_r.gif +0 -0
  96. data/ext/parsley/json-c-0.9/doc/html/tabs.css +105 -0
  97. data/ext/parsley/json-c-0.9/doc/html/unionjson__object_1_1data.html +140 -0
  98. data/ext/parsley/json-c-0.9/install-sh +520 -0
  99. data/ext/parsley/json-c-0.9/json.h +31 -0
  100. data/ext/parsley/json-c-0.9/json.pc +11 -0
  101. data/ext/parsley/json-c-0.9/json.pc.in +11 -0
  102. data/ext/parsley/json-c-0.9/json_object.c +512 -0
  103. data/ext/parsley/json-c-0.9/json_object.h +319 -0
  104. data/ext/parsley/json-c-0.9/json_object_private.h +52 -0
  105. data/ext/parsley/json-c-0.9/json_tokener.c +628 -0
  106. data/ext/parsley/json-c-0.9/json_tokener.h +98 -0
  107. data/ext/parsley/json-c-0.9/json_util.c +122 -0
  108. data/ext/parsley/json-c-0.9/json_util.h +31 -0
  109. data/ext/parsley/json-c-0.9/libjson.la +41 -0
  110. data/ext/parsley/json-c-0.9/libtool +8890 -0
  111. data/ext/parsley/json-c-0.9/linkhash.c +216 -0
  112. data/ext/parsley/json-c-0.9/linkhash.h +272 -0
  113. data/ext/parsley/json-c-0.9/ltmain.sh +8406 -0
  114. data/ext/parsley/json-c-0.9/missing +376 -0
  115. data/ext/parsley/json-c-0.9/printbuf.c +149 -0
  116. data/ext/parsley/json-c-0.9/printbuf.h +64 -0
  117. data/ext/parsley/json-c-0.9/stamp-h1 +1 -0
  118. data/ext/parsley/json-c-0.9/test1 +130 -0
  119. data/ext/parsley/json-c-0.9/test1.c +164 -0
  120. data/ext/parsley/json-c-0.9/test2 +130 -0
  121. data/ext/parsley/json-c-0.9/test2.c +20 -0
  122. data/ext/parsley/json-c-0.9/test3 +130 -0
  123. data/ext/parsley/json-c-0.9/test3.c +23 -0
  124. data/ext/parsley/libtool +8890 -0
  125. data/ext/parsley/ltmain.sh +8406 -0
  126. data/ext/parsley/missing +376 -0
  127. data/ext/parsley/parsed_xpath.c +168 -0
  128. data/ext/parsley/parsed_xpath.h +34 -0
  129. data/ext/parsley/parser.y +631 -0
  130. data/ext/parsley/parsley.c +793 -0
  131. data/ext/parsley/parsley.h +87 -0
  132. data/ext/parsley/parsley_main.c +185 -0
  133. data/ext/parsley/parsleyc_main.c +108 -0
  134. data/ext/parsley/regexp.c +359 -0
  135. data/ext/parsley/regexp.h +36 -0
  136. data/ext/parsley/scanner.l +221 -0
  137. data/ext/parsley/test/ambiguous.html +207 -0
  138. data/ext/parsley/test/ambiguous.json +1 -0
  139. data/ext/parsley/test/ambiguous.let +6 -0
  140. data/ext/parsley/test/array-regression.html +5 -0
  141. data/ext/parsley/test/array-regression.json +1 -0
  142. data/ext/parsley/test/array-regression.let +10 -0
  143. data/ext/parsley/test/backslash.html +5 -0
  144. data/ext/parsley/test/backslash.json +1 -0
  145. data/ext/parsley/test/backslash.let +3 -0
  146. data/ext/parsley/test/bang.html +17 -0
  147. data/ext/parsley/test/bang.json +1 -0
  148. data/ext/parsley/test/bang.let +6 -0
  149. data/ext/parsley/test/collate_regression.html +324 -0
  150. data/ext/parsley/test/collate_regression.json +1 -0
  151. data/ext/parsley/test/collate_regression.let +9 -0
  152. data/ext/parsley/test/contains.html +3 -0
  153. data/ext/parsley/test/contains.json +1 -0
  154. data/ext/parsley/test/contains.let +3 -0
  155. data/ext/parsley/test/content.html +13 -0
  156. data/ext/parsley/test/content.json +1 -0
  157. data/ext/parsley/test/content.let +7 -0
  158. data/ext/parsley/test/cool.html +575 -0
  159. data/ext/parsley/test/cool.json +1 -0
  160. data/ext/parsley/test/cool.let +9 -0
  161. data/ext/parsley/test/craigs-simple.html +207 -0
  162. data/ext/parsley/test/craigs-simple.json +1 -0
  163. data/ext/parsley/test/craigs-simple.let +6 -0
  164. data/ext/parsley/test/craigs.html +207 -0
  165. data/ext/parsley/test/craigs.json +1 -0
  166. data/ext/parsley/test/craigs.let +9 -0
  167. data/ext/parsley/test/crash.html +157 -0
  168. data/ext/parsley/test/crash.json +1 -0
  169. data/ext/parsley/test/crash.let +1 -0
  170. data/ext/parsley/test/css_attr.html +3 -0
  171. data/ext/parsley/test/css_attr.json +1 -0
  172. data/ext/parsley/test/css_attr.let +3 -0
  173. data/ext/parsley/test/default-namespace.json +1 -0
  174. data/ext/parsley/test/default-namespace.let +3 -0
  175. data/ext/parsley/test/default-namespace.xml +1493 -0
  176. data/ext/parsley/test/div.html +8 -0
  177. data/ext/parsley/test/div.json +1 -0
  178. data/ext/parsley/test/div.let +10 -0
  179. data/ext/parsley/test/empty.html +3 -0
  180. data/ext/parsley/test/empty.json +1 -0
  181. data/ext/parsley/test/empty.let +1 -0
  182. data/ext/parsley/test/emptyish.html +207 -0
  183. data/ext/parsley/test/emptyish.let +3 -0
  184. data/ext/parsley/test/fictional-opt.html +43 -0
  185. data/ext/parsley/test/fictional-opt.json +1 -0
  186. data/ext/parsley/test/fictional-opt.let +14 -0
  187. data/ext/parsley/test/fictional.html +43 -0
  188. data/ext/parsley/test/fictional.json +1 -0
  189. data/ext/parsley/test/fictional.let +14 -0
  190. data/ext/parsley/test/function-magic.html +9 -0
  191. data/ext/parsley/test/function-magic.json +1 -0
  192. data/ext/parsley/test/function-magic.let +8 -0
  193. data/ext/parsley/test/hn.html +32 -0
  194. data/ext/parsley/test/hn.json +1 -0
  195. data/ext/parsley/test/hn.let +8 -0
  196. data/ext/parsley/test/malformed-array.html +2329 -0
  197. data/ext/parsley/test/malformed-array.json +1 -0
  198. data/ext/parsley/test/malformed-array.let +22 -0
  199. data/ext/parsley/test/malformed-expr.html +2329 -0
  200. data/ext/parsley/test/malformed-expr.json +1 -0
  201. data/ext/parsley/test/malformed-expr.let +16 -0
  202. data/ext/parsley/test/malformed-function.html +845 -0
  203. data/ext/parsley/test/malformed-function.json +197 -0
  204. data/ext/parsley/test/malformed-function.let +8 -0
  205. data/ext/parsley/test/malformed-json.html +2329 -0
  206. data/ext/parsley/test/malformed-json.json +1 -0
  207. data/ext/parsley/test/malformed-json.let +6 -0
  208. data/ext/parsley/test/malformed-xpath.html +8 -0
  209. data/ext/parsley/test/malformed-xpath.json +1 -0
  210. data/ext/parsley/test/malformed-xpath.let +7 -0
  211. data/ext/parsley/test/match.json +1 -0
  212. data/ext/parsley/test/match.let +9 -0
  213. data/ext/parsley/test/match.xml +11 -0
  214. data/ext/parsley/test/math_ambiguity.html +9 -0
  215. data/ext/parsley/test/math_ambiguity.json +1 -0
  216. data/ext/parsley/test/math_ambiguity.let +5 -0
  217. data/ext/parsley/test/nth-regression.html +13 -0
  218. data/ext/parsley/test/nth-regression.json +1 -0
  219. data/ext/parsley/test/nth-regression.let +3 -0
  220. data/ext/parsley/test/optional.html +2328 -0
  221. data/ext/parsley/test/optional.json +1 -0
  222. data/ext/parsley/test/optional.let +8 -0
  223. data/ext/parsley/test/outer-xml.html +6 -0
  224. data/ext/parsley/test/outer-xml.json +1 -0
  225. data/ext/parsley/test/outer-xml.let +5 -0
  226. data/ext/parsley/test/position.html +8 -0
  227. data/ext/parsley/test/position.json +1 -0
  228. data/ext/parsley/test/position.let +6 -0
  229. data/ext/parsley/test/question_regressions.html +443 -0
  230. data/ext/parsley/test/question_regressions.json +1 -0
  231. data/ext/parsley/test/question_regressions.let +6 -0
  232. data/ext/parsley/test/quote.json +1 -0
  233. data/ext/parsley/test/quote.let +8 -0
  234. data/ext/parsley/test/quote.xml +11 -0
  235. data/ext/parsley/test/reddit.html +1 -0
  236. data/ext/parsley/test/reddit.json +1 -0
  237. data/ext/parsley/test/reddit.let +12 -0
  238. data/ext/parsley/test/remote-fail.json +1 -0
  239. data/ext/parsley/test/remote.html +3 -0
  240. data/ext/parsley/test/remote.json +1 -0
  241. data/ext/parsley/test/remote.let +4 -0
  242. data/ext/parsley/test/replace.json +1 -0
  243. data/ext/parsley/test/replace.let +9 -0
  244. data/ext/parsley/test/replace.xml +11 -0
  245. data/ext/parsley/test/scope.html +10 -0
  246. data/ext/parsley/test/scope.json +1 -0
  247. data/ext/parsley/test/scope.let +6 -0
  248. data/ext/parsley/test/segfault.html +5 -0
  249. data/ext/parsley/test/segfault.json +1 -0
  250. data/ext/parsley/test/segfault.let +9 -0
  251. data/ext/parsley/test/sg-wrap.html +5 -0
  252. data/ext/parsley/test/sg-wrap.json +1 -0
  253. data/ext/parsley/test/sg-wrap.let +3 -0
  254. data/ext/parsley/test/sg_off.html +5 -0
  255. data/ext/parsley/test/sg_off.json +1 -0
  256. data/ext/parsley/test/sg_off.let +3 -0
  257. data/ext/parsley/test/test.json +1 -0
  258. data/ext/parsley/test/test.let +6 -0
  259. data/ext/parsley/test/test.xml +11 -0
  260. data/ext/parsley/test/trivial.html +2329 -0
  261. data/ext/parsley/test/trivial.json +1 -0
  262. data/ext/parsley/test/trivial.let +4 -0
  263. data/ext/parsley/test/trivial2.html +2329 -0
  264. data/ext/parsley/test/trivial2.json +1 -0
  265. data/ext/parsley/test/trivial2.let +7 -0
  266. data/ext/parsley/test/unbang.html +17 -0
  267. data/ext/parsley/test/unbang.json +1 -0
  268. data/ext/parsley/test/unbang.let +6 -0
  269. data/ext/parsley/test/unicode.html +3 -0
  270. data/ext/parsley/test/unicode.json +1 -0
  271. data/ext/parsley/test/unicode.let +1 -0
  272. data/ext/parsley/test/whitespace.html +8 -0
  273. data/ext/parsley/test/whitespace.json +1 -0
  274. data/ext/parsley/test/whitespace.let +3 -0
  275. data/ext/parsley/test/whitespace_regression.html +4 -0
  276. data/ext/parsley/test/whitespace_regression.json +1 -0
  277. data/ext/parsley/test/whitespace_regression.let +3 -0
  278. data/ext/parsley/test/yelp-benchmark.rb +53 -0
  279. data/ext/parsley/test/yelp-home.html +1004 -0
  280. data/ext/parsley/test/yelp-home.json +1 -0
  281. data/ext/parsley/test/yelp-home.let +6 -0
  282. data/ext/parsley/test/yelp.html +2329 -0
  283. data/ext/parsley/test/yelp.json +1 -0
  284. data/ext/parsley/test/yelp.let +12 -0
  285. data/ext/parsley/test/youtube.html +1940 -0
  286. data/ext/parsley/test/youtube.let +11 -0
  287. data/ext/parsley/util.c +237 -0
  288. data/ext/parsley/util.h +34 -0
  289. data/ext/parsley/xml2json.c +47 -0
  290. data/ext/parsley/xml2json.h +14 -0
  291. data/ext/parsley/y.tab.h +222 -0
  292. data/ext/parsley/ylwrap +222 -0
  293. data/lib/parsley.rb +84 -0
  294. data/test/test_parsley.rb +120 -0
  295. data/test/yelp-benchmark.rb +53 -0
  296. data/test/yelp-home.html +1004 -0
  297. data/test/yelp-home.let +6 -0
  298. data/test/yelp.html +2329 -0
  299. metadata +366 -0
@@ -0,0 +1,800 @@
1
+ # Makefile.in generated by automake 1.11 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
+ # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
6
+ # Inc.
7
+ # This Makefile.in is free software; the Free Software Foundation
8
+ # gives unlimited permission to copy and/or distribute it,
9
+ # with or without modifications, as long as this notice is preserved.
10
+
11
+ # This program is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14
+ # PARTICULAR PURPOSE.
15
+
16
+ @SET_MAKE@
17
+
18
+
19
+
20
+ VPATH = @srcdir@
21
+ pkgdatadir = $(datadir)/@PACKAGE@
22
+ pkgincludedir = $(includedir)/@PACKAGE@
23
+ pkglibdir = $(libdir)/@PACKAGE@
24
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
25
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
26
+ install_sh_DATA = $(install_sh) -c -m 644
27
+ install_sh_PROGRAM = $(install_sh) -c
28
+ install_sh_SCRIPT = $(install_sh) -c
29
+ INSTALL_HEADER = $(INSTALL_DATA)
30
+ transform = $(program_transform_name)
31
+ NORMAL_INSTALL = :
32
+ PRE_INSTALL = :
33
+ POST_INSTALL = :
34
+ NORMAL_UNINSTALL = :
35
+ PRE_UNINSTALL = :
36
+ POST_UNINSTALL = :
37
+ build_triplet = @build@
38
+ host_triplet = @host@
39
+ check_PROGRAMS = test1$(EXEEXT) test2$(EXEEXT) test3$(EXEEXT)
40
+ subdir = .
41
+ DIST_COMMON = README $(am__configure_deps) $(libjsoninclude_HEADERS) \
42
+ $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
43
+ $(srcdir)/config.h.in $(srcdir)/json.pc.in \
44
+ $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \
45
+ config.guess config.sub depcomp install-sh ltmain.sh missing
46
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
47
+ am__aclocal_m4_deps = $(top_srcdir)/configure.in
48
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
49
+ $(ACLOCAL_M4)
50
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
51
+ configure.lineno config.status.lineno
52
+ mkinstalldirs = $(install_sh) -d
53
+ CONFIG_HEADER = config.h
54
+ CONFIG_CLEAN_FILES = json.pc
55
+ CONFIG_CLEAN_VPATH_FILES =
56
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
57
+ am__vpath_adj = case $$p in \
58
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
59
+ *) f=$$p;; \
60
+ esac;
61
+ am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
62
+ am__install_max = 40
63
+ am__nobase_strip_setup = \
64
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
65
+ am__nobase_strip = \
66
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
67
+ am__nobase_list = $(am__nobase_strip_setup); \
68
+ for p in $$list; do echo "$$p $$p"; done | \
69
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
70
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
71
+ if (++n[$$2] == $(am__install_max)) \
72
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
73
+ END { for (dir in files) print dir, files[dir] }'
74
+ am__base_list = \
75
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
76
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
77
+ am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \
78
+ "$(DESTDIR)$(libjsonincludedir)"
79
+ LTLIBRARIES = $(lib_LTLIBRARIES)
80
+ libjson_la_LIBADD =
81
+ am_libjson_la_OBJECTS = arraylist.lo debug.lo json_object.lo \
82
+ json_tokener.lo json_util.lo linkhash.lo printbuf.lo
83
+ libjson_la_OBJECTS = $(am_libjson_la_OBJECTS)
84
+ libjson_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
85
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
86
+ $(libjson_la_LDFLAGS) $(LDFLAGS) -o $@
87
+ am_test1_OBJECTS = test1.$(OBJEXT)
88
+ test1_OBJECTS = $(am_test1_OBJECTS)
89
+ test1_DEPENDENCIES = $(lib_LTLIBRARIES)
90
+ am_test2_OBJECTS = test2.$(OBJEXT)
91
+ test2_OBJECTS = $(am_test2_OBJECTS)
92
+ test2_DEPENDENCIES = $(lib_LTLIBRARIES)
93
+ am_test3_OBJECTS = test3.$(OBJEXT)
94
+ test3_OBJECTS = $(am_test3_OBJECTS)
95
+ test3_DEPENDENCIES = $(lib_LTLIBRARIES)
96
+ DEFAULT_INCLUDES = -I.@am__isrc@
97
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
98
+ am__depfiles_maybe = depfiles
99
+ am__mv = mv -f
100
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
101
+ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
102
+ LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
103
+ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
104
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
105
+ CCLD = $(CC)
106
+ LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
107
+ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
108
+ $(LDFLAGS) -o $@
109
+ SOURCES = $(libjson_la_SOURCES) $(test1_SOURCES) $(test2_SOURCES) \
110
+ $(test3_SOURCES)
111
+ DIST_SOURCES = $(libjson_la_SOURCES) $(test1_SOURCES) $(test2_SOURCES) \
112
+ $(test3_SOURCES)
113
+ DATA = $(pkgconfig_DATA)
114
+ HEADERS = $(libjsoninclude_HEADERS)
115
+ ETAGS = etags
116
+ CTAGS = ctags
117
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
118
+ distdir = $(PACKAGE)-$(VERSION)
119
+ top_distdir = $(distdir)
120
+ am__remove_distdir = \
121
+ { test ! -d "$(distdir)" \
122
+ || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
123
+ && rm -fr "$(distdir)"; }; }
124
+ DIST_ARCHIVES = $(distdir).tar.gz
125
+ GZIP_ENV = --best
126
+ distuninstallcheck_listfiles = find . -type f -print
127
+ distcleancheck_listfiles = find . -type f -print
128
+ ACLOCAL = @ACLOCAL@
129
+ AMTAR = @AMTAR@
130
+ AR = @AR@
131
+ AUTOCONF = @AUTOCONF@
132
+ AUTOHEADER = @AUTOHEADER@
133
+ AUTOMAKE = @AUTOMAKE@
134
+ AWK = @AWK@
135
+ CC = @CC@
136
+ CCDEPMODE = @CCDEPMODE@
137
+ CFLAGS = @CFLAGS@
138
+ CPP = @CPP@
139
+ CPPFLAGS = @CPPFLAGS@
140
+ CYGPATH_W = @CYGPATH_W@
141
+ DEFS = @DEFS@
142
+ DEPDIR = @DEPDIR@
143
+ DSYMUTIL = @DSYMUTIL@
144
+ DUMPBIN = @DUMPBIN@
145
+ ECHO_C = @ECHO_C@
146
+ ECHO_N = @ECHO_N@
147
+ ECHO_T = @ECHO_T@
148
+ EGREP = @EGREP@
149
+ EXEEXT = @EXEEXT@
150
+ FGREP = @FGREP@
151
+ GREP = @GREP@
152
+ INSTALL = @INSTALL@
153
+ INSTALL_DATA = @INSTALL_DATA@
154
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
155
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
156
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
157
+ LD = @LD@
158
+ LDFLAGS = @LDFLAGS@
159
+ LIBOBJS = @LIBOBJS@
160
+ LIBS = @LIBS@
161
+ LIBTOOL = @LIBTOOL@
162
+ LIPO = @LIPO@
163
+ LN_S = @LN_S@
164
+ LTLIBOBJS = @LTLIBOBJS@
165
+ MAKEINFO = @MAKEINFO@
166
+ MKDIR_P = @MKDIR_P@
167
+ NM = @NM@
168
+ NMEDIT = @NMEDIT@
169
+ OBJDUMP = @OBJDUMP@
170
+ OBJEXT = @OBJEXT@
171
+ OTOOL = @OTOOL@
172
+ OTOOL64 = @OTOOL64@
173
+ PACKAGE = @PACKAGE@
174
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
175
+ PACKAGE_NAME = @PACKAGE_NAME@
176
+ PACKAGE_STRING = @PACKAGE_STRING@
177
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
178
+ PACKAGE_URL = @PACKAGE_URL@
179
+ PACKAGE_VERSION = @PACKAGE_VERSION@
180
+ PATH_SEPARATOR = @PATH_SEPARATOR@
181
+ RANLIB = @RANLIB@
182
+ SED = @SED@
183
+ SET_MAKE = @SET_MAKE@
184
+ SHELL = @SHELL@
185
+ STRIP = @STRIP@
186
+ VERSION = @VERSION@
187
+ abs_builddir = @abs_builddir@
188
+ abs_srcdir = @abs_srcdir@
189
+ abs_top_builddir = @abs_top_builddir@
190
+ abs_top_srcdir = @abs_top_srcdir@
191
+ ac_ct_CC = @ac_ct_CC@
192
+ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
193
+ am__include = @am__include@
194
+ am__leading_dot = @am__leading_dot@
195
+ am__quote = @am__quote@
196
+ am__tar = @am__tar@
197
+ am__untar = @am__untar@
198
+ bindir = @bindir@
199
+ build = @build@
200
+ build_alias = @build_alias@
201
+ build_cpu = @build_cpu@
202
+ build_os = @build_os@
203
+ build_vendor = @build_vendor@
204
+ builddir = @builddir@
205
+ datadir = @datadir@
206
+ datarootdir = @datarootdir@
207
+ docdir = @docdir@
208
+ dvidir = @dvidir@
209
+ exec_prefix = @exec_prefix@
210
+ host = @host@
211
+ host_alias = @host_alias@
212
+ host_cpu = @host_cpu@
213
+ host_os = @host_os@
214
+ host_vendor = @host_vendor@
215
+ htmldir = @htmldir@
216
+ includedir = @includedir@
217
+ infodir = @infodir@
218
+ install_sh = @install_sh@
219
+ libdir = @libdir@
220
+ libexecdir = @libexecdir@
221
+ localedir = @localedir@
222
+ localstatedir = @localstatedir@
223
+ lt_ECHO = @lt_ECHO@
224
+ mandir = @mandir@
225
+ mkdir_p = @mkdir_p@
226
+ oldincludedir = @oldincludedir@
227
+ pdfdir = @pdfdir@
228
+ prefix = @prefix@
229
+ program_transform_name = @program_transform_name@
230
+ psdir = @psdir@
231
+ sbindir = @sbindir@
232
+ sharedstatedir = @sharedstatedir@
233
+ srcdir = @srcdir@
234
+ sysconfdir = @sysconfdir@
235
+ target_alias = @target_alias@
236
+ top_build_prefix = @top_build_prefix@
237
+ top_builddir = @top_builddir@
238
+ top_srcdir = @top_srcdir@
239
+ AM_CFLAGS = -Wall -Wwrite-strings -Werror -std=gnu99 -D_GNU_SOURCE -D_REENTRANT
240
+ EXTRA_DIST = README.html README-WIN32.html config.h.win32 doc
241
+ lib_LTLIBRARIES = libjson.la
242
+ pkgconfigdir = $(libdir)/pkgconfig
243
+ pkgconfig_DATA = json.pc
244
+ libjsonincludedir = $(includedir)/json
245
+ libjsoninclude_HEADERS = \
246
+ json.h \
247
+ bits.h \
248
+ debug.h \
249
+ linkhash.h \
250
+ arraylist.h \
251
+ printbuf.h \
252
+ json_util.h \
253
+ json_object.h \
254
+ json_object_private.h \
255
+ json_tokener.h
256
+
257
+ libjson_la_LDFLAGS = -version-info 0:1:0
258
+ libjson_la_SOURCES = \
259
+ arraylist.c \
260
+ debug.c \
261
+ json_object.c \
262
+ json_tokener.c \
263
+ json_util.c \
264
+ linkhash.c \
265
+ printbuf.c
266
+
267
+ test1_SOURCES = test1.c
268
+ test1_LDADD = $(lib_LTLIBRARIES)
269
+ test2_SOURCES = test2.c
270
+ test2_LDADD = $(lib_LTLIBRARIES)
271
+ test3_SOURCES = test3.c
272
+ test3_LDADD = $(lib_LTLIBRARIES)
273
+ all: config.h
274
+ $(MAKE) $(AM_MAKEFLAGS) all-am
275
+
276
+ .SUFFIXES:
277
+ .SUFFIXES: .c .lo .o .obj
278
+ am--refresh:
279
+ @:
280
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
281
+ @for dep in $?; do \
282
+ case '$(am__configure_deps)' in \
283
+ *$$dep*) \
284
+ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
285
+ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
286
+ && exit 0; \
287
+ exit 1;; \
288
+ esac; \
289
+ done; \
290
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
291
+ $(am__cd) $(top_srcdir) && \
292
+ $(AUTOMAKE) --gnu Makefile
293
+ .PRECIOUS: Makefile
294
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
295
+ @case '$?' in \
296
+ *config.status*) \
297
+ echo ' $(SHELL) ./config.status'; \
298
+ $(SHELL) ./config.status;; \
299
+ *) \
300
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
301
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
302
+ esac;
303
+
304
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
305
+ $(SHELL) ./config.status --recheck
306
+
307
+ $(top_srcdir)/configure: $(am__configure_deps)
308
+ $(am__cd) $(srcdir) && $(AUTOCONF)
309
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
310
+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
311
+ $(am__aclocal_m4_deps):
312
+
313
+ config.h: stamp-h1
314
+ @if test ! -f $@; then \
315
+ rm -f stamp-h1; \
316
+ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
317
+ else :; fi
318
+
319
+ stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
320
+ @rm -f stamp-h1
321
+ cd $(top_builddir) && $(SHELL) ./config.status config.h
322
+ $(srcdir)/config.h.in: $(am__configure_deps)
323
+ ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
324
+ rm -f stamp-h1
325
+ touch $@
326
+
327
+ distclean-hdr:
328
+ -rm -f config.h stamp-h1
329
+ json.pc: $(top_builddir)/config.status $(srcdir)/json.pc.in
330
+ cd $(top_builddir) && $(SHELL) ./config.status $@
331
+ install-libLTLIBRARIES: $(lib_LTLIBRARIES)
332
+ @$(NORMAL_INSTALL)
333
+ test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
334
+ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
335
+ list2=; for p in $$list; do \
336
+ if test -f $$p; then \
337
+ list2="$$list2 $$p"; \
338
+ else :; fi; \
339
+ done; \
340
+ test -z "$$list2" || { \
341
+ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
342
+ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
343
+ }
344
+
345
+ uninstall-libLTLIBRARIES:
346
+ @$(NORMAL_UNINSTALL)
347
+ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
348
+ for p in $$list; do \
349
+ $(am__strip_dir) \
350
+ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
351
+ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
352
+ done
353
+
354
+ clean-libLTLIBRARIES:
355
+ -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
356
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
357
+ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
358
+ test "$$dir" != "$$p" || dir=.; \
359
+ echo "rm -f \"$${dir}/so_locations\""; \
360
+ rm -f "$${dir}/so_locations"; \
361
+ done
362
+ libjson.la: $(libjson_la_OBJECTS) $(libjson_la_DEPENDENCIES)
363
+ $(libjson_la_LINK) -rpath $(libdir) $(libjson_la_OBJECTS) $(libjson_la_LIBADD) $(LIBS)
364
+
365
+ clean-checkPROGRAMS:
366
+ @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
367
+ echo " rm -f" $$list; \
368
+ rm -f $$list || exit $$?; \
369
+ test -n "$(EXEEXT)" || exit 0; \
370
+ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
371
+ echo " rm -f" $$list; \
372
+ rm -f $$list
373
+ test1$(EXEEXT): $(test1_OBJECTS) $(test1_DEPENDENCIES)
374
+ @rm -f test1$(EXEEXT)
375
+ $(LINK) $(test1_OBJECTS) $(test1_LDADD) $(LIBS)
376
+ test2$(EXEEXT): $(test2_OBJECTS) $(test2_DEPENDENCIES)
377
+ @rm -f test2$(EXEEXT)
378
+ $(LINK) $(test2_OBJECTS) $(test2_LDADD) $(LIBS)
379
+ test3$(EXEEXT): $(test3_OBJECTS) $(test3_DEPENDENCIES)
380
+ @rm -f test3$(EXEEXT)
381
+ $(LINK) $(test3_OBJECTS) $(test3_LDADD) $(LIBS)
382
+
383
+ mostlyclean-compile:
384
+ -rm -f *.$(OBJEXT)
385
+
386
+ distclean-compile:
387
+ -rm -f *.tab.c
388
+
389
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arraylist.Plo@am__quote@
390
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Plo@am__quote@
391
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_object.Plo@am__quote@
392
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_tokener.Plo@am__quote@
393
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_util.Plo@am__quote@
394
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/linkhash.Plo@am__quote@
395
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/printbuf.Plo@am__quote@
396
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test1.Po@am__quote@
397
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test2.Po@am__quote@
398
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test3.Po@am__quote@
399
+
400
+ .c.o:
401
+ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
402
+ @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
403
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
404
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
405
+ @am__fastdepCC_FALSE@ $(COMPILE) -c $<
406
+
407
+ .c.obj:
408
+ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
409
+ @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
410
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
411
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
412
+ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
413
+
414
+ .c.lo:
415
+ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
416
+ @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
417
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
418
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
419
+ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
420
+
421
+ mostlyclean-libtool:
422
+ -rm -f *.lo
423
+
424
+ clean-libtool:
425
+ -rm -rf .libs _libs
426
+
427
+ distclean-libtool:
428
+ -rm -f libtool config.lt
429
+ install-pkgconfigDATA: $(pkgconfig_DATA)
430
+ @$(NORMAL_INSTALL)
431
+ test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
432
+ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
433
+ for p in $$list; do \
434
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
435
+ echo "$$d$$p"; \
436
+ done | $(am__base_list) | \
437
+ while read files; do \
438
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
439
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
440
+ done
441
+
442
+ uninstall-pkgconfigDATA:
443
+ @$(NORMAL_UNINSTALL)
444
+ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
445
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
446
+ test -n "$$files" || exit 0; \
447
+ echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
448
+ cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
449
+ install-libjsonincludeHEADERS: $(libjsoninclude_HEADERS)
450
+ @$(NORMAL_INSTALL)
451
+ test -z "$(libjsonincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libjsonincludedir)"
452
+ @list='$(libjsoninclude_HEADERS)'; test -n "$(libjsonincludedir)" || list=; \
453
+ for p in $$list; do \
454
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
455
+ echo "$$d$$p"; \
456
+ done | $(am__base_list) | \
457
+ while read files; do \
458
+ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libjsonincludedir)'"; \
459
+ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libjsonincludedir)" || exit $$?; \
460
+ done
461
+
462
+ uninstall-libjsonincludeHEADERS:
463
+ @$(NORMAL_UNINSTALL)
464
+ @list='$(libjsoninclude_HEADERS)'; test -n "$(libjsonincludedir)" || list=; \
465
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
466
+ test -n "$$files" || exit 0; \
467
+ echo " ( cd '$(DESTDIR)$(libjsonincludedir)' && rm -f" $$files ")"; \
468
+ cd "$(DESTDIR)$(libjsonincludedir)" && rm -f $$files
469
+
470
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
471
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
472
+ unique=`for i in $$list; do \
473
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
474
+ done | \
475
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
476
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
477
+ mkid -fID $$unique
478
+ tags: TAGS
479
+
480
+ TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
481
+ $(TAGS_FILES) $(LISP)
482
+ set x; \
483
+ here=`pwd`; \
484
+ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
485
+ unique=`for i in $$list; do \
486
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
487
+ done | \
488
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
489
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
490
+ shift; \
491
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
492
+ test -n "$$unique" || unique=$$empty_fix; \
493
+ if test $$# -gt 0; then \
494
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
495
+ "$$@" $$unique; \
496
+ else \
497
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
498
+ $$unique; \
499
+ fi; \
500
+ fi
501
+ ctags: CTAGS
502
+ CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
503
+ $(TAGS_FILES) $(LISP)
504
+ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
505
+ unique=`for i in $$list; do \
506
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
507
+ done | \
508
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
509
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
510
+ test -z "$(CTAGS_ARGS)$$unique" \
511
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
512
+ $$unique
513
+
514
+ GTAGS:
515
+ here=`$(am__cd) $(top_builddir) && pwd` \
516
+ && $(am__cd) $(top_srcdir) \
517
+ && gtags -i $(GTAGS_ARGS) "$$here"
518
+
519
+ distclean-tags:
520
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
521
+
522
+ distdir: $(DISTFILES)
523
+ $(am__remove_distdir)
524
+ test -d "$(distdir)" || mkdir "$(distdir)"
525
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
526
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
527
+ list='$(DISTFILES)'; \
528
+ dist_files=`for file in $$list; do echo $$file; done | \
529
+ sed -e "s|^$$srcdirstrip/||;t" \
530
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
531
+ case $$dist_files in \
532
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
533
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
534
+ sort -u` ;; \
535
+ esac; \
536
+ for file in $$dist_files; do \
537
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
538
+ if test -d $$d/$$file; then \
539
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
540
+ if test -d "$(distdir)/$$file"; then \
541
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
542
+ fi; \
543
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
544
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
545
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
546
+ fi; \
547
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
548
+ else \
549
+ test -f "$(distdir)/$$file" \
550
+ || cp -p $$d/$$file "$(distdir)/$$file" \
551
+ || exit 1; \
552
+ fi; \
553
+ done
554
+ -test -n "$(am__skip_mode_fix)" \
555
+ || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
556
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
557
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
558
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
559
+ || chmod -R a+r "$(distdir)"
560
+ dist-gzip: distdir
561
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
562
+ $(am__remove_distdir)
563
+
564
+ dist-bzip2: distdir
565
+ tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
566
+ $(am__remove_distdir)
567
+
568
+ dist-lzma: distdir
569
+ tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
570
+ $(am__remove_distdir)
571
+
572
+ dist-xz: distdir
573
+ tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
574
+ $(am__remove_distdir)
575
+
576
+ dist-tarZ: distdir
577
+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
578
+ $(am__remove_distdir)
579
+
580
+ dist-shar: distdir
581
+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
582
+ $(am__remove_distdir)
583
+
584
+ dist-zip: distdir
585
+ -rm -f $(distdir).zip
586
+ zip -rq $(distdir).zip $(distdir)
587
+ $(am__remove_distdir)
588
+
589
+ dist dist-all: distdir
590
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
591
+ $(am__remove_distdir)
592
+
593
+ # This target untars the dist file and tries a VPATH configuration. Then
594
+ # it guarantees that the distribution is self-contained by making another
595
+ # tarfile.
596
+ distcheck: dist
597
+ case '$(DIST_ARCHIVES)' in \
598
+ *.tar.gz*) \
599
+ GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
600
+ *.tar.bz2*) \
601
+ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
602
+ *.tar.lzma*) \
603
+ unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
604
+ *.tar.xz*) \
605
+ xz -dc $(distdir).tar.xz | $(am__untar) ;;\
606
+ *.tar.Z*) \
607
+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
608
+ *.shar.gz*) \
609
+ GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
610
+ *.zip*) \
611
+ unzip $(distdir).zip ;;\
612
+ esac
613
+ chmod -R a-w $(distdir); chmod a+w $(distdir)
614
+ mkdir $(distdir)/_build
615
+ mkdir $(distdir)/_inst
616
+ chmod a-w $(distdir)
617
+ test -d $(distdir)/_build || exit 0; \
618
+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
619
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
620
+ && am__cwd=`pwd` \
621
+ && $(am__cd) $(distdir)/_build \
622
+ && ../configure --srcdir=.. --prefix="$$dc_install_base" \
623
+ $(DISTCHECK_CONFIGURE_FLAGS) \
624
+ && $(MAKE) $(AM_MAKEFLAGS) \
625
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
626
+ && $(MAKE) $(AM_MAKEFLAGS) check \
627
+ && $(MAKE) $(AM_MAKEFLAGS) install \
628
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
629
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
630
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
631
+ distuninstallcheck \
632
+ && chmod -R a-w "$$dc_install_base" \
633
+ && ({ \
634
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
635
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
636
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
637
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
638
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
639
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
640
+ && rm -rf "$$dc_destdir" \
641
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
642
+ && rm -rf $(DIST_ARCHIVES) \
643
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
644
+ && cd "$$am__cwd" \
645
+ || exit 1
646
+ $(am__remove_distdir)
647
+ @(echo "$(distdir) archives ready for distribution: "; \
648
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
649
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
650
+ distuninstallcheck:
651
+ @$(am__cd) '$(distuninstallcheck_dir)' \
652
+ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
653
+ || { echo "ERROR: files left after uninstall:" ; \
654
+ if test -n "$(DESTDIR)"; then \
655
+ echo " (check DESTDIR support)"; \
656
+ fi ; \
657
+ $(distuninstallcheck_listfiles) ; \
658
+ exit 1; } >&2
659
+ distcleancheck: distclean
660
+ @if test '$(srcdir)' = . ; then \
661
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
662
+ exit 1 ; \
663
+ fi
664
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
665
+ || { echo "ERROR: files left in build directory after distclean:" ; \
666
+ $(distcleancheck_listfiles) ; \
667
+ exit 1; } >&2
668
+ check-am: all-am
669
+ $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
670
+ check: check-am
671
+ all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) config.h
672
+ installdirs:
673
+ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(libjsonincludedir)"; do \
674
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
675
+ done
676
+ install: install-am
677
+ install-exec: install-exec-am
678
+ install-data: install-data-am
679
+ uninstall: uninstall-am
680
+
681
+ install-am: all-am
682
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
683
+
684
+ installcheck: installcheck-am
685
+ install-strip:
686
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
687
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
688
+ `test -z '$(STRIP)' || \
689
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
690
+ mostlyclean-generic:
691
+
692
+ clean-generic:
693
+
694
+ distclean-generic:
695
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
696
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
697
+
698
+ maintainer-clean-generic:
699
+ @echo "This command is intended for maintainers to use"
700
+ @echo "it deletes files that may require special tools to rebuild."
701
+ clean: clean-am
702
+
703
+ clean-am: clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \
704
+ clean-libtool mostlyclean-am
705
+
706
+ distclean: distclean-am
707
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
708
+ -rm -rf ./$(DEPDIR)
709
+ -rm -f Makefile
710
+ distclean-am: clean-am distclean-compile distclean-generic \
711
+ distclean-hdr distclean-libtool distclean-tags
712
+
713
+ dvi: dvi-am
714
+
715
+ dvi-am:
716
+
717
+ html: html-am
718
+
719
+ html-am:
720
+
721
+ info: info-am
722
+
723
+ info-am:
724
+
725
+ install-data-am: install-libjsonincludeHEADERS install-pkgconfigDATA
726
+
727
+ install-dvi: install-dvi-am
728
+
729
+ install-dvi-am:
730
+
731
+ install-exec-am: install-libLTLIBRARIES
732
+
733
+ install-html: install-html-am
734
+
735
+ install-html-am:
736
+
737
+ install-info: install-info-am
738
+
739
+ install-info-am:
740
+
741
+ install-man:
742
+
743
+ install-pdf: install-pdf-am
744
+
745
+ install-pdf-am:
746
+
747
+ install-ps: install-ps-am
748
+
749
+ install-ps-am:
750
+
751
+ installcheck-am:
752
+
753
+ maintainer-clean: maintainer-clean-am
754
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
755
+ -rm -rf $(top_srcdir)/autom4te.cache
756
+ -rm -rf ./$(DEPDIR)
757
+ -rm -f Makefile
758
+ maintainer-clean-am: distclean-am maintainer-clean-generic
759
+
760
+ mostlyclean: mostlyclean-am
761
+
762
+ mostlyclean-am: mostlyclean-compile mostlyclean-generic \
763
+ mostlyclean-libtool
764
+
765
+ pdf: pdf-am
766
+
767
+ pdf-am:
768
+
769
+ ps: ps-am
770
+
771
+ ps-am:
772
+
773
+ uninstall-am: uninstall-libLTLIBRARIES uninstall-libjsonincludeHEADERS \
774
+ uninstall-pkgconfigDATA
775
+
776
+ .MAKE: all check-am install-am install-strip
777
+
778
+ .PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \
779
+ clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \
780
+ clean-libtool ctags dist dist-all dist-bzip2 dist-gzip \
781
+ dist-lzma dist-shar dist-tarZ dist-xz dist-zip distcheck \
782
+ distclean distclean-compile distclean-generic distclean-hdr \
783
+ distclean-libtool distclean-tags distcleancheck distdir \
784
+ distuninstallcheck dvi dvi-am html html-am info info-am \
785
+ install install-am install-data install-data-am install-dvi \
786
+ install-dvi-am install-exec install-exec-am install-html \
787
+ install-html-am install-info install-info-am \
788
+ install-libLTLIBRARIES install-libjsonincludeHEADERS \
789
+ install-man install-pdf install-pdf-am install-pkgconfigDATA \
790
+ install-ps install-ps-am install-strip installcheck \
791
+ installcheck-am installdirs maintainer-clean \
792
+ maintainer-clean-generic mostlyclean mostlyclean-compile \
793
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
794
+ tags uninstall uninstall-am uninstall-libLTLIBRARIES \
795
+ uninstall-libjsonincludeHEADERS uninstall-pkgconfigDATA
796
+
797
+
798
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
799
+ # Otherwise a system limit (for SysV at least) may be exceeded.
800
+ .NOEXPORT: