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 38 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113
  1. # Makefile.in generated by automake 1.14.1 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2013 Free Software Foundation, Inc.
  4. # This Makefile.in is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  9. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  10. # PARTICULAR PURPOSE.
  11. @SET_MAKE@
  12. VPATH = @srcdir@
  13. am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
  14. am__make_running_with_option = \
  15. case $${target_option-} in \
  16. ?) ;; \
  17. *) echo "am__make_running_with_option: internal error: invalid" \
  18. "target option '$${target_option-}' specified" >&2; \
  19. exit 1;; \
  20. esac; \
  21. has_opt=no; \
  22. sane_makeflags=$$MAKEFLAGS; \
  23. if $(am__is_gnu_make); then \
  24. sane_makeflags=$$MFLAGS; \
  25. else \
  26. case $$MAKEFLAGS in \
  27. *\\[\ \ ]*) \
  28. bs=\\; \
  29. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  30. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  31. esac; \
  32. fi; \
  33. skip_next=no; \
  34. strip_trailopt () \
  35. { \
  36. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  37. }; \
  38. for flg in $$sane_makeflags; do \
  39. test $$skip_next = yes && { skip_next=no; continue; }; \
  40. case $$flg in \
  41. *=*|--*) continue;; \
  42. -*I) strip_trailopt 'I'; skip_next=yes;; \
  43. -*I?*) strip_trailopt 'I';; \
  44. -*O) strip_trailopt 'O'; skip_next=yes;; \
  45. -*O?*) strip_trailopt 'O';; \
  46. -*l) strip_trailopt 'l'; skip_next=yes;; \
  47. -*l?*) strip_trailopt 'l';; \
  48. -[dEDm]) skip_next=yes;; \
  49. -[JT]) skip_next=yes;; \
  50. esac; \
  51. case $$flg in \
  52. *$$target_option*) has_opt=yes; break;; \
  53. esac; \
  54. done; \
  55. test $$has_opt = yes
  56. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  57. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  58. pkgdatadir = $(datadir)/@PACKAGE@
  59. pkgincludedir = $(includedir)/@PACKAGE@
  60. pkglibdir = $(libdir)/@PACKAGE@
  61. pkglibexecdir = $(libexecdir)/@PACKAGE@
  62. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  63. install_sh_DATA = $(install_sh) -c -m 644
  64. install_sh_PROGRAM = $(install_sh) -c
  65. install_sh_SCRIPT = $(install_sh) -c
  66. INSTALL_HEADER = $(INSTALL_DATA)
  67. transform = $(program_transform_name)
  68. NORMAL_INSTALL = :
  69. PRE_INSTALL = :
  70. POST_INSTALL = :
  71. NORMAL_UNINSTALL = :
  72. PRE_UNINSTALL = :
  73. POST_UNINSTALL = :
  74. build_triplet = @build@
  75. host_triplet = @host@
  76. subdir = .
  77. DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
  78. $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
  79. $(top_srcdir)/configure $(am__configure_deps) \
  80. $(srcdir)/config.h.in $(srcdir)/json_config.h.in \
  81. $(srcdir)/json-c.pc.in $(srcdir)/json-c-uninstalled.pc.in \
  82. depcomp $(libjson_cinclude_HEADERS) $(noinst_HEADERS) COPYING \
  83. compile config.guess config.sub install-sh missing ltmain.sh
  84. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  85. am__aclocal_m4_deps = \
  86. $(top_srcdir)/autoconf-archive/m4/ax_append_compile_flags.m4 \
  87. $(top_srcdir)/autoconf-archive/m4/ax_append_flag.m4 \
  88. $(top_srcdir)/autoconf-archive/m4/ax_check_compile_flag.m4 \
  89. $(top_srcdir)/autoconf-archive/m4/ax_compile_check_sizeof.m4 \
  90. $(top_srcdir)/autoconf-archive/m4/ax_require_defined.m4 \
  91. $(top_srcdir)/configure.ac
  92. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  93. $(ACLOCAL_M4)
  94. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  95. configure.lineno config.status.lineno
  96. mkinstalldirs = $(install_sh) -d
  97. CONFIG_HEADER = config.h json_config.h
  98. CONFIG_CLEAN_FILES = json-c.pc json-c-uninstalled.pc
  99. CONFIG_CLEAN_VPATH_FILES =
  100. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  101. am__vpath_adj = case $$p in \
  102. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  103. *) f=$$p;; \
  104. esac;
  105. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  106. am__install_max = 40
  107. am__nobase_strip_setup = \
  108. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  109. am__nobase_strip = \
  110. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  111. am__nobase_list = $(am__nobase_strip_setup); \
  112. for p in $$list; do echo "$$p $$p"; done | \
  113. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  114. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  115. if (++n[$$2] == $(am__install_max)) \
  116. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  117. END { for (dir in files) print dir, files[dir] }'
  118. am__base_list = \
  119. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  120. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  121. am__uninstall_files_from_dir = { \
  122. test -z "$$files" \
  123. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  124. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  125. $(am__cd) "$$dir" && rm -f $$files; }; \
  126. }
  127. am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \
  128. "$(DESTDIR)$(libjson_cincludedir)"
  129. LTLIBRARIES = $(lib_LTLIBRARIES)
  130. libjson_c_la_LIBADD =
  131. am_libjson_c_la_OBJECTS = arraylist.lo debug.lo json_c_version.lo \
  132. json_object.lo json_object_iterator.lo json_pointer.lo \
  133. json_tokener.lo json_util.lo json_visit.lo linkhash.lo \
  134. printbuf.lo random_seed.lo strerror_override.lo
  135. libjson_c_la_OBJECTS = $(am_libjson_c_la_OBJECTS)
  136. AM_V_lt = $(am__v_lt_@AM_V@)
  137. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  138. am__v_lt_0 = --silent
  139. am__v_lt_1 =
  140. libjson_c_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  141. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  142. $(libjson_c_la_LDFLAGS) $(LDFLAGS) -o $@
  143. AM_V_P = $(am__v_P_@AM_V@)
  144. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  145. am__v_P_0 = false
  146. am__v_P_1 = :
  147. AM_V_GEN = $(am__v_GEN_@AM_V@)
  148. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  149. am__v_GEN_0 = @echo " GEN " $@;
  150. am__v_GEN_1 =
  151. AM_V_at = $(am__v_at_@AM_V@)
  152. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  153. am__v_at_0 = @
  154. am__v_at_1 =
  155. DEFAULT_INCLUDES = -I.@am__isrc@
  156. depcomp = $(SHELL) $(top_srcdir)/depcomp
  157. am__depfiles_maybe = depfiles
  158. am__mv = mv -f
  159. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  160. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  161. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  162. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  163. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  164. $(AM_CFLAGS) $(CFLAGS)
  165. AM_V_CC = $(am__v_CC_@AM_V@)
  166. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  167. am__v_CC_0 = @echo " CC " $@;
  168. am__v_CC_1 =
  169. CCLD = $(CC)
  170. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  171. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  172. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  173. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  174. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  175. am__v_CCLD_0 = @echo " CCLD " $@;
  176. am__v_CCLD_1 =
  177. SOURCES = $(libjson_c_la_SOURCES)
  178. DIST_SOURCES = $(libjson_c_la_SOURCES)
  179. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  180. ctags-recursive dvi-recursive html-recursive info-recursive \
  181. install-data-recursive install-dvi-recursive \
  182. install-exec-recursive install-html-recursive \
  183. install-info-recursive install-pdf-recursive \
  184. install-ps-recursive install-recursive installcheck-recursive \
  185. installdirs-recursive pdf-recursive ps-recursive \
  186. tags-recursive uninstall-recursive
  187. am__can_run_installinfo = \
  188. case $$AM_UPDATE_INFO_DIR in \
  189. n|no|NO) false;; \
  190. *) (install-info --version) >/dev/null 2>&1;; \
  191. esac
  192. DATA = $(pkgconfig_DATA)
  193. HEADERS = $(libjson_cinclude_HEADERS) $(noinst_HEADERS)
  194. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  195. distclean-recursive maintainer-clean-recursive
  196. am__recursive_targets = \
  197. $(RECURSIVE_TARGETS) \
  198. $(RECURSIVE_CLEAN_TARGETS) \
  199. $(am__extra_recursive_targets)
  200. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  201. cscope distdir dist dist-all distcheck
  202. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
  203. $(LISP)config.h.in json_config.h.in
  204. # Read a list of newline-separated strings from the standard input,
  205. # and print each of them once, without duplicates. Input order is
  206. # *not* preserved.
  207. am__uniquify_input = $(AWK) '\
  208. BEGIN { nonempty = 0; } \
  209. { items[$$0] = 1; nonempty = 1; } \
  210. END { if (nonempty) { for (i in items) print i; }; } \
  211. '
  212. # Make sure the list of sources is unique. This is necessary because,
  213. # e.g., the same source file might be shared among _SOURCES variables
  214. # for different programs/libraries.
  215. am__define_uniq_tagged_files = \
  216. list='$(am__tagged_files)'; \
  217. unique=`for i in $$list; do \
  218. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  219. done | $(am__uniquify_input)`
  220. ETAGS = etags
  221. CTAGS = ctags
  222. CSCOPE = cscope
  223. DIST_SUBDIRS = $(SUBDIRS)
  224. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  225. distdir = $(PACKAGE)-$(VERSION)
  226. top_distdir = $(distdir)
  227. am__remove_distdir = \
  228. if test -d "$(distdir)"; then \
  229. find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
  230. && rm -rf "$(distdir)" \
  231. || { sleep 5 && rm -rf "$(distdir)"; }; \
  232. else :; fi
  233. am__post_remove_distdir = $(am__remove_distdir)
  234. am__relativize = \
  235. dir0=`pwd`; \
  236. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  237. sed_rest='s,^[^/]*/*,,'; \
  238. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  239. sed_butlast='s,/*[^/]*$$,,'; \
  240. while test -n "$$dir1"; do \
  241. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  242. if test "$$first" != "."; then \
  243. if test "$$first" = ".."; then \
  244. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  245. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  246. else \
  247. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  248. if test "$$first2" = "$$first"; then \
  249. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  250. else \
  251. dir2="../$$dir2"; \
  252. fi; \
  253. dir0="$$dir0"/"$$first"; \
  254. fi; \
  255. fi; \
  256. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  257. done; \
  258. reldir="$$dir2"
  259. DIST_ARCHIVES = $(distdir).tar.gz
  260. GZIP_ENV = --best
  261. DIST_TARGETS = dist-gzip
  262. distuninstallcheck_listfiles = find . -type f -print
  263. am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
  264. | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
  265. distcleancheck_listfiles = find . -type f -print
  266. ACLOCAL = @ACLOCAL@
  267. AMTAR = @AMTAR@
  268. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  269. AR = @AR@
  270. AUTOCONF = @AUTOCONF@
  271. AUTOHEADER = @AUTOHEADER@
  272. AUTOMAKE = @AUTOMAKE@
  273. AWK = @AWK@
  274. CC = @CC@
  275. CCDEPMODE = @CCDEPMODE@
  276. CFLAGS = @CFLAGS@
  277. CPP = @CPP@
  278. CPPFLAGS = @CPPFLAGS@
  279. CYGPATH_W = @CYGPATH_W@
  280. DEFS = @DEFS@
  281. DEPDIR = @DEPDIR@
  282. DLLTOOL = @DLLTOOL@
  283. DSYMUTIL = @DSYMUTIL@
  284. DUMPBIN = @DUMPBIN@
  285. ECHO_C = @ECHO_C@
  286. ECHO_N = @ECHO_N@
  287. ECHO_T = @ECHO_T@
  288. EGREP = @EGREP@
  289. EXEEXT = @EXEEXT@
  290. FGREP = @FGREP@
  291. GREP = @GREP@
  292. INSTALL = @INSTALL@
  293. INSTALL_DATA = @INSTALL_DATA@
  294. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  295. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  296. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  297. JSON_BSYMBOLIC_LDFLAGS = @JSON_BSYMBOLIC_LDFLAGS@
  298. LD = @LD@
  299. LDFLAGS = @LDFLAGS@
  300. LIBOBJS = @LIBOBJS@
  301. LIBS = @LIBS@
  302. LIBTOOL = @LIBTOOL@
  303. LIPO = @LIPO@
  304. LN_S = @LN_S@
  305. LTLIBOBJS = @LTLIBOBJS@
  306. MAKEINFO = @MAKEINFO@
  307. MANIFEST_TOOL = @MANIFEST_TOOL@
  308. MKDIR_P = @MKDIR_P@
  309. NM = @NM@
  310. NMEDIT = @NMEDIT@
  311. OBJDUMP = @OBJDUMP@
  312. OBJEXT = @OBJEXT@
  313. OTOOL = @OTOOL@
  314. OTOOL64 = @OTOOL64@
  315. PACKAGE = @PACKAGE@
  316. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  317. PACKAGE_NAME = @PACKAGE_NAME@
  318. PACKAGE_STRING = @PACKAGE_STRING@
  319. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  320. PACKAGE_URL = @PACKAGE_URL@
  321. PACKAGE_VERSION = @PACKAGE_VERSION@
  322. PATH_SEPARATOR = @PATH_SEPARATOR@
  323. RANLIB = @RANLIB@
  324. SED = @SED@
  325. SET_MAKE = @SET_MAKE@
  326. SHELL = @SHELL@
  327. STRIP = @STRIP@
  328. VERSION = @VERSION@
  329. abs_builddir = @abs_builddir@
  330. abs_srcdir = @abs_srcdir@
  331. abs_top_builddir = @abs_top_builddir@
  332. abs_top_srcdir = @abs_top_srcdir@
  333. ac_ct_AR = @ac_ct_AR@
  334. ac_ct_CC = @ac_ct_CC@
  335. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  336. am__include = @am__include@
  337. am__leading_dot = @am__leading_dot@
  338. am__quote = @am__quote@
  339. am__tar = @am__tar@
  340. am__untar = @am__untar@
  341. bindir = @bindir@
  342. build = @build@
  343. build_alias = @build_alias@
  344. build_cpu = @build_cpu@
  345. build_os = @build_os@
  346. build_vendor = @build_vendor@
  347. builddir = @builddir@
  348. datadir = @datadir@
  349. datarootdir = @datarootdir@
  350. docdir = @docdir@
  351. dvidir = @dvidir@
  352. exec_prefix = @exec_prefix@
  353. host = @host@
  354. host_alias = @host_alias@
  355. host_cpu = @host_cpu@
  356. host_os = @host_os@
  357. host_vendor = @host_vendor@
  358. htmldir = @htmldir@
  359. includedir = @includedir@
  360. infodir = @infodir@
  361. install_sh = @install_sh@
  362. libdir = @libdir@
  363. libexecdir = @libexecdir@
  364. localedir = @localedir@
  365. localstatedir = @localstatedir@
  366. mandir = @mandir@
  367. mkdir_p = @mkdir_p@
  368. oldincludedir = @oldincludedir@
  369. pdfdir = @pdfdir@
  370. prefix = @prefix@
  371. program_transform_name = @program_transform_name@
  372. psdir = @psdir@
  373. sbindir = @sbindir@
  374. sharedstatedir = @sharedstatedir@
  375. srcdir = @srcdir@
  376. sysconfdir = @sysconfdir@
  377. target_alias = @target_alias@
  378. top_build_prefix = @top_build_prefix@
  379. top_builddir = @top_builddir@
  380. top_srcdir = @top_srcdir@
  381. EXTRA_DIST = README.md README.html config.h.win32 Doxyfile \
  382. issues_closed_for_0.13.md
  383. SUBDIRS = . tests
  384. lib_LTLIBRARIES = libjson-c.la
  385. pkgconfigdir = $(libdir)/pkgconfig
  386. pkgconfig_DATA = json-c.pc
  387. libjson_cincludedir = $(includedir)/json-c
  388. libjson_cinclude_HEADERS = \
  389. arraylist.h \
  390. bits.h \
  391. debug.h \
  392. json.h \
  393. json_c_version.h \
  394. json_config.h \
  395. json_inttypes.h \
  396. json_object.h \
  397. json_object_iterator.h \
  398. json_pointer.h \
  399. json_tokener.h \
  400. json_util.h \
  401. json_visit.h \
  402. linkhash.h \
  403. printbuf.h
  404. noinst_HEADERS = \
  405. json_object_private.h \
  406. math_compat.h \
  407. strdup_compat.h \
  408. snprintf_compat.h \
  409. vasprintf_compat.h \
  410. random_seed.h \
  411. strerror_override.h
  412. libjson_c_la_LDFLAGS = -version-info 3:1:0 -no-undefined @JSON_BSYMBOLIC_LDFLAGS@
  413. libjson_c_la_SOURCES = \
  414. arraylist.c \
  415. debug.c \
  416. json_c_version.c \
  417. json_object.c \
  418. json_object_iterator.c \
  419. json_pointer.c \
  420. json_tokener.c \
  421. json_util.c \
  422. json_visit.c \
  423. linkhash.c \
  424. printbuf.c \
  425. random_seed.c \
  426. strerror_override.c \
  427. strerror_override_private.h
  428. DISTCLEANFILES = config.h json-c-uninstalled.pc json-c.pc \
  429. json_config.h
  430. JSON_CLEANFILES = Makefile.in aclocal.m4 autom4te.cache/ compile \
  431. config.guess config.h.in config.sub configure depcomp \
  432. install-sh ltmain.sh missing test-driver tests/Makefile.in \
  433. libtool stamp-h1 stamp-h2
  434. ANDROID_CFLAGS = -I$(top_srcdir) -DHAVE_CONFIG_H
  435. all: config.h json_config.h
  436. $(MAKE) $(AM_MAKEFLAGS) all-recursive
  437. .SUFFIXES:
  438. .SUFFIXES: .c .lo .o .obj
  439. am--refresh: Makefile
  440. @:
  441. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
  442. @for dep in $?; do \
  443. case '$(am__configure_deps)' in \
  444. *$$dep*) \
  445. echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
  446. $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
  447. && exit 0; \
  448. exit 1;; \
  449. esac; \
  450. done; \
  451. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
  452. $(am__cd) $(top_srcdir) && \
  453. $(AUTOMAKE) --gnu Makefile
  454. .PRECIOUS: Makefile
  455. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  456. @case '$?' in \
  457. *config.status*) \
  458. echo ' $(SHELL) ./config.status'; \
  459. $(SHELL) ./config.status;; \
  460. *) \
  461. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  462. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  463. esac;
  464. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  465. $(SHELL) ./config.status --recheck
  466. $(top_srcdir)/configure: $(am__configure_deps)
  467. $(am__cd) $(srcdir) && $(AUTOCONF)
  468. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  469. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  470. $(am__aclocal_m4_deps):
  471. config.h: stamp-h1
  472. @test -f $@ || rm -f stamp-h1
  473. @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
  474. stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
  475. @rm -f stamp-h1
  476. cd $(top_builddir) && $(SHELL) ./config.status config.h
  477. $(srcdir)/config.h.in: $(am__configure_deps)
  478. ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
  479. rm -f stamp-h1
  480. touch $@
  481. json_config.h: stamp-h2
  482. @test -f $@ || rm -f stamp-h2
  483. @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h2
  484. stamp-h2: $(srcdir)/json_config.h.in $(top_builddir)/config.status
  485. @rm -f stamp-h2
  486. cd $(top_builddir) && $(SHELL) ./config.status json_config.h
  487. distclean-hdr:
  488. -rm -f config.h stamp-h1 json_config.h stamp-h2
  489. json-c.pc: $(top_builddir)/config.status $(srcdir)/json-c.pc.in
  490. cd $(top_builddir) && $(SHELL) ./config.status $@
  491. json-c-uninstalled.pc: $(top_builddir)/config.status $(srcdir)/json-c-uninstalled.pc.in
  492. cd $(top_builddir) && $(SHELL) ./config.status $@
  493. install-libLTLIBRARIES: $(lib_LTLIBRARIES)
  494. @$(NORMAL_INSTALL)
  495. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  496. list2=; for p in $$list; do \
  497. if test -f $$p; then \
  498. list2="$$list2 $$p"; \
  499. else :; fi; \
  500. done; \
  501. test -z "$$list2" || { \
  502. echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
  503. $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
  504. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
  505. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
  506. }
  507. uninstall-libLTLIBRARIES:
  508. @$(NORMAL_UNINSTALL)
  509. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  510. for p in $$list; do \
  511. $(am__strip_dir) \
  512. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
  513. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
  514. done
  515. clean-libLTLIBRARIES:
  516. -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
  517. @list='$(lib_LTLIBRARIES)'; \
  518. locs=`for p in $$list; do echo $$p; done | \
  519. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  520. sort -u`; \
  521. test -z "$$locs" || { \
  522. echo rm -f $${locs}; \
  523. rm -f $${locs}; \
  524. }
  525. libjson-c.la: $(libjson_c_la_OBJECTS) $(libjson_c_la_DEPENDENCIES) $(EXTRA_libjson_c_la_DEPENDENCIES)
  526. $(AM_V_CCLD)$(libjson_c_la_LINK) -rpath $(libdir) $(libjson_c_la_OBJECTS) $(libjson_c_la_LIBADD) $(LIBS)
  527. mostlyclean-compile:
  528. -rm -f *.$(OBJEXT)
  529. distclean-compile:
  530. -rm -f *.tab.c
  531. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arraylist.Plo@am__quote@
  532. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Plo@am__quote@
  533. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_c_version.Plo@am__quote@
  534. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_object.Plo@am__quote@
  535. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_object_iterator.Plo@am__quote@
  536. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_pointer.Plo@am__quote@
  537. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_tokener.Plo@am__quote@
  538. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_util.Plo@am__quote@
  539. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_visit.Plo@am__quote@
  540. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/linkhash.Plo@am__quote@
  541. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/printbuf.Plo@am__quote@
  542. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/random_seed.Plo@am__quote@
  543. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strerror_override.Plo@am__quote@
  544. .c.o:
  545. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  546. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  547. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  548. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  549. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  550. .c.obj:
  551. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  552. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  553. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  554. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  555. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  556. .c.lo:
  557. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  558. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  559. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  560. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  561. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  562. mostlyclean-libtool:
  563. -rm -f *.lo
  564. clean-libtool:
  565. -rm -rf .libs _libs
  566. distclean-libtool:
  567. -rm -f libtool config.lt
  568. install-pkgconfigDATA: $(pkgconfig_DATA)
  569. @$(NORMAL_INSTALL)
  570. @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
  571. if test -n "$$list"; then \
  572. echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
  573. $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
  574. fi; \
  575. for p in $$list; do \
  576. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  577. echo "$$d$$p"; \
  578. done | $(am__base_list) | \
  579. while read files; do \
  580. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
  581. $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
  582. done
  583. uninstall-pkgconfigDATA:
  584. @$(NORMAL_UNINSTALL)
  585. @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
  586. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  587. dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
  588. install-libjson_cincludeHEADERS: $(libjson_cinclude_HEADERS)
  589. @$(NORMAL_INSTALL)
  590. @list='$(libjson_cinclude_HEADERS)'; test -n "$(libjson_cincludedir)" || list=; \
  591. if test -n "$$list"; then \
  592. echo " $(MKDIR_P) '$(DESTDIR)$(libjson_cincludedir)'"; \
  593. $(MKDIR_P) "$(DESTDIR)$(libjson_cincludedir)" || exit 1; \
  594. fi; \
  595. for p in $$list; do \
  596. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  597. echo "$$d$$p"; \
  598. done | $(am__base_list) | \
  599. while read files; do \
  600. echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libjson_cincludedir)'"; \
  601. $(INSTALL_HEADER) $$files "$(DESTDIR)$(libjson_cincludedir)" || exit $$?; \
  602. done
  603. uninstall-libjson_cincludeHEADERS:
  604. @$(NORMAL_UNINSTALL)
  605. @list='$(libjson_cinclude_HEADERS)'; test -n "$(libjson_cincludedir)" || list=; \
  606. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  607. dir='$(DESTDIR)$(libjson_cincludedir)'; $(am__uninstall_files_from_dir)
  608. # This directory's subdirectories are mostly independent; you can cd
  609. # into them and run 'make' without going through this Makefile.
  610. # To change the values of 'make' variables: instead of editing Makefiles,
  611. # (1) if the variable is set in 'config.status', edit 'config.status'
  612. # (which will cause the Makefiles to be regenerated when you run 'make');
  613. # (2) otherwise, pass the desired values on the 'make' command line.
  614. $(am__recursive_targets):
  615. @fail=; \
  616. if $(am__make_keepgoing); then \
  617. failcom='fail=yes'; \
  618. else \
  619. failcom='exit 1'; \
  620. fi; \
  621. dot_seen=no; \
  622. target=`echo $@ | sed s/-recursive//`; \
  623. case "$@" in \
  624. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  625. *) list='$(SUBDIRS)' ;; \
  626. esac; \
  627. for subdir in $$list; do \
  628. echo "Making $$target in $$subdir"; \
  629. if test "$$subdir" = "."; then \
  630. dot_seen=yes; \
  631. local_target="$$target-am"; \
  632. else \
  633. local_target="$$target"; \
  634. fi; \
  635. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  636. || eval $$failcom; \
  637. done; \
  638. if test "$$dot_seen" = "no"; then \
  639. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  640. fi; test -z "$$fail"
  641. ID: $(am__tagged_files)
  642. $(am__define_uniq_tagged_files); mkid -fID $$unique
  643. tags: tags-recursive
  644. TAGS: tags
  645. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  646. set x; \
  647. here=`pwd`; \
  648. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  649. include_option=--etags-include; \
  650. empty_fix=.; \
  651. else \
  652. include_option=--include; \
  653. empty_fix=; \
  654. fi; \
  655. list='$(SUBDIRS)'; for subdir in $$list; do \
  656. if test "$$subdir" = .; then :; else \
  657. test ! -f $$subdir/TAGS || \
  658. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  659. fi; \
  660. done; \
  661. $(am__define_uniq_tagged_files); \
  662. shift; \
  663. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  664. test -n "$$unique" || unique=$$empty_fix; \
  665. if test $$# -gt 0; then \
  666. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  667. "$$@" $$unique; \
  668. else \
  669. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  670. $$unique; \
  671. fi; \
  672. fi
  673. ctags: ctags-recursive
  674. CTAGS: ctags
  675. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  676. $(am__define_uniq_tagged_files); \
  677. test -z "$(CTAGS_ARGS)$$unique" \
  678. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  679. $$unique
  680. GTAGS:
  681. here=`$(am__cd) $(top_builddir) && pwd` \
  682. && $(am__cd) $(top_srcdir) \
  683. && gtags -i $(GTAGS_ARGS) "$$here"
  684. cscope: cscope.files
  685. test ! -s cscope.files \
  686. || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
  687. clean-cscope:
  688. -rm -f cscope.files
  689. cscope.files: clean-cscope cscopelist
  690. cscopelist: cscopelist-recursive
  691. cscopelist-am: $(am__tagged_files)
  692. list='$(am__tagged_files)'; \
  693. case "$(srcdir)" in \
  694. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  695. *) sdir=$(subdir)/$(srcdir) ;; \
  696. esac; \
  697. for i in $$list; do \
  698. if test -f "$$i"; then \
  699. echo "$(subdir)/$$i"; \
  700. else \
  701. echo "$$sdir/$$i"; \
  702. fi; \
  703. done >> $(top_builddir)/cscope.files
  704. distclean-tags:
  705. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  706. -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
  707. distdir: $(DISTFILES)
  708. $(am__remove_distdir)
  709. test -d "$(distdir)" || mkdir "$(distdir)"
  710. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  711. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  712. list='$(DISTFILES)'; \
  713. dist_files=`for file in $$list; do echo $$file; done | \
  714. sed -e "s|^$$srcdirstrip/||;t" \
  715. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  716. case $$dist_files in \
  717. */*) $(MKDIR_P) `echo "$$dist_files" | \
  718. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  719. sort -u` ;; \
  720. esac; \
  721. for file in $$dist_files; do \
  722. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  723. if test -d $$d/$$file; then \
  724. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  725. if test -d "$(distdir)/$$file"; then \
  726. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  727. fi; \
  728. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  729. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  730. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  731. fi; \
  732. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  733. else \
  734. test -f "$(distdir)/$$file" \
  735. || cp -p $$d/$$file "$(distdir)/$$file" \
  736. || exit 1; \
  737. fi; \
  738. done
  739. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  740. if test "$$subdir" = .; then :; else \
  741. $(am__make_dryrun) \
  742. || test -d "$(distdir)/$$subdir" \
  743. || $(MKDIR_P) "$(distdir)/$$subdir" \
  744. || exit 1; \
  745. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  746. $(am__relativize); \
  747. new_distdir=$$reldir; \
  748. dir1=$$subdir; dir2="$(top_distdir)"; \
  749. $(am__relativize); \
  750. new_top_distdir=$$reldir; \
  751. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  752. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  753. ($(am__cd) $$subdir && \
  754. $(MAKE) $(AM_MAKEFLAGS) \
  755. top_distdir="$$new_top_distdir" \
  756. distdir="$$new_distdir" \
  757. am__remove_distdir=: \
  758. am__skip_length_check=: \
  759. am__skip_mode_fix=: \
  760. distdir) \
  761. || exit 1; \
  762. fi; \
  763. done
  764. $(MAKE) $(AM_MAKEFLAGS) \
  765. top_distdir="$(top_distdir)" distdir="$(distdir)" \
  766. dist-hook
  767. -test -n "$(am__skip_mode_fix)" \
  768. || find "$(distdir)" -type d ! -perm -755 \
  769. -exec chmod u+rwx,go+rx {} \; -o \
  770. ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  771. ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  772. ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
  773. || chmod -R a+r "$(distdir)"
  774. dist-gzip: distdir
  775. tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  776. $(am__post_remove_distdir)
  777. dist-bzip2: distdir
  778. tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
  779. $(am__post_remove_distdir)
  780. dist-lzip: distdir
  781. tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
  782. $(am__post_remove_distdir)
  783. dist-xz: distdir
  784. tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
  785. $(am__post_remove_distdir)
  786. dist-tarZ: distdir
  787. @echo WARNING: "Support for shar distribution archives is" \
  788. "deprecated." >&2
  789. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  790. tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
  791. $(am__post_remove_distdir)
  792. dist-shar: distdir
  793. @echo WARNING: "Support for distribution archives compressed with" \
  794. "legacy program 'compress' is deprecated." >&2
  795. @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
  796. shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
  797. $(am__post_remove_distdir)
  798. dist-zip: distdir
  799. -rm -f $(distdir).zip
  800. zip -rq $(distdir).zip $(distdir)
  801. $(am__post_remove_distdir)
  802. dist dist-all:
  803. $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
  804. $(am__post_remove_distdir)
  805. # This target untars the dist file and tries a VPATH configuration. Then
  806. # it guarantees that the distribution is self-contained by making another
  807. # tarfile.
  808. distcheck: dist
  809. case '$(DIST_ARCHIVES)' in \
  810. *.tar.gz*) \
  811. GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
  812. *.tar.bz2*) \
  813. bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
  814. *.tar.lz*) \
  815. lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
  816. *.tar.xz*) \
  817. xz -dc $(distdir).tar.xz | $(am__untar) ;;\
  818. *.tar.Z*) \
  819. uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
  820. *.shar.gz*) \
  821. GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
  822. *.zip*) \
  823. unzip $(distdir).zip ;;\
  824. esac
  825. chmod -R a-w $(distdir)
  826. chmod u+w $(distdir)
  827. mkdir $(distdir)/_build $(distdir)/_inst
  828. chmod a-w $(distdir)
  829. test -d $(distdir)/_build || exit 0; \
  830. dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
  831. && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
  832. && am__cwd=`pwd` \
  833. && $(am__cd) $(distdir)/_build \
  834. && ../configure \
  835. $(AM_DISTCHECK_CONFIGURE_FLAGS) \
  836. $(DISTCHECK_CONFIGURE_FLAGS) \
  837. --srcdir=.. --prefix="$$dc_install_base" \
  838. && $(MAKE) $(AM_MAKEFLAGS) \
  839. && $(MAKE) $(AM_MAKEFLAGS) dvi \
  840. && $(MAKE) $(AM_MAKEFLAGS) check \
  841. && $(MAKE) $(AM_MAKEFLAGS) install \
  842. && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  843. && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  844. && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
  845. distuninstallcheck \
  846. && chmod -R a-w "$$dc_install_base" \
  847. && ({ \
  848. (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
  849. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
  850. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
  851. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
  852. distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
  853. } || { rm -rf "$$dc_destdir"; exit 1; }) \
  854. && rm -rf "$$dc_destdir" \
  855. && $(MAKE) $(AM_MAKEFLAGS) dist \
  856. && rm -rf $(DIST_ARCHIVES) \
  857. && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
  858. && cd "$$am__cwd" \
  859. || exit 1
  860. $(am__post_remove_distdir)
  861. @(echo "$(distdir) archives ready for distribution: "; \
  862. list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
  863. sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
  864. distuninstallcheck:
  865. @test -n '$(distuninstallcheck_dir)' || { \
  866. echo 'ERROR: trying to run $@ with an empty' \
  867. '$$(distuninstallcheck_dir)' >&2; \
  868. exit 1; \
  869. }; \
  870. $(am__cd) '$(distuninstallcheck_dir)' || { \
  871. echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
  872. exit 1; \
  873. }; \
  874. test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
  875. || { echo "ERROR: files left after uninstall:" ; \
  876. if test -n "$(DESTDIR)"; then \
  877. echo " (check DESTDIR support)"; \
  878. fi ; \
  879. $(distuninstallcheck_listfiles) ; \
  880. exit 1; } >&2
  881. distcleancheck: distclean
  882. @if test '$(srcdir)' = . ; then \
  883. echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  884. exit 1 ; \
  885. fi
  886. @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  887. || { echo "ERROR: files left in build directory after distclean:" ; \
  888. $(distcleancheck_listfiles) ; \
  889. exit 1; } >&2
  890. check-am: all-am
  891. check: check-recursive
  892. all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) config.h \
  893. json_config.h
  894. installdirs: installdirs-recursive
  895. installdirs-am:
  896. for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(libjson_cincludedir)"; do \
  897. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  898. done
  899. install: install-recursive
  900. install-exec: install-exec-recursive
  901. install-data: install-data-recursive
  902. uninstall: uninstall-recursive
  903. install-am: all-am
  904. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  905. installcheck: installcheck-recursive
  906. install-strip:
  907. if test -z '$(STRIP)'; then \
  908. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  909. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  910. install; \
  911. else \
  912. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  913. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  914. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  915. fi
  916. mostlyclean-generic:
  917. clean-generic:
  918. distclean-generic:
  919. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  920. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  921. -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
  922. maintainer-clean-generic:
  923. @echo "This command is intended for maintainers to use"
  924. @echo "it deletes files that may require special tools to rebuild."
  925. clean: clean-recursive
  926. clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
  927. mostlyclean-am
  928. distclean: distclean-recursive
  929. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  930. -rm -rf ./$(DEPDIR)
  931. -rm -f Makefile
  932. distclean-am: clean-am distclean-compile distclean-generic \
  933. distclean-hdr distclean-libtool distclean-local distclean-tags
  934. dvi: dvi-recursive
  935. dvi-am:
  936. html: html-recursive
  937. html-am:
  938. info: info-recursive
  939. info-am:
  940. install-data-am: install-libjson_cincludeHEADERS install-pkgconfigDATA
  941. install-dvi: install-dvi-recursive
  942. install-dvi-am:
  943. install-exec-am: install-libLTLIBRARIES
  944. install-html: install-html-recursive
  945. install-html-am:
  946. install-info: install-info-recursive
  947. install-info-am:
  948. install-man:
  949. install-pdf: install-pdf-recursive
  950. install-pdf-am:
  951. install-ps: install-ps-recursive
  952. install-ps-am:
  953. installcheck-am:
  954. maintainer-clean: maintainer-clean-recursive
  955. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  956. -rm -rf $(top_srcdir)/autom4te.cache
  957. -rm -rf ./$(DEPDIR)
  958. -rm -f Makefile
  959. maintainer-clean-am: distclean-am maintainer-clean-generic
  960. mostlyclean: mostlyclean-recursive
  961. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  962. mostlyclean-libtool
  963. pdf: pdf-recursive
  964. pdf-am:
  965. ps: ps-recursive
  966. ps-am:
  967. uninstall-am: uninstall-libLTLIBRARIES \
  968. uninstall-libjson_cincludeHEADERS uninstall-local \
  969. uninstall-pkgconfigDATA
  970. .MAKE: $(am__recursive_targets) all install-am install-strip
  971. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
  972. am--refresh check check-am clean clean-cscope clean-generic \
  973. clean-libLTLIBRARIES clean-libtool cscope cscopelist-am ctags \
  974. ctags-am dist dist-all dist-bzip2 dist-gzip dist-hook \
  975. dist-lzip dist-shar dist-tarZ dist-xz dist-zip distcheck \
  976. distclean distclean-compile distclean-generic distclean-hdr \
  977. distclean-libtool distclean-local distclean-tags \
  978. distcleancheck distdir distuninstallcheck dvi dvi-am html \
  979. html-am info info-am install install-am install-data \
  980. install-data-am install-dvi install-dvi-am install-exec \
  981. install-exec-am install-html install-html-am install-info \
  982. install-info-am install-libLTLIBRARIES \
  983. install-libjson_cincludeHEADERS install-man install-pdf \
  984. install-pdf-am install-pkgconfigDATA install-ps install-ps-am \
  985. install-strip installcheck installcheck-am installdirs \
  986. installdirs-am maintainer-clean maintainer-clean-generic \
  987. mostlyclean mostlyclean-compile mostlyclean-generic \
  988. mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
  989. uninstall-am uninstall-libLTLIBRARIES \
  990. uninstall-libjson_cincludeHEADERS uninstall-local \
  991. uninstall-pkgconfigDATA
  992. dist-hook:
  993. test -d "$(distdir)/doc" || mkdir "$(distdir)/doc"
  994. chmod -R u+w "$(distdir)/doc"
  995. cd "$(distdir)" && doxygen
  996. distclean-local:
  997. -rm -rf $(testsubdir)
  998. # There's no built-in way to remove these after all the other
  999. # maintainer-clean steps happen, so do it explicitly here.
  1000. really-clean:
  1001. $(MAKE) maintainer-clean
  1002. rm -rf ${JSON_CLEANFILES}
  1003. uninstall-local:
  1004. rm -rf "$(DESTDIR)@includedir@/json-c"
  1005. rm -f "$(DESTDIR)@includedir@/json"
  1006. Android.mk: Makefile.am
  1007. androgenizer -:PROJECT json-c \
  1008. -:SHARED libjson-c \
  1009. -:TAGS eng debug \
  1010. -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
  1011. -:SOURCES $(libjson_c_la_SOURCES) $(nodist_libjson_c_la_SOURCES) \
  1012. -:CFLAGS $(DEFS) $(ANDROID_CFLAGS) $(libjson_c_la_CFLAGS) \
  1013. -:LDFLAGS $(libjson_c_la_LDFLAGS) $(libjson_c_la_LIBADD) \
  1014. -:HEADER_TARGET json-c \
  1015. -:HEADERS $(libjson_cinclude_HEADERS) \
  1016. -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
  1017. > $@
  1018. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  1019. # Otherwise a system limit (for SysV at least) may be exceeded.
  1020. .NOEXPORT: