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

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