Imported Upstream version 1.2.4
[platform/upstream/json-glib.git] / json-glib / Makefile.in
1 # Makefile.in generated by automake 1.15 from Makefile.am.
2 # @configure_input@
3
4 # Copyright (C) 1994-2014 Free Software Foundation, Inc.
5
6 # This Makefile.in is free software; the Free Software Foundation
7 # gives unlimited permission to copy and/or distribute it,
8 # with or without modifications, as long as this notice is preserved.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 # PARTICULAR PURPOSE.
14
15 @SET_MAKE@
16
17 # preamble
18
19 # Rules for generating enumeration types using glib-mkenums
20 #
21 # Define:
22 #       glib_enum_h = header template file
23 #       glib_enum_c = source template file
24 #       glib_enum_headers = list of headers to parse
25 #
26 # before including Makefile.am.enums. You will also need to have
27 # the following targets already defined:
28 #
29 #       CLEANFILES
30 #       DISTCLEANFILES
31 #       BUILT_SOURCES
32 #       EXTRA_DIST
33 #
34 # Author: Emmanuele Bassi <ebassi@linux.intel.com>
35
36 # Author: Fan, Chun-wei
37 # Common Autotools file used to generate Visual Studio 2008+
38 # Projects from their templates
39
40 # This autotools file, from GLib, can be used in other projects
41 # that have Visual Studio build support, and is copied into
42 # $(srcroot)/build/.
43
44 # * Input variables:
45 #
46 #   MSVCPROJS - List of Projects that should be generated
47 #
48 # * Simple tutorial
49 #
50 # Add this to Makefile.am where your library/program is built:
51 #   include $(top_srcdir)/build/Makefile.msvcproj
52 #   MSVCPROJS = YourProject (can be multiple projects in a single srcdir)
53 #   YourProject_FILES = $(libyourlib_1_0_SOURCES)
54 #   YourProject_EXCLUDES = ... # list of sources to exclude, separated by '|', wildcards allowed; use random unsed value if none
55 #   YourProject_HEADERS_DIR = $(libyourlibincludedir)
56 #   YourProject_HEADERS_INST = $(libyourlib_1_0_HEADERS)
57 #   YourProject_HEADERS_EXCLUDES = ... # <list of headers to exclude from installation, separated by '|', wildcards allowed; use random unsed value if none>
58 #
59 #   dist-hook: \ # (or add to it if it is already there, note the vs9 items will also call the vs10 items in the process)
60 #       $(top_builddir)/build/win32/vs9/YourProject.vcproj      \
61 #       $(top_builddir)/build/win32/vs9/YourProject.headers
62
63 # Private functions
64
65 # Author: Fan, Chun-wei
66 # Common autotools file for constructing the g-ir-scanner and
67 # g-ir-compiler command lines for Visual Studio builds.
68
69 # This is copied from $(srcroot)/build from the gobject-introspection
70 # project, which may be included in projects that support both
71 # Visual Studio builds and introspection.
72
73 # * Input variables:
74 #
75 #   MSVC_INTROSPECT_GIRS - List of .gir's that should be built
76 #                          in the NMake Makefiles
77 #
78 # * Simple tutorial
79 #
80 # Add this to Makefile.am where your library/program is built:
81 #   (Either YourLib_1_0_gir_MSVC_LIBS or YourLib_1_0_gir_MSVC_PROGRAM
82 #    is required unless --headers-only is specified in
83 #    YourLib_1_0_gir__MSVC_SCANNERFLAGS)
84 #
85 #   include $(top_srcdir)/build/Makefile.msvc-introspection
86 #   MSVC_INTROSPECT_GIRS = YourLib-1.0.gir
87 #   YourLib_1_0_gir_NAMESPACE = YourLib # This is optional
88 #   YourLib_1_0_gir_VERSION = 1.0 # This is optional
89 #   YourLib_1_0_gir_MSVC_LIBS = yourlib-1.0
90 #   YourLib_1_0_gir_MSVC_FILES = $(libyourlib_1_0_SOURCES)
91 #   YourLib_1_0_gir_MSVC_PROGRAM = YourProgram
92 #   YourLib_1_0_gir_MSVC_PACKAGES = (Dependent .pc files)
93 #   YourLib_1_0_gir_MSVC_INCLUDE_GIRS = (Dependent external .gir's)
94 #   YourLiv_1_0_gir_MSVC_EXPORT_PACKAGES = (Packages exported by this .gir)
95
96 # Private functions
97
98
99
100 VPATH = @srcdir@
101 am__is_gnu_make = { \
102   if test -z '$(MAKELEVEL)'; then \
103     false; \
104   elif test -n '$(MAKE_HOST)'; then \
105     true; \
106   elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
107     true; \
108   else \
109     false; \
110   fi; \
111 }
112 am__make_running_with_option = \
113   case $${target_option-} in \
114       ?) ;; \
115       *) echo "am__make_running_with_option: internal error: invalid" \
116               "target option '$${target_option-}' specified" >&2; \
117          exit 1;; \
118   esac; \
119   has_opt=no; \
120   sane_makeflags=$$MAKEFLAGS; \
121   if $(am__is_gnu_make); then \
122     sane_makeflags=$$MFLAGS; \
123   else \
124     case $$MAKEFLAGS in \
125       *\\[\ \   ]*) \
126         bs=\\; \
127         sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
128           | sed "s/$$bs$$bs[$$bs $$bs   ]*//g"`;; \
129     esac; \
130   fi; \
131   skip_next=no; \
132   strip_trailopt () \
133   { \
134     flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
135   }; \
136   for flg in $$sane_makeflags; do \
137     test $$skip_next = yes && { skip_next=no; continue; }; \
138     case $$flg in \
139       *=*|--*) continue;; \
140         -*I) strip_trailopt 'I'; skip_next=yes;; \
141       -*I?*) strip_trailopt 'I';; \
142         -*O) strip_trailopt 'O'; skip_next=yes;; \
143       -*O?*) strip_trailopt 'O';; \
144         -*l) strip_trailopt 'l'; skip_next=yes;; \
145       -*l?*) strip_trailopt 'l';; \
146       -[dEDm]) skip_next=yes;; \
147       -[JT]) skip_next=yes;; \
148     esac; \
149     case $$flg in \
150       *$$target_option*) has_opt=yes; break;; \
151     esac; \
152   done; \
153   test $$has_opt = yes
154 am__make_dryrun = (target_option=n; $(am__make_running_with_option))
155 am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
156 pkgdatadir = $(datadir)/@PACKAGE@
157 pkgincludedir = $(includedir)/@PACKAGE@
158 pkglibdir = $(libdir)/@PACKAGE@
159 pkglibexecdir = $(libexecdir)/@PACKAGE@
160 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
161 install_sh_DATA = $(install_sh) -c -m 644
162 install_sh_PROGRAM = $(install_sh) -c
163 install_sh_SCRIPT = $(install_sh) -c
164 INSTALL_HEADER = $(INSTALL_DATA)
165 transform = $(program_transform_name)
166 NORMAL_INSTALL = :
167 PRE_INSTALL = :
168 POST_INSTALL = :
169 NORMAL_UNINSTALL = :
170 PRE_UNINSTALL = :
171 POST_UNINSTALL = :
172 build_triplet = @build@
173 host_triplet = @host@
174 bin_PROGRAMS = json-glib-validate$(EXEEXT) json-glib-format$(EXEEXT)
175 @HAVE_INTROSPECTION_TRUE@am__append_1 = $(dist_gir_DATA) $(typelibs_DATA)
176 subdir = json-glib
177 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
178 am__aclocal_m4_deps =  \
179         $(top_srcdir)/build/autotools/as-compiler-flag.m4 \
180         $(top_srcdir)/build/autotools/as-linguas.m4 \
181         $(top_srcdir)/build/autotools/gettext.m4 \
182         $(top_srcdir)/build/autotools/glibtests.m4 \
183         $(top_srcdir)/build/autotools/gtk-doc.m4 \
184         $(top_srcdir)/build/autotools/iconv.m4 \
185         $(top_srcdir)/build/autotools/intlmacosx.m4 \
186         $(top_srcdir)/build/autotools/introspection.m4 \
187         $(top_srcdir)/build/autotools/jh-catalog.m4 \
188         $(top_srcdir)/build/autotools/lib-ld.m4 \
189         $(top_srcdir)/build/autotools/lib-link.m4 \
190         $(top_srcdir)/build/autotools/lib-prefix.m4 \
191         $(top_srcdir)/build/autotools/libtool.m4 \
192         $(top_srcdir)/build/autotools/ltoptions.m4 \
193         $(top_srcdir)/build/autotools/ltsugar.m4 \
194         $(top_srcdir)/build/autotools/ltversion.m4 \
195         $(top_srcdir)/build/autotools/lt~obsolete.m4 \
196         $(top_srcdir)/build/autotools/nls.m4 \
197         $(top_srcdir)/build/autotools/po.m4 \
198         $(top_srcdir)/build/autotools/progtest.m4 \
199         $(top_srcdir)/configure.ac
200 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
201         $(ACLOCAL_M4)
202 DIST_COMMON = $(srcdir)/Makefile.am $(am__dist_gir_DATA_DIST) \
203         $(am__DIST_COMMON)
204 mkinstalldirs = $(install_sh) -d
205 CONFIG_HEADER = $(top_builddir)/config.h
206 CONFIG_CLEAN_FILES = json-glib.pc json-version.h
207 CONFIG_CLEAN_VPATH_FILES =
208 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
209 am__vpath_adj = case $$p in \
210     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
211     *) f=$$p;; \
212   esac;
213 am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
214 am__install_max = 40
215 am__nobase_strip_setup = \
216   srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
217 am__nobase_strip = \
218   for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
219 am__nobase_list = $(am__nobase_strip_setup); \
220   for p in $$list; do echo "$$p $$p"; done | \
221   sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
222   $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
223     if (++n[$$2] == $(am__install_max)) \
224       { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
225     END { for (dir in files) print dir, files[dir] }'
226 am__base_list = \
227   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
228   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
229 am__uninstall_files_from_dir = { \
230   test -z "$$files" \
231     || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
232     || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
233          $(am__cd) "$$dir" && rm -f $$files; }; \
234   }
235 am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \
236         "$(DESTDIR)$(girdir)" "$(DESTDIR)$(jsonincludedir)" \
237         "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(typelibsdir)"
238 LTLIBRARIES = $(lib_LTLIBRARIES)
239 am__DEPENDENCIES_1 =
240 libjson_glib_1_0_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
241 am__objects_1 =
242 am__objects_2 = libjson_glib_1_0_la-json-array.lo \
243         libjson_glib_1_0_la-json-builder.lo \
244         libjson_glib_1_0_la-json-debug.lo \
245         libjson_glib_1_0_la-json-gboxed.lo \
246         libjson_glib_1_0_la-json-generator.lo \
247         libjson_glib_1_0_la-json-gobject.lo \
248         libjson_glib_1_0_la-json-gvariant.lo \
249         libjson_glib_1_0_la-json-node.lo \
250         libjson_glib_1_0_la-json-object.lo \
251         libjson_glib_1_0_la-json-parser.lo \
252         libjson_glib_1_0_la-json-path.lo \
253         libjson_glib_1_0_la-json-reader.lo \
254         libjson_glib_1_0_la-json-scanner.lo \
255         libjson_glib_1_0_la-json-serializable.lo \
256         libjson_glib_1_0_la-json-utils.lo \
257         libjson_glib_1_0_la-json-value.lo $(am__objects_1)
258 am__objects_3 = $(am__objects_1)
259 am__objects_4 = libjson_glib_1_0_la-json-enum-types.lo
260 am__objects_5 = $(am__objects_1) $(am__objects_4)
261 am_libjson_glib_1_0_la_OBJECTS = $(am__objects_2) $(am__objects_3) \
262         $(am__objects_3) $(am__objects_5)
263 libjson_glib_1_0_la_OBJECTS = $(am_libjson_glib_1_0_la_OBJECTS)
264 AM_V_lt = $(am__v_lt_@AM_V@)
265 am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
266 am__v_lt_0 = --silent
267 am__v_lt_1 = 
268 libjson_glib_1_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
269         $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
270         $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) \
271         $(libjson_glib_1_0_la_LDFLAGS) $(LDFLAGS) -o $@
272 PROGRAMS = $(bin_PROGRAMS)
273 am_json_glib_format_OBJECTS =  \
274         json_glib_format-json-glib-format.$(OBJEXT)
275 json_glib_format_OBJECTS = $(am_json_glib_format_OBJECTS)
276 json_glib_format_DEPENDENCIES = $(am__DEPENDENCIES_1) \
277         libjson-glib-1.0.la
278 json_glib_format_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
279         $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
280         $(json_glib_format_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
281         -o $@
282 am_json_glib_validate_OBJECTS =  \
283         json_glib_validate-json-glib-validate.$(OBJEXT)
284 json_glib_validate_OBJECTS = $(am_json_glib_validate_OBJECTS)
285 json_glib_validate_DEPENDENCIES = $(am__DEPENDENCIES_1) \
286         libjson-glib-1.0.la
287 json_glib_validate_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
288         $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
289         $(json_glib_validate_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
290         $(LDFLAGS) -o $@
291 AM_V_P = $(am__v_P_@AM_V@)
292 am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
293 am__v_P_0 = false
294 am__v_P_1 = :
295 AM_V_GEN = $(am__v_GEN_@AM_V@)
296 am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
297 am__v_GEN_0 = @echo "  GEN     " $@;
298 am__v_GEN_1 = 
299 AM_V_at = $(am__v_at_@AM_V@)
300 am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
301 am__v_at_0 = @
302 am__v_at_1 = 
303 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
304 depcomp = $(SHELL) $(top_srcdir)/build/depcomp
305 am__depfiles_maybe = depfiles
306 am__mv = mv -f
307 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
308         $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
309 LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
310         $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
311         $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
312         $(AM_CFLAGS) $(CFLAGS)
313 AM_V_CC = $(am__v_CC_@AM_V@)
314 am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
315 am__v_CC_0 = @echo "  CC      " $@;
316 am__v_CC_1 = 
317 CCLD = $(CC)
318 LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
319         $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
320         $(AM_LDFLAGS) $(LDFLAGS) -o $@
321 AM_V_CCLD = $(am__v_CCLD_@AM_V@)
322 am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
323 am__v_CCLD_0 = @echo "  CCLD    " $@;
324 am__v_CCLD_1 = 
325 SOURCES = $(libjson_glib_1_0_la_SOURCES) $(json_glib_format_SOURCES) \
326         $(json_glib_validate_SOURCES)
327 DIST_SOURCES = $(libjson_glib_1_0_la_SOURCES) \
328         $(json_glib_format_SOURCES) $(json_glib_validate_SOURCES)
329 RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
330         ctags-recursive dvi-recursive html-recursive info-recursive \
331         install-data-recursive install-dvi-recursive \
332         install-exec-recursive install-html-recursive \
333         install-info-recursive install-pdf-recursive \
334         install-ps-recursive install-recursive installcheck-recursive \
335         installdirs-recursive pdf-recursive ps-recursive \
336         tags-recursive uninstall-recursive
337 am__can_run_installinfo = \
338   case $$AM_UPDATE_INFO_DIR in \
339     n|no|NO) false;; \
340     *) (install-info --version) >/dev/null 2>&1;; \
341   esac
342 am__dist_gir_DATA_DIST = Json-1.0.gir
343 DATA = $(dist_gir_DATA) $(jsoninclude_DATA) $(pkgconfig_DATA) \
344         $(typelibs_DATA)
345 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
346   distclean-recursive maintainer-clean-recursive
347 am__recursive_targets = \
348   $(RECURSIVE_TARGETS) \
349   $(RECURSIVE_CLEAN_TARGETS) \
350   $(am__extra_recursive_targets)
351 AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
352         distdir
353 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
354 # Read a list of newline-separated strings from the standard input,
355 # and print each of them once, without duplicates.  Input order is
356 # *not* preserved.
357 am__uniquify_input = $(AWK) '\
358   BEGIN { nonempty = 0; } \
359   { items[$$0] = 1; nonempty = 1; } \
360   END { if (nonempty) { for (i in items) print i; }; } \
361 '
362 # Make sure the list of sources is unique.  This is necessary because,
363 # e.g., the same source file might be shared among _SOURCES variables
364 # for different programs/libraries.
365 am__define_uniq_tagged_files = \
366   list='$(am__tagged_files)'; \
367   unique=`for i in $$list; do \
368     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
369   done | $(am__uniquify_input)`
370 ETAGS = etags
371 CTAGS = ctags
372 DIST_SUBDIRS = $(SUBDIRS)
373 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/json-glib.pc.in \
374         $(srcdir)/json-version.h.in \
375         $(top_srcdir)/build/Makefile.msvc-introspection \
376         $(top_srcdir)/build/Makefile.msvcproj \
377         $(top_srcdir)/build/autotools/Makefile.am.enums \
378         $(top_srcdir)/build/depcomp
379 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
380 am__relativize = \
381   dir0=`pwd`; \
382   sed_first='s,^\([^/]*\)/.*$$,\1,'; \
383   sed_rest='s,^[^/]*/*,,'; \
384   sed_last='s,^.*/\([^/]*\)$$,\1,'; \
385   sed_butlast='s,/*[^/]*$$,,'; \
386   while test -n "$$dir1"; do \
387     first=`echo "$$dir1" | sed -e "$$sed_first"`; \
388     if test "$$first" != "."; then \
389       if test "$$first" = ".."; then \
390         dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
391         dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
392       else \
393         first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
394         if test "$$first2" = "$$first"; then \
395           dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
396         else \
397           dir2="../$$dir2"; \
398         fi; \
399         dir0="$$dir0"/"$$first"; \
400       fi; \
401     fi; \
402     dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
403   done; \
404   reldir="$$dir2"
405 ACLOCAL = @ACLOCAL@
406 ALL_LINGUAS = @ALL_LINGUAS@
407 AMTAR = @AMTAR@
408 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
409 AR = @AR@
410 AUTOCONF = @AUTOCONF@
411 AUTOHEADER = @AUTOHEADER@
412 AUTOMAKE = @AUTOMAKE@
413 AWK = @AWK@
414 CC = @CC@
415 CCDEPMODE = @CCDEPMODE@
416 CFLAGS = @CFLAGS@
417 CPP = @CPP@
418 CPPFLAGS = @CPPFLAGS@
419 CYGPATH_W = @CYGPATH_W@
420 DEFS = @DEFS@
421 DEPDIR = @DEPDIR@
422 DLLTOOL = @DLLTOOL@
423 DSYMUTIL = @DSYMUTIL@
424 DUMPBIN = @DUMPBIN@
425 ECHO_C = @ECHO_C@
426 ECHO_N = @ECHO_N@
427 ECHO_T = @ECHO_T@
428 EGREP = @EGREP@
429 EXEEXT = @EXEEXT@
430 FGREP = @FGREP@
431 GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
432 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
433 GLIB_CFLAGS = @GLIB_CFLAGS@
434 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
435 GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
436 GLIB_LIBS = @GLIB_LIBS@
437 GLIB_MKENUMS = @GLIB_MKENUMS@
438 GLIB_PREFIX = @GLIB_PREFIX@
439 GMSGFMT = @GMSGFMT@
440 GMSGFMT_015 = @GMSGFMT_015@
441 GOBJECT_QUERY = @GOBJECT_QUERY@
442 GREP = @GREP@
443 GTKDOC_CHECK = @GTKDOC_CHECK@
444 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
445 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
446 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
447 GTKDOC_MKPDF = @GTKDOC_MKPDF@
448 GTKDOC_REBASE = @GTKDOC_REBASE@
449 HTML_DIR = @HTML_DIR@
450 INSTALL = @INSTALL@
451 INSTALL_DATA = @INSTALL_DATA@
452 INSTALL_PROGRAM = @INSTALL_PROGRAM@
453 INSTALL_SCRIPT = @INSTALL_SCRIPT@
454 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
455 INTLLIBS = @INTLLIBS@
456 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
457 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
458 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
459 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
460 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
461 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
462 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
463 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
464 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
465 JSON_CFLAGS = @JSON_CFLAGS@
466 JSON_DEBUG_CFLAGS = @JSON_DEBUG_CFLAGS@
467 JSON_GCOV_CFLAGS = @JSON_GCOV_CFLAGS@
468 JSON_GCOV_LDADD = @JSON_GCOV_LDADD@
469 JSON_HIDDEN_VISIBILITY_CFLAGS = @JSON_HIDDEN_VISIBILITY_CFLAGS@
470 JSON_LIBS = @JSON_LIBS@
471 JSON_LT_LDFLAGS = @JSON_LT_LDFLAGS@
472 JSON_MAJOR_VERSION = @JSON_MAJOR_VERSION@
473 JSON_MICRO_VERSION = @JSON_MICRO_VERSION@
474 JSON_MINOR_VERSION = @JSON_MINOR_VERSION@
475 JSON_RELEASE_STATUS = @JSON_RELEASE_STATUS@
476 JSON_VERSION = @JSON_VERSION@
477 LD = @LD@
478 LDFLAGS = @LDFLAGS@
479 LIBICONV = @LIBICONV@
480 LIBINTL = @LIBINTL@
481 LIBOBJS = @LIBOBJS@
482 LIBS = @LIBS@
483 LIBTOOL = @LIBTOOL@
484 LIPO = @LIPO@
485 LN_S = @LN_S@
486 LTLIBICONV = @LTLIBICONV@
487 LTLIBINTL = @LTLIBINTL@
488 LTLIBOBJS = @LTLIBOBJS@
489 LTP = @LTP@
490 LTP_GENHTML = @LTP_GENHTML@
491 LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
492 MAINTAINER_CFLAGS = @MAINTAINER_CFLAGS@
493 MAKEINFO = @MAKEINFO@
494 MANIFEST_TOOL = @MANIFEST_TOOL@
495 MKDIR_P = @MKDIR_P@
496 MSGFMT = @MSGFMT@
497 MSGFMT_015 = @MSGFMT_015@
498 MSGMERGE = @MSGMERGE@
499 NM = @NM@
500 NMEDIT = @NMEDIT@
501 OBJDUMP = @OBJDUMP@
502 OBJEXT = @OBJEXT@
503 OTOOL = @OTOOL@
504 OTOOL64 = @OTOOL64@
505 PACKAGE = @PACKAGE@
506 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
507 PACKAGE_NAME = @PACKAGE_NAME@
508 PACKAGE_STRING = @PACKAGE_STRING@
509 PACKAGE_TARNAME = @PACKAGE_TARNAME@
510 PACKAGE_URL = @PACKAGE_URL@
511 PACKAGE_VERSION = @PACKAGE_VERSION@
512 PATH_SEPARATOR = @PATH_SEPARATOR@
513 PKG_CONFIG = @PKG_CONFIG@
514 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
515 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
516 POSUB = @POSUB@
517 RANLIB = @RANLIB@
518 SED = @SED@
519 SET_MAKE = @SET_MAKE@
520 SHELL = @SHELL@
521 SHTOOL = @SHTOOL@
522 STRIP = @STRIP@
523 USE_NLS = @USE_NLS@
524 VERSION = @VERSION@
525 XGETTEXT = @XGETTEXT@
526 XGETTEXT_015 = @XGETTEXT_015@
527 XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
528 XMLCATALOG = @XMLCATALOG@
529 XML_CATALOG_FILE = @XML_CATALOG_FILE@
530 XSLTPROC = @XSLTPROC@
531 abs_builddir = @abs_builddir@
532 abs_srcdir = @abs_srcdir@
533 abs_top_builddir = @abs_top_builddir@
534 abs_top_srcdir = @abs_top_srcdir@
535 ac_ct_AR = @ac_ct_AR@
536 ac_ct_CC = @ac_ct_CC@
537 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
538 am__include = @am__include@
539 am__leading_dot = @am__leading_dot@
540 am__quote = @am__quote@
541 am__tar = @am__tar@
542 am__untar = @am__untar@
543 bindir = @bindir@
544 build = @build@
545 build_alias = @build_alias@
546 build_cpu = @build_cpu@
547 build_os = @build_os@
548 build_vendor = @build_vendor@
549 builddir = @builddir@
550 datadir = @datadir@
551 datarootdir = @datarootdir@
552 docdir = @docdir@
553 dvidir = @dvidir@
554 exec_prefix = @exec_prefix@
555 host = @host@
556 host_alias = @host_alias@
557 host_cpu = @host_cpu@
558 host_os = @host_os@
559 host_vendor = @host_vendor@
560 htmldir = @htmldir@
561 includedir = @includedir@
562 infodir = @infodir@
563 install_sh = @install_sh@
564 installed_test_metadir = @installed_test_metadir@
565 installed_testdir = @installed_testdir@
566 libdir = @libdir@
567 libexecdir = @libexecdir@
568 localedir = @localedir@
569 localstatedir = @localstatedir@
570 mandir = @mandir@
571 mkdir_p = @mkdir_p@
572 oldincludedir = @oldincludedir@
573 pdfdir = @pdfdir@
574 prefix = @prefix@
575 program_transform_name = @program_transform_name@
576 psdir = @psdir@
577 sbindir = @sbindir@
578 sharedstatedir = @sharedstatedir@
579 srcdir = @srcdir@
580 sysconfdir = @sysconfdir@
581 target_alias = @target_alias@
582 top_build_prefix = @top_build_prefix@
583 top_builddir = @top_builddir@
584 top_srcdir = @top_srcdir@
585 NULL = 
586 AM_CPPFLAGS = 
587 AM_CFLAGS = 
588 BUILT_SOURCES = $(glib_enum_h) $(glib_enum_c)
589 CLEANFILES = stamp-enum-types $(pcfiles) $(am__append_1)
590 EXTRA_DIST = $(enum_tmpl_h) $(enum_tmpl_c) json-version.h.in \
591         json-glib.h json-version.h json-glib.pc.in
592 DISTCLEANFILES = json-version.h $(glib_enum_h) $(glib_enum_c)
593 lib_LTLIBRARIES = libjson-glib-1.0.la
594
595 # build the tests last
596 SUBDIRS = . tests
597
598 # main library
599 source_h = \
600         json-builder.h          \
601         json-generator.h        \
602         json-gobject.h          \
603         json-gvariant.h         \
604         json-parser.h           \
605         json-path.h             \
606         json-reader.h           \
607         json-types.h            \
608         json-utils.h            \
609         json-version-macros.h   \
610         $(NULL)
611
612 source_h_private = \
613         json-debug.h            \
614         json-gobject-private.h  \
615         json-scanner.h          \
616         json-types-private.h    \
617         $(NULL)
618
619 source_c = \
620         json-array.c            \
621         json-builder.c  \
622         json-debug.c            \
623         json-gboxed.c           \
624         json-generator.c        \
625         json-gobject.c  \
626         json-gvariant.c \
627         json-node.c             \
628         json-object.c   \
629         json-parser.c   \
630         json-path.c             \
631         json-reader.c           \
632         json-scanner.c  \
633         json-serializable.c     \
634         json-utils.c            \
635         json-value.c            \
636         $(NULL)
637
638
639 # glib-mkenums rules
640 glib_enum_h = json-enum-types.h
641 glib_enum_c = json-enum-types.c
642 glib_enum_headers = $(source_h)
643 enum_tmpl_h = $(addprefix $(srcdir)/, $(glib_enum_h:.h=.h.in))
644 enum_tmpl_c = $(addprefix $(srcdir)/, $(glib_enum_c:.c=.c.in))
645 enum_headers = $(addprefix $(srcdir)/, $(glib_enum_headers))
646 libjson_glib_1_0_la_CPPFLAGS = \
647         -DPREFIX=\""$(prefix)"\" \
648         -DLIBDIR=\""$(libdir)"\" \
649         -DJSON_LOCALEDIR=\""$(localedir)"\" \
650         -DJSON_COMPILATION=1 \
651         -DG_LOG_DOMAIN=\"Json\" \
652         -I$(top_srcdir) \
653         -I$(top_builddir) \
654         $(JSON_DEBUG_CFLAGS) \
655         $(NULL)
656
657 libjson_glib_1_0_la_CFLAGS = $(JSON_CFLAGS) $(JSON_HIDDEN_VISIBILITY_CFLAG) $(MAINTAINER_CFLAGS) $(JSON_GCOV_CFLAGS)
658 libjson_glib_1_0_la_LIBADD = $(JSON_LIBS)
659 libjson_glib_1_0_la_SOURCES = $(source_c) $(source_h) $(source_h_private) $(BUILT_SOURCES)
660 libjson_glib_1_0_la_LDFLAGS = $(JSON_LT_LDFLAGS) $(JSON_GCOV_LDADD) -export-dynamic
661 jsonincludedir = $(includedir)/json-glib-1.0/json-glib
662 jsoninclude_DATA = \
663         $(source_h) \
664         json-enum-types.h \
665         json-version.h \
666         json-glib.h \
667         $(NULL)
668
669 pcfiles = json-glib-1.0.pc
670 pkgconfig_DATA = $(pcfiles)
671 pkgconfigdir = $(libdir)/pkgconfig
672 json_glib_validate_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) -DJSON_LOCALEDIR=\""$(localedir)"\"
673 json_glib_validate_CFLAGS = $(JSON_CFLAGS) $(MAINTAINER_CFLAGS)
674 json_glib_validate_SOURCES = json-glib-validate.c
675 json_glib_validate_LDADD = $(JSON_LIBS) libjson-glib-1.0.la
676 json_glib_format_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) -DJSON_LOCALEDIR=\""$(localedir)"\"
677 json_glib_format_CFLAGS = $(JSON_CFLAGS) $(MAINTAINER_CFLAGS)
678 json_glib_format_SOURCES = json-glib-format.c
679 json_glib_format_LDADD = $(JSON_LIBS) libjson-glib-1.0.la
680 @HAVE_INTROSPECTION_TRUE@INTROSPECTION_GIRS = Json-1.0.gir
681 @HAVE_INTROSPECTION_TRUE@introspection_source = \
682 @HAVE_INTROSPECTION_TRUE@       $(source_c) \
683 @HAVE_INTROSPECTION_TRUE@       $(source_h) \
684 @HAVE_INTROSPECTION_TRUE@       json-enum-types.h \
685 @HAVE_INTROSPECTION_TRUE@       json-enum-types.c \
686 @HAVE_INTROSPECTION_TRUE@       json-version.h
687
688 @HAVE_INTROSPECTION_TRUE@Json_1_0_gir_NAMESPACE = Json
689 @HAVE_INTROSPECTION_TRUE@Json_1_0_gir_VERSION = 1.0
690 @HAVE_INTROSPECTION_TRUE@Json_1_0_gir_LIBS = libjson-glib-1.0.la
691 @HAVE_INTROSPECTION_TRUE@Json_1_0_gir_FILES = $(introspection_source)
692 @HAVE_INTROSPECTION_TRUE@Json_1_0_gir_CFLAGS = -DJSON_COMPILATION=1 -I$(top_srcdir) -I$(top_builddir) $(JSON_CFLAGS)
693 @HAVE_INTROSPECTION_TRUE@Json_1_0_gir_INCLUDES = GObject-2.0 Gio-2.0
694 @HAVE_INTROSPECTION_TRUE@Json_1_0_gir_SCANNERFLAGS = --warn-all --pkg-export json-glib-1.0 --c-include "json-glib/json-glib.h"
695 @HAVE_INTROSPECTION_TRUE@girdir = $(datadir)/gir-1.0
696 @HAVE_INTROSPECTION_TRUE@dist_gir_DATA = Json-1.0.gir
697 @HAVE_INTROSPECTION_TRUE@typelibsdir = $(libdir)/girepository-1.0/
698 @HAVE_INTROSPECTION_TRUE@typelibs_DATA = Json-1.0.typelib
699
700 # visual studio
701 MSVCPROJS = json-glib
702 json_glib_FILES = $(libjson_glib_1_0_la_SOURCES)
703 json_glib_EXCLUDES = jgdummy
704 json_glib_HEADERS_DIR = $(jsonincludedir)
705 json_glib_HEADERS_INST = $(jsoninclude_DATA)
706 json_glib_HEADERS_EXCLUDES = jgdummy
707 _proj_name = $(subst /,_,$(subst -,_,$(subst .,_,$(1))))
708 _proj_path_raw := $(subst $(abs_top_srcdir),,$(abs_srcdir))
709 _proj_path = $(subst /,\\,$(_proj_path_raw))
710 _proj_subdir_int = $(subst \\\\,\\,\\$(_proj_path)\\)
711 _proj_subdir = $(subst \\.\\,\\,$(_proj_subdir_int))
712 _proj_files_raw = $(subst /,\\,$($(_proj_name)_FILES))
713 _proj_files = $(subst $(srcdir)\\,,$(subst $(builddir)\\,,$(subst $(top_builddir)\\$(_proj_path)\\,\\,$(_proj_files_raw))))
714 _proj_filters = $($(_proj_name)_EXCLUDES)
715 _proj_headers_raw = $(subst /,\\,$($(_proj_name)_HEADERS_INST))
716 _proj_headers = $(subst $(srcdir)\\,,$(subst $(builddir)\\,,$(subst $(top_builddir)\\$(_proj_path)\\,\\,$(_proj_headers_raw))))
717 _proj_headers_excludes = $($(_proj_name)_HEADERS_EXCLUDES)
718 _headers_dest_posix = $(subst $(includedir),,$($(_proj_name)_HEADERS_DIR))
719 _headers_destdir = $(subst /,\\,$(_headers_dest_posix))
720 @HAVE_INTROSPECTION_FALSE@NMAKE_INTROSPECTION_FILES = 
721
722 # NMake/MSVC introspection
723 @HAVE_INTROSPECTION_TRUE@NMAKE_INTROSPECTION_FILES = \
724 @HAVE_INTROSPECTION_TRUE@       $(top_builddir)/build/win32/Json-1.0.gir.msvc.introspect        \
725 @HAVE_INTROSPECTION_TRUE@       $(top_builddir)/build/win32/Json_1_0_gir_list
726
727 @HAVE_INTROSPECTION_TRUE@MSVC_INTROSPECT_GIRS = Json-1.0.gir
728 @HAVE_INTROSPECTION_TRUE@Json_1_0_gir_MSVC_FILES = $(Json_1_0_gir_FILES)
729 @HAVE_INTROSPECTION_TRUE@Json_1_0_gir_MSVC_INCLUDE_GIRS = $(Json_1_0_gir_INCLUDES)
730 @HAVE_INTROSPECTION_TRUE@Json_1_0_gir_MSVC_LIBS = json-glib-1.0
731 @HAVE_INTROSPECTION_TRUE@Json_1_0_gir_MSVC_CFLAGS = -DJSON_COMPILATION=1 -I..\\..
732 @HAVE_INTROSPECTION_TRUE@Json_1_0_gir_MSVC_SCANNERFLAGS = $(Json_1_0_gir_SCANNERFLAGS)
733 @HAVE_INTROSPECTION_TRUE@_gir_name = $(subst /,_,$(subst -,_,$(subst .,_,$(1))))
734
735 # Namespace and Version is either fetched from the gir filename
736 # or the _NAMESPACE/_VERSION variable combo
737 @HAVE_INTROSPECTION_TRUE@_gir_namespace_msvc = $(or $($(_gir_name)_NAMESPACE),$(firstword $(subst -, ,$(notdir $(1)))))
738 @HAVE_INTROSPECTION_TRUE@_gir_version_msvc = $(or $($(_gir_name)_VERSION),$(lastword $(subst -, ,$(1:.gir=))))
739 @HAVE_INTROSPECTION_TRUE@_typelib_basename_msvc = $(_gir_namespace_msvc)'-'$(_gir_version_msvc)
740
741 # _PROGRAM is an optional variable which needs its own --program argument
742 @HAVE_INTROSPECTION_TRUE@_gir_program_msvc = $(if $($(_gir_name)_MSVC_PROGRAM),--program=$($(_gir_name)_MSVC_PROGRAM))
743
744 # Deduce the sub-folder from $(srcroot) where the sources reside in
745 @HAVE_INTROSPECTION_TRUE@_gir_source_path_raw_msvc := $(subst $(abs_top_srcdir),,$(abs_srcdir))
746 @HAVE_INTROSPECTION_TRUE@_gir_source_path_msvc = $(subst /,\\,$(_gir_source_path_raw_msvc))
747 @HAVE_INTROSPECTION_TRUE@_gir_source_subdir_int_msvc = $(subst \\\\,\\,\\$(_gir_source_path_msvc)\\)
748 @HAVE_INTROSPECTION_TRUE@_gir_source_subdir_msvc = $(subst \\.\\,\\,$(_gir_source_subdir_int_msvc))
749 @HAVE_INTROSPECTION_TRUE@_gir_files_raw_msvc = $(subst /,\\,$($(_gir_name)_MSVC_FILES))
750 @HAVE_INTROSPECTION_TRUE@_gir_files_msvc = $(subst $(srcdir)\\,,$(subst $(builddir)\\,,$(subst $(top_builddir)\\$(_gir_source_path_msvc)\\,\\,$(_gir_files_raw_msvc))))
751
752 # Create a list of items for:
753 # - Libraries
754 # - Packages
755 # - GIRs to include
756 # - packages to export
757 @HAVE_INTROSPECTION_TRUE@_gir_libraries_msvc = $(foreach lib,$($(_gir_name)_MSVC_LIBS),--library=$(lib))
758 @HAVE_INTROSPECTION_TRUE@_gir_packages_msvc = $(foreach pkg,$($(_gir_name)_MSVC_PACKAGES),--pkg=$(pkg))
759 @HAVE_INTROSPECTION_TRUE@_gir_includes_msvc = $(foreach include,$($(_gir_name)_MSVC_INCLUDE_GIRS),--include=$(include))
760 @HAVE_INTROSPECTION_TRUE@_gir_export_packages_msvc = $(foreach pkg,$($(_gir_name)_MSVC_EXPORT_PACKAGES),--pkg-export=$(pkg))
761 all: $(BUILT_SOURCES)
762         $(MAKE) $(AM_MAKEFLAGS) all-recursive
763
764 .SUFFIXES:
765 .SUFFIXES: .c .lo .o .obj
766 $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/build/autotools/Makefile.am.enums $(top_srcdir)/build/Makefile.msvcproj $(top_srcdir)/build/Makefile.msvc-introspection $(am__configure_deps)
767         @for dep in $?; do \
768           case '$(am__configure_deps)' in \
769             *$$dep*) \
770               ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
771                 && { if test -f $@; then exit 0; else break; fi; }; \
772               exit 1;; \
773           esac; \
774         done; \
775         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign json-glib/Makefile'; \
776         $(am__cd) $(top_srcdir) && \
777           $(AUTOMAKE) --foreign json-glib/Makefile
778 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
779         @case '$?' in \
780           *config.status*) \
781             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
782           *) \
783             echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
784             cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
785         esac;
786 $(top_srcdir)/build/autotools/Makefile.am.enums $(top_srcdir)/build/Makefile.msvcproj $(top_srcdir)/build/Makefile.msvc-introspection $(am__empty):
787
788 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
789         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
790
791 $(top_srcdir)/configure:  $(am__configure_deps)
792         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
793 $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
794         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
795 $(am__aclocal_m4_deps):
796 json-glib.pc: $(top_builddir)/config.status $(srcdir)/json-glib.pc.in
797         cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
798 json-version.h: $(top_builddir)/config.status $(srcdir)/json-version.h.in
799         cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
800
801 install-libLTLIBRARIES: $(lib_LTLIBRARIES)
802         @$(NORMAL_INSTALL)
803         @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
804         list2=; for p in $$list; do \
805           if test -f $$p; then \
806             list2="$$list2 $$p"; \
807           else :; fi; \
808         done; \
809         test -z "$$list2" || { \
810           echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
811           $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
812           echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
813           $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
814         }
815
816 uninstall-libLTLIBRARIES:
817         @$(NORMAL_UNINSTALL)
818         @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
819         for p in $$list; do \
820           $(am__strip_dir) \
821           echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
822           $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
823         done
824
825 clean-libLTLIBRARIES:
826         -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
827         @list='$(lib_LTLIBRARIES)'; \
828         locs=`for p in $$list; do echo $$p; done | \
829               sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
830               sort -u`; \
831         test -z "$$locs" || { \
832           echo rm -f $${locs}; \
833           rm -f $${locs}; \
834         }
835
836 libjson-glib-1.0.la: $(libjson_glib_1_0_la_OBJECTS) $(libjson_glib_1_0_la_DEPENDENCIES) $(EXTRA_libjson_glib_1_0_la_DEPENDENCIES) 
837         $(AM_V_CCLD)$(libjson_glib_1_0_la_LINK) -rpath $(libdir) $(libjson_glib_1_0_la_OBJECTS) $(libjson_glib_1_0_la_LIBADD) $(LIBS)
838 install-binPROGRAMS: $(bin_PROGRAMS)
839         @$(NORMAL_INSTALL)
840         @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
841         if test -n "$$list"; then \
842           echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
843           $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
844         fi; \
845         for p in $$list; do echo "$$p $$p"; done | \
846         sed 's/$(EXEEXT)$$//' | \
847         while read p p1; do if test -f $$p \
848          || test -f $$p1 \
849           ; then echo "$$p"; echo "$$p"; else :; fi; \
850         done | \
851         sed -e 'p;s,.*/,,;n;h' \
852             -e 's|.*|.|' \
853             -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
854         sed 'N;N;N;s,\n, ,g' | \
855         $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
856           { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
857             if ($$2 == $$4) files[d] = files[d] " " $$1; \
858             else { print "f", $$3 "/" $$4, $$1; } } \
859           END { for (d in files) print "f", d, files[d] }' | \
860         while read type dir files; do \
861             if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
862             test -z "$$files" || { \
863             echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
864             $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
865             } \
866         ; done
867
868 uninstall-binPROGRAMS:
869         @$(NORMAL_UNINSTALL)
870         @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
871         files=`for p in $$list; do echo "$$p"; done | \
872           sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
873               -e 's/$$/$(EXEEXT)/' \
874         `; \
875         test -n "$$list" || exit 0; \
876         echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
877         cd "$(DESTDIR)$(bindir)" && rm -f $$files
878
879 clean-binPROGRAMS:
880         @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
881         echo " rm -f" $$list; \
882         rm -f $$list || exit $$?; \
883         test -n "$(EXEEXT)" || exit 0; \
884         list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
885         echo " rm -f" $$list; \
886         rm -f $$list
887
888 json-glib-format$(EXEEXT): $(json_glib_format_OBJECTS) $(json_glib_format_DEPENDENCIES) $(EXTRA_json_glib_format_DEPENDENCIES) 
889         @rm -f json-glib-format$(EXEEXT)
890         $(AM_V_CCLD)$(json_glib_format_LINK) $(json_glib_format_OBJECTS) $(json_glib_format_LDADD) $(LIBS)
891
892 json-glib-validate$(EXEEXT): $(json_glib_validate_OBJECTS) $(json_glib_validate_DEPENDENCIES) $(EXTRA_json_glib_validate_DEPENDENCIES) 
893         @rm -f json-glib-validate$(EXEEXT)
894         $(AM_V_CCLD)$(json_glib_validate_LINK) $(json_glib_validate_OBJECTS) $(json_glib_validate_LDADD) $(LIBS)
895
896 mostlyclean-compile:
897         -rm -f *.$(OBJEXT)
898
899 distclean-compile:
900         -rm -f *.tab.c
901
902 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_glib_format-json-glib-format.Po@am__quote@
903 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/json_glib_validate-json-glib-validate.Po@am__quote@
904 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-array.Plo@am__quote@
905 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-builder.Plo@am__quote@
906 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-debug.Plo@am__quote@
907 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-enum-types.Plo@am__quote@
908 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-gboxed.Plo@am__quote@
909 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-generator.Plo@am__quote@
910 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-gobject.Plo@am__quote@
911 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-gvariant.Plo@am__quote@
912 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-node.Plo@am__quote@
913 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-object.Plo@am__quote@
914 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-parser.Plo@am__quote@
915 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-path.Plo@am__quote@
916 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-reader.Plo@am__quote@
917 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-scanner.Plo@am__quote@
918 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-serializable.Plo@am__quote@
919 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-utils.Plo@am__quote@
920 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libjson_glib_1_0_la-json-value.Plo@am__quote@
921
922 .c.o:
923 @am__fastdepCC_TRUE@    $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
924 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
925 @am__fastdepCC_TRUE@    $(am__mv) $$depbase.Tpo $$depbase.Po
926 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
927 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
928 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
929
930 .c.obj:
931 @am__fastdepCC_TRUE@    $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
932 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
933 @am__fastdepCC_TRUE@    $(am__mv) $$depbase.Tpo $$depbase.Po
934 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
935 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
936 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
937
938 .c.lo:
939 @am__fastdepCC_TRUE@    $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
940 @am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
941 @am__fastdepCC_TRUE@    $(am__mv) $$depbase.Tpo $$depbase.Plo
942 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
943 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
944 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
945
946 libjson_glib_1_0_la-json-array.lo: json-array.c
947 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-array.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-array.Tpo -c -o libjson_glib_1_0_la-json-array.lo `test -f 'json-array.c' || echo '$(srcdir)/'`json-array.c
948 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-array.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-array.Plo
949 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-array.c' object='libjson_glib_1_0_la-json-array.lo' libtool=yes @AMDEPBACKSLASH@
950 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
951 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-array.lo `test -f 'json-array.c' || echo '$(srcdir)/'`json-array.c
952
953 libjson_glib_1_0_la-json-builder.lo: json-builder.c
954 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-builder.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-builder.Tpo -c -o libjson_glib_1_0_la-json-builder.lo `test -f 'json-builder.c' || echo '$(srcdir)/'`json-builder.c
955 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-builder.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-builder.Plo
956 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-builder.c' object='libjson_glib_1_0_la-json-builder.lo' libtool=yes @AMDEPBACKSLASH@
957 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
958 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-builder.lo `test -f 'json-builder.c' || echo '$(srcdir)/'`json-builder.c
959
960 libjson_glib_1_0_la-json-debug.lo: json-debug.c
961 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-debug.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-debug.Tpo -c -o libjson_glib_1_0_la-json-debug.lo `test -f 'json-debug.c' || echo '$(srcdir)/'`json-debug.c
962 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-debug.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-debug.Plo
963 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-debug.c' object='libjson_glib_1_0_la-json-debug.lo' libtool=yes @AMDEPBACKSLASH@
964 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
965 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-debug.lo `test -f 'json-debug.c' || echo '$(srcdir)/'`json-debug.c
966
967 libjson_glib_1_0_la-json-gboxed.lo: json-gboxed.c
968 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-gboxed.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-gboxed.Tpo -c -o libjson_glib_1_0_la-json-gboxed.lo `test -f 'json-gboxed.c' || echo '$(srcdir)/'`json-gboxed.c
969 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-gboxed.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-gboxed.Plo
970 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-gboxed.c' object='libjson_glib_1_0_la-json-gboxed.lo' libtool=yes @AMDEPBACKSLASH@
971 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
972 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-gboxed.lo `test -f 'json-gboxed.c' || echo '$(srcdir)/'`json-gboxed.c
973
974 libjson_glib_1_0_la-json-generator.lo: json-generator.c
975 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-generator.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-generator.Tpo -c -o libjson_glib_1_0_la-json-generator.lo `test -f 'json-generator.c' || echo '$(srcdir)/'`json-generator.c
976 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-generator.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-generator.Plo
977 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-generator.c' object='libjson_glib_1_0_la-json-generator.lo' libtool=yes @AMDEPBACKSLASH@
978 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
979 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-generator.lo `test -f 'json-generator.c' || echo '$(srcdir)/'`json-generator.c
980
981 libjson_glib_1_0_la-json-gobject.lo: json-gobject.c
982 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-gobject.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-gobject.Tpo -c -o libjson_glib_1_0_la-json-gobject.lo `test -f 'json-gobject.c' || echo '$(srcdir)/'`json-gobject.c
983 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-gobject.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-gobject.Plo
984 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-gobject.c' object='libjson_glib_1_0_la-json-gobject.lo' libtool=yes @AMDEPBACKSLASH@
985 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
986 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-gobject.lo `test -f 'json-gobject.c' || echo '$(srcdir)/'`json-gobject.c
987
988 libjson_glib_1_0_la-json-gvariant.lo: json-gvariant.c
989 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-gvariant.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-gvariant.Tpo -c -o libjson_glib_1_0_la-json-gvariant.lo `test -f 'json-gvariant.c' || echo '$(srcdir)/'`json-gvariant.c
990 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-gvariant.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-gvariant.Plo
991 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-gvariant.c' object='libjson_glib_1_0_la-json-gvariant.lo' libtool=yes @AMDEPBACKSLASH@
992 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
993 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-gvariant.lo `test -f 'json-gvariant.c' || echo '$(srcdir)/'`json-gvariant.c
994
995 libjson_glib_1_0_la-json-node.lo: json-node.c
996 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-node.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-node.Tpo -c -o libjson_glib_1_0_la-json-node.lo `test -f 'json-node.c' || echo '$(srcdir)/'`json-node.c
997 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-node.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-node.Plo
998 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-node.c' object='libjson_glib_1_0_la-json-node.lo' libtool=yes @AMDEPBACKSLASH@
999 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1000 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-node.lo `test -f 'json-node.c' || echo '$(srcdir)/'`json-node.c
1001
1002 libjson_glib_1_0_la-json-object.lo: json-object.c
1003 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-object.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-object.Tpo -c -o libjson_glib_1_0_la-json-object.lo `test -f 'json-object.c' || echo '$(srcdir)/'`json-object.c
1004 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-object.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-object.Plo
1005 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-object.c' object='libjson_glib_1_0_la-json-object.lo' libtool=yes @AMDEPBACKSLASH@
1006 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1007 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-object.lo `test -f 'json-object.c' || echo '$(srcdir)/'`json-object.c
1008
1009 libjson_glib_1_0_la-json-parser.lo: json-parser.c
1010 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-parser.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-parser.Tpo -c -o libjson_glib_1_0_la-json-parser.lo `test -f 'json-parser.c' || echo '$(srcdir)/'`json-parser.c
1011 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-parser.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-parser.Plo
1012 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-parser.c' object='libjson_glib_1_0_la-json-parser.lo' libtool=yes @AMDEPBACKSLASH@
1013 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1014 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-parser.lo `test -f 'json-parser.c' || echo '$(srcdir)/'`json-parser.c
1015
1016 libjson_glib_1_0_la-json-path.lo: json-path.c
1017 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-path.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-path.Tpo -c -o libjson_glib_1_0_la-json-path.lo `test -f 'json-path.c' || echo '$(srcdir)/'`json-path.c
1018 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-path.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-path.Plo
1019 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-path.c' object='libjson_glib_1_0_la-json-path.lo' libtool=yes @AMDEPBACKSLASH@
1020 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1021 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-path.lo `test -f 'json-path.c' || echo '$(srcdir)/'`json-path.c
1022
1023 libjson_glib_1_0_la-json-reader.lo: json-reader.c
1024 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-reader.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-reader.Tpo -c -o libjson_glib_1_0_la-json-reader.lo `test -f 'json-reader.c' || echo '$(srcdir)/'`json-reader.c
1025 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-reader.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-reader.Plo
1026 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-reader.c' object='libjson_glib_1_0_la-json-reader.lo' libtool=yes @AMDEPBACKSLASH@
1027 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1028 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-reader.lo `test -f 'json-reader.c' || echo '$(srcdir)/'`json-reader.c
1029
1030 libjson_glib_1_0_la-json-scanner.lo: json-scanner.c
1031 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-scanner.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-scanner.Tpo -c -o libjson_glib_1_0_la-json-scanner.lo `test -f 'json-scanner.c' || echo '$(srcdir)/'`json-scanner.c
1032 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-scanner.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-scanner.Plo
1033 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-scanner.c' object='libjson_glib_1_0_la-json-scanner.lo' libtool=yes @AMDEPBACKSLASH@
1034 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1035 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-scanner.lo `test -f 'json-scanner.c' || echo '$(srcdir)/'`json-scanner.c
1036
1037 libjson_glib_1_0_la-json-serializable.lo: json-serializable.c
1038 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-serializable.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-serializable.Tpo -c -o libjson_glib_1_0_la-json-serializable.lo `test -f 'json-serializable.c' || echo '$(srcdir)/'`json-serializable.c
1039 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-serializable.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-serializable.Plo
1040 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-serializable.c' object='libjson_glib_1_0_la-json-serializable.lo' libtool=yes @AMDEPBACKSLASH@
1041 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1042 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-serializable.lo `test -f 'json-serializable.c' || echo '$(srcdir)/'`json-serializable.c
1043
1044 libjson_glib_1_0_la-json-utils.lo: json-utils.c
1045 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-utils.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-utils.Tpo -c -o libjson_glib_1_0_la-json-utils.lo `test -f 'json-utils.c' || echo '$(srcdir)/'`json-utils.c
1046 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-utils.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-utils.Plo
1047 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-utils.c' object='libjson_glib_1_0_la-json-utils.lo' libtool=yes @AMDEPBACKSLASH@
1048 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1049 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-utils.lo `test -f 'json-utils.c' || echo '$(srcdir)/'`json-utils.c
1050
1051 libjson_glib_1_0_la-json-value.lo: json-value.c
1052 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-value.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-value.Tpo -c -o libjson_glib_1_0_la-json-value.lo `test -f 'json-value.c' || echo '$(srcdir)/'`json-value.c
1053 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-value.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-value.Plo
1054 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-value.c' object='libjson_glib_1_0_la-json-value.lo' libtool=yes @AMDEPBACKSLASH@
1055 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1056 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-value.lo `test -f 'json-value.c' || echo '$(srcdir)/'`json-value.c
1057
1058 libjson_glib_1_0_la-json-enum-types.lo: json-enum-types.c
1059 @am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -MT libjson_glib_1_0_la-json-enum-types.lo -MD -MP -MF $(DEPDIR)/libjson_glib_1_0_la-json-enum-types.Tpo -c -o libjson_glib_1_0_la-json-enum-types.lo `test -f 'json-enum-types.c' || echo '$(srcdir)/'`json-enum-types.c
1060 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libjson_glib_1_0_la-json-enum-types.Tpo $(DEPDIR)/libjson_glib_1_0_la-json-enum-types.Plo
1061 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-enum-types.c' object='libjson_glib_1_0_la-json-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
1062 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1063 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libjson_glib_1_0_la_CPPFLAGS) $(CPPFLAGS) $(libjson_glib_1_0_la_CFLAGS) $(CFLAGS) -c -o libjson_glib_1_0_la-json-enum-types.lo `test -f 'json-enum-types.c' || echo '$(srcdir)/'`json-enum-types.c
1064
1065 json_glib_format-json-glib-format.o: json-glib-format.c
1066 @am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(json_glib_format_CPPFLAGS) $(CPPFLAGS) $(json_glib_format_CFLAGS) $(CFLAGS) -MT json_glib_format-json-glib-format.o -MD -MP -MF $(DEPDIR)/json_glib_format-json-glib-format.Tpo -c -o json_glib_format-json-glib-format.o `test -f 'json-glib-format.c' || echo '$(srcdir)/'`json-glib-format.c
1067 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/json_glib_format-json-glib-format.Tpo $(DEPDIR)/json_glib_format-json-glib-format.Po
1068 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-glib-format.c' object='json_glib_format-json-glib-format.o' libtool=no @AMDEPBACKSLASH@
1069 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1070 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(json_glib_format_CPPFLAGS) $(CPPFLAGS) $(json_glib_format_CFLAGS) $(CFLAGS) -c -o json_glib_format-json-glib-format.o `test -f 'json-glib-format.c' || echo '$(srcdir)/'`json-glib-format.c
1071
1072 json_glib_format-json-glib-format.obj: json-glib-format.c
1073 @am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(json_glib_format_CPPFLAGS) $(CPPFLAGS) $(json_glib_format_CFLAGS) $(CFLAGS) -MT json_glib_format-json-glib-format.obj -MD -MP -MF $(DEPDIR)/json_glib_format-json-glib-format.Tpo -c -o json_glib_format-json-glib-format.obj `if test -f 'json-glib-format.c'; then $(CYGPATH_W) 'json-glib-format.c'; else $(CYGPATH_W) '$(srcdir)/json-glib-format.c'; fi`
1074 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/json_glib_format-json-glib-format.Tpo $(DEPDIR)/json_glib_format-json-glib-format.Po
1075 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-glib-format.c' object='json_glib_format-json-glib-format.obj' libtool=no @AMDEPBACKSLASH@
1076 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1077 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(json_glib_format_CPPFLAGS) $(CPPFLAGS) $(json_glib_format_CFLAGS) $(CFLAGS) -c -o json_glib_format-json-glib-format.obj `if test -f 'json-glib-format.c'; then $(CYGPATH_W) 'json-glib-format.c'; else $(CYGPATH_W) '$(srcdir)/json-glib-format.c'; fi`
1078
1079 json_glib_validate-json-glib-validate.o: json-glib-validate.c
1080 @am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(json_glib_validate_CPPFLAGS) $(CPPFLAGS) $(json_glib_validate_CFLAGS) $(CFLAGS) -MT json_glib_validate-json-glib-validate.o -MD -MP -MF $(DEPDIR)/json_glib_validate-json-glib-validate.Tpo -c -o json_glib_validate-json-glib-validate.o `test -f 'json-glib-validate.c' || echo '$(srcdir)/'`json-glib-validate.c
1081 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/json_glib_validate-json-glib-validate.Tpo $(DEPDIR)/json_glib_validate-json-glib-validate.Po
1082 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-glib-validate.c' object='json_glib_validate-json-glib-validate.o' libtool=no @AMDEPBACKSLASH@
1083 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1084 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(json_glib_validate_CPPFLAGS) $(CPPFLAGS) $(json_glib_validate_CFLAGS) $(CFLAGS) -c -o json_glib_validate-json-glib-validate.o `test -f 'json-glib-validate.c' || echo '$(srcdir)/'`json-glib-validate.c
1085
1086 json_glib_validate-json-glib-validate.obj: json-glib-validate.c
1087 @am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(json_glib_validate_CPPFLAGS) $(CPPFLAGS) $(json_glib_validate_CFLAGS) $(CFLAGS) -MT json_glib_validate-json-glib-validate.obj -MD -MP -MF $(DEPDIR)/json_glib_validate-json-glib-validate.Tpo -c -o json_glib_validate-json-glib-validate.obj `if test -f 'json-glib-validate.c'; then $(CYGPATH_W) 'json-glib-validate.c'; else $(CYGPATH_W) '$(srcdir)/json-glib-validate.c'; fi`
1088 @am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/json_glib_validate-json-glib-validate.Tpo $(DEPDIR)/json_glib_validate-json-glib-validate.Po
1089 @AMDEP_TRUE@@am__fastdepCC_FALSE@       $(AM_V_CC)source='json-glib-validate.c' object='json_glib_validate-json-glib-validate.obj' libtool=no @AMDEPBACKSLASH@
1090 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1091 @am__fastdepCC_FALSE@   $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(json_glib_validate_CPPFLAGS) $(CPPFLAGS) $(json_glib_validate_CFLAGS) $(CFLAGS) -c -o json_glib_validate-json-glib-validate.obj `if test -f 'json-glib-validate.c'; then $(CYGPATH_W) 'json-glib-validate.c'; else $(CYGPATH_W) '$(srcdir)/json-glib-validate.c'; fi`
1092
1093 mostlyclean-libtool:
1094         -rm -f *.lo
1095
1096 clean-libtool:
1097         -rm -rf .libs _libs
1098 install-dist_girDATA: $(dist_gir_DATA)
1099         @$(NORMAL_INSTALL)
1100         @list='$(dist_gir_DATA)'; test -n "$(girdir)" || list=; \
1101         if test -n "$$list"; then \
1102           echo " $(MKDIR_P) '$(DESTDIR)$(girdir)'"; \
1103           $(MKDIR_P) "$(DESTDIR)$(girdir)" || exit 1; \
1104         fi; \
1105         for p in $$list; do \
1106           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1107           echo "$$d$$p"; \
1108         done | $(am__base_list) | \
1109         while read files; do \
1110           echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(girdir)'"; \
1111           $(INSTALL_DATA) $$files "$(DESTDIR)$(girdir)" || exit $$?; \
1112         done
1113
1114 uninstall-dist_girDATA:
1115         @$(NORMAL_UNINSTALL)
1116         @list='$(dist_gir_DATA)'; test -n "$(girdir)" || list=; \
1117         files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1118         dir='$(DESTDIR)$(girdir)'; $(am__uninstall_files_from_dir)
1119 install-jsonincludeDATA: $(jsoninclude_DATA)
1120         @$(NORMAL_INSTALL)
1121         @list='$(jsoninclude_DATA)'; test -n "$(jsonincludedir)" || list=; \
1122         if test -n "$$list"; then \
1123           echo " $(MKDIR_P) '$(DESTDIR)$(jsonincludedir)'"; \
1124           $(MKDIR_P) "$(DESTDIR)$(jsonincludedir)" || exit 1; \
1125         fi; \
1126         for p in $$list; do \
1127           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1128           echo "$$d$$p"; \
1129         done | $(am__base_list) | \
1130         while read files; do \
1131           echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(jsonincludedir)'"; \
1132           $(INSTALL_DATA) $$files "$(DESTDIR)$(jsonincludedir)" || exit $$?; \
1133         done
1134
1135 uninstall-jsonincludeDATA:
1136         @$(NORMAL_UNINSTALL)
1137         @list='$(jsoninclude_DATA)'; test -n "$(jsonincludedir)" || list=; \
1138         files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1139         dir='$(DESTDIR)$(jsonincludedir)'; $(am__uninstall_files_from_dir)
1140 install-pkgconfigDATA: $(pkgconfig_DATA)
1141         @$(NORMAL_INSTALL)
1142         @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
1143         if test -n "$$list"; then \
1144           echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
1145           $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
1146         fi; \
1147         for p in $$list; do \
1148           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1149           echo "$$d$$p"; \
1150         done | $(am__base_list) | \
1151         while read files; do \
1152           echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
1153           $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
1154         done
1155
1156 uninstall-pkgconfigDATA:
1157         @$(NORMAL_UNINSTALL)
1158         @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
1159         files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1160         dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
1161 install-typelibsDATA: $(typelibs_DATA)
1162         @$(NORMAL_INSTALL)
1163         @list='$(typelibs_DATA)'; test -n "$(typelibsdir)" || list=; \
1164         if test -n "$$list"; then \
1165           echo " $(MKDIR_P) '$(DESTDIR)$(typelibsdir)'"; \
1166           $(MKDIR_P) "$(DESTDIR)$(typelibsdir)" || exit 1; \
1167         fi; \
1168         for p in $$list; do \
1169           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1170           echo "$$d$$p"; \
1171         done | $(am__base_list) | \
1172         while read files; do \
1173           echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(typelibsdir)'"; \
1174           $(INSTALL_DATA) $$files "$(DESTDIR)$(typelibsdir)" || exit $$?; \
1175         done
1176
1177 uninstall-typelibsDATA:
1178         @$(NORMAL_UNINSTALL)
1179         @list='$(typelibs_DATA)'; test -n "$(typelibsdir)" || list=; \
1180         files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1181         dir='$(DESTDIR)$(typelibsdir)'; $(am__uninstall_files_from_dir)
1182
1183 # This directory's subdirectories are mostly independent; you can cd
1184 # into them and run 'make' without going through this Makefile.
1185 # To change the values of 'make' variables: instead of editing Makefiles,
1186 # (1) if the variable is set in 'config.status', edit 'config.status'
1187 #     (which will cause the Makefiles to be regenerated when you run 'make');
1188 # (2) otherwise, pass the desired values on the 'make' command line.
1189 $(am__recursive_targets):
1190         @fail=; \
1191         if $(am__make_keepgoing); then \
1192           failcom='fail=yes'; \
1193         else \
1194           failcom='exit 1'; \
1195         fi; \
1196         dot_seen=no; \
1197         target=`echo $@ | sed s/-recursive//`; \
1198         case "$@" in \
1199           distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
1200           *) list='$(SUBDIRS)' ;; \
1201         esac; \
1202         for subdir in $$list; do \
1203           echo "Making $$target in $$subdir"; \
1204           if test "$$subdir" = "."; then \
1205             dot_seen=yes; \
1206             local_target="$$target-am"; \
1207           else \
1208             local_target="$$target"; \
1209           fi; \
1210           ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
1211           || eval $$failcom; \
1212         done; \
1213         if test "$$dot_seen" = "no"; then \
1214           $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
1215         fi; test -z "$$fail"
1216
1217 ID: $(am__tagged_files)
1218         $(am__define_uniq_tagged_files); mkid -fID $$unique
1219 tags: tags-recursive
1220 TAGS: tags
1221
1222 tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
1223         set x; \
1224         here=`pwd`; \
1225         if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
1226           include_option=--etags-include; \
1227           empty_fix=.; \
1228         else \
1229           include_option=--include; \
1230           empty_fix=; \
1231         fi; \
1232         list='$(SUBDIRS)'; for subdir in $$list; do \
1233           if test "$$subdir" = .; then :; else \
1234             test ! -f $$subdir/TAGS || \
1235               set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
1236           fi; \
1237         done; \
1238         $(am__define_uniq_tagged_files); \
1239         shift; \
1240         if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
1241           test -n "$$unique" || unique=$$empty_fix; \
1242           if test $$# -gt 0; then \
1243             $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1244               "$$@" $$unique; \
1245           else \
1246             $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1247               $$unique; \
1248           fi; \
1249         fi
1250 ctags: ctags-recursive
1251
1252 CTAGS: ctags
1253 ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
1254         $(am__define_uniq_tagged_files); \
1255         test -z "$(CTAGS_ARGS)$$unique" \
1256           || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
1257              $$unique
1258
1259 GTAGS:
1260         here=`$(am__cd) $(top_builddir) && pwd` \
1261           && $(am__cd) $(top_srcdir) \
1262           && gtags -i $(GTAGS_ARGS) "$$here"
1263 cscopelist: cscopelist-recursive
1264
1265 cscopelist-am: $(am__tagged_files)
1266         list='$(am__tagged_files)'; \
1267         case "$(srcdir)" in \
1268           [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
1269           *) sdir=$(subdir)/$(srcdir) ;; \
1270         esac; \
1271         for i in $$list; do \
1272           if test -f "$$i"; then \
1273             echo "$(subdir)/$$i"; \
1274           else \
1275             echo "$$sdir/$$i"; \
1276           fi; \
1277         done >> $(top_builddir)/cscope.files
1278
1279 distclean-tags:
1280         -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
1281
1282 distdir: $(DISTFILES)
1283         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1284         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1285         list='$(DISTFILES)'; \
1286           dist_files=`for file in $$list; do echo $$file; done | \
1287           sed -e "s|^$$srcdirstrip/||;t" \
1288               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
1289         case $$dist_files in \
1290           */*) $(MKDIR_P) `echo "$$dist_files" | \
1291                            sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
1292                            sort -u` ;; \
1293         esac; \
1294         for file in $$dist_files; do \
1295           if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1296           if test -d $$d/$$file; then \
1297             dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
1298             if test -d "$(distdir)/$$file"; then \
1299               find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1300             fi; \
1301             if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1302               cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
1303               find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1304             fi; \
1305             cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
1306           else \
1307             test -f "$(distdir)/$$file" \
1308             || cp -p $$d/$$file "$(distdir)/$$file" \
1309             || exit 1; \
1310           fi; \
1311         done
1312         @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
1313           if test "$$subdir" = .; then :; else \
1314             $(am__make_dryrun) \
1315               || test -d "$(distdir)/$$subdir" \
1316               || $(MKDIR_P) "$(distdir)/$$subdir" \
1317               || exit 1; \
1318             dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
1319             $(am__relativize); \
1320             new_distdir=$$reldir; \
1321             dir1=$$subdir; dir2="$(top_distdir)"; \
1322             $(am__relativize); \
1323             new_top_distdir=$$reldir; \
1324             echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
1325             echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
1326             ($(am__cd) $$subdir && \
1327               $(MAKE) $(AM_MAKEFLAGS) \
1328                 top_distdir="$$new_top_distdir" \
1329                 distdir="$$new_distdir" \
1330                 am__remove_distdir=: \
1331                 am__skip_length_check=: \
1332                 am__skip_mode_fix=: \
1333                 distdir) \
1334               || exit 1; \
1335           fi; \
1336         done
1337         $(MAKE) $(AM_MAKEFLAGS) \
1338           top_distdir="$(top_distdir)" distdir="$(distdir)" \
1339           dist-hook
1340 check-am: all-am
1341 check: $(BUILT_SOURCES)
1342         $(MAKE) $(AM_MAKEFLAGS) check-recursive
1343 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA)
1344 install-binPROGRAMS: install-libLTLIBRARIES
1345
1346 installdirs: installdirs-recursive
1347 installdirs-am:
1348         for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(jsonincludedir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(typelibsdir)"; do \
1349           test -z "$$dir" || $(MKDIR_P) "$$dir"; \
1350         done
1351 install: $(BUILT_SOURCES)
1352         $(MAKE) $(AM_MAKEFLAGS) install-recursive
1353 install-exec: install-exec-recursive
1354 install-data: install-data-recursive
1355 uninstall: uninstall-recursive
1356
1357 install-am: all-am
1358         @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1359
1360 installcheck: installcheck-recursive
1361 install-strip:
1362         if test -z '$(STRIP)'; then \
1363           $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1364             install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1365               install; \
1366         else \
1367           $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1368             install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1369             "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1370         fi
1371 mostlyclean-generic:
1372
1373 clean-generic:
1374         -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
1375
1376 distclean-generic:
1377         -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1378         -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
1379         -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
1380
1381 maintainer-clean-generic:
1382         @echo "This command is intended for maintainers to use"
1383         @echo "it deletes files that may require special tools to rebuild."
1384         -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
1385 clean: clean-recursive
1386
1387 clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \
1388         clean-libtool mostlyclean-am
1389
1390 distclean: distclean-recursive
1391         -rm -rf ./$(DEPDIR)
1392         -rm -f Makefile
1393 distclean-am: clean-am distclean-compile distclean-generic \
1394         distclean-tags
1395
1396 dvi: dvi-recursive
1397
1398 dvi-am:
1399
1400 html: html-recursive
1401
1402 html-am:
1403
1404 info: info-recursive
1405
1406 info-am:
1407
1408 install-data-am: install-dist_girDATA install-jsonincludeDATA \
1409         install-pkgconfigDATA install-typelibsDATA
1410
1411 install-dvi: install-dvi-recursive
1412
1413 install-dvi-am:
1414
1415 install-exec-am: install-binPROGRAMS install-libLTLIBRARIES
1416
1417 install-html: install-html-recursive
1418
1419 install-html-am:
1420
1421 install-info: install-info-recursive
1422
1423 install-info-am:
1424
1425 install-man:
1426
1427 install-pdf: install-pdf-recursive
1428
1429 install-pdf-am:
1430
1431 install-ps: install-ps-recursive
1432
1433 install-ps-am:
1434
1435 installcheck-am:
1436
1437 maintainer-clean: maintainer-clean-recursive
1438         -rm -rf ./$(DEPDIR)
1439         -rm -f Makefile
1440 maintainer-clean-am: distclean-am maintainer-clean-generic
1441
1442 mostlyclean: mostlyclean-recursive
1443
1444 mostlyclean-am: mostlyclean-compile mostlyclean-generic \
1445         mostlyclean-libtool
1446
1447 pdf: pdf-recursive
1448
1449 pdf-am:
1450
1451 ps: ps-recursive
1452
1453 ps-am:
1454
1455 uninstall-am: uninstall-binPROGRAMS uninstall-dist_girDATA \
1456         uninstall-jsonincludeDATA uninstall-libLTLIBRARIES \
1457         uninstall-pkgconfigDATA uninstall-typelibsDATA
1458
1459 .MAKE: $(am__recursive_targets) all check install install-am \
1460         install-strip
1461
1462 .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
1463         check-am clean clean-binPROGRAMS clean-generic \
1464         clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \
1465         ctags-am dist-hook distclean distclean-compile \
1466         distclean-generic distclean-libtool distclean-tags distdir dvi \
1467         dvi-am html html-am info info-am install install-am \
1468         install-binPROGRAMS install-data install-data-am \
1469         install-dist_girDATA install-dvi install-dvi-am install-exec \
1470         install-exec-am install-html install-html-am install-info \
1471         install-info-am install-jsonincludeDATA install-libLTLIBRARIES \
1472         install-man install-pdf install-pdf-am install-pkgconfigDATA \
1473         install-ps install-ps-am install-strip install-typelibsDATA \
1474         installcheck installcheck-am installdirs installdirs-am \
1475         maintainer-clean maintainer-clean-generic mostlyclean \
1476         mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
1477         pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
1478         uninstall-binPROGRAMS uninstall-dist_girDATA \
1479         uninstall-jsonincludeDATA uninstall-libLTLIBRARIES \
1480         uninstall-pkgconfigDATA uninstall-typelibsDATA
1481
1482 .PRECIOUS: Makefile
1483
1484
1485 # Basic sanity checks
1486 $(if $(GLIB_MKENUMS),,$(error Need to define GLIB_MKENUMS))
1487
1488 $(if $(or $(glib_enum_h), \
1489           $(glib_enum_c)),, \
1490     $(error Need to define glib_enum_h and glib_enum_c))
1491
1492 $(if $(glib_enum_headers),,$(error Need to define glib_enum_headers))
1493
1494 stamp-enum-types: $(enum_headers) $(enum_tmpl_h)
1495         $(AM_V_GEN)$(GLIB_MKENUMS) \
1496                 --template $(enum_tmpl_h) \
1497         $(enum_headers) > xgen-eh \
1498         && (cmp -s xgen-eh $(glib_enum_h) || cp -f xgen-eh $(glib_enum_h)) \
1499         && rm -f xgen-eh \
1500         && echo timestamp > $(@F)
1501
1502 $(glib_enum_h): stamp-enum-types
1503         @true
1504
1505 $(glib_enum_c): $(enum_headers) $(enum_tmpl_h) $(enum_tmpl_c)
1506         $(AM_V_GEN)$(GLIB_MKENUMS) \
1507                 --template $(enum_tmpl_c) \
1508         $(enum_headers) > xgen-ec \
1509         && cp -f xgen-ec $(glib_enum_c) \
1510         && rm -f xgen-ec
1511
1512 json-glib-1.0.pc: json-glib.pc
1513         $(AM_V_GEN)cp -f $< $@
1514
1515 # intospection
1516 -include $(INTROSPECTION_MAKEFILE)
1517
1518 @HAVE_INTROSPECTION_TRUE@Json-1.0.gir: libjson-glib-1.0.la Makefile
1519
1520 #
1521 # Creates Visual Studio 2008/2010 projects from items passed in from autotools files
1522 # $(1) - Base Name of the MSVC project files (outputs)
1523 #
1524
1525 define msvcproj-builder
1526
1527 $(top_builddir)/build/win32/vs10/$(1).vcxproj: $(top_builddir)/build/win32/vs9/$(1).vcproj
1528 $(top_builddir)/build/win32/vs10/$(1).vcxproj.filters: $(top_builddir)/build/win32/vs9/$(1).vcproj
1529 $(1).sourcefiles: $(top_builddir)/build/win32/vs9/$(1).vcproj
1530 $(1).vs10.sourcefiles: $(top_builddir)/build/win32/vs9/$(1).vcproj
1531 $(1).vs10.sourcefiles.filters: $(top_builddir)/build/win32/vs9/$(1).vcproj
1532
1533 $(top_builddir)/build/win32/vs9/$(1).vcproj: Makefile
1534         -$(RM) $(top_builddir)/build/win32/vs9/$(1).vcproj
1535         -$(RM) $(top_builddir)/build/win32/vs10/$(1).vcxproj
1536         -$(RM) $(top_builddir)/build/win32/vs10/$(1).vcxproj.filters
1537         -$(RM) $(top_builddir)/build/win32/vs11/$(1).vcxproj
1538         -$(RM) $(top_builddir)/build/win32/vs11/$(1).vcxproj.filters
1539         -$(RM) $(top_builddir)/build/win32/vs12/$(1).vcxproj
1540         -$(RM) $(top_builddir)/build/win32/vs12/$(1).vcxproj.filters
1541         -$(RM) $(top_builddir)/build/win32/vs14/$(1).vcxproj
1542         -$(RM) $(top_builddir)/build/win32/vs14/$(1).vcxproj.filters
1543         -$(RM) $(top_builddir)/build/win32/vs15/$(1).vcxproj
1544         -$(RM) $(top_builddir)/build/win32/vs15/$(1).vcxproj.filters
1545
1546         for F in $(_proj_files); do \
1547                 case $$$$F in \
1548                 $(_proj_filters)) \
1549                         ;; \
1550                 *.c|*.cpp|*.cc|*.cxx) \
1551                         echo '   <File RelativePath="..\..\..'$(_proj_subdir)$$$$F'" />' >>$(1).sourcefiles && \
1552                         echo '   <ClCompile Include="..\..\..'$(_proj_subdir)$$$$F'" />' >>$(1).vs10.sourcefiles && \
1553                         echo '   <ClCompile Include="..\..\..'$(_proj_subdir)$$$$F'"><Filter>Source Files</Filter></ClCompile>' >>$(1).vs10.sourcefiles.filters \
1554                         ;; \
1555                 esac;   \
1556         done
1557
1558         $(CPP) -P - <$(top_srcdir)/build/win32/vs9/$(1).vcprojin >$(top_builddir)/build/win32/vs9/$(1).vcproj
1559         $(CPP) -P - <$(top_srcdir)/build/win32/vs10/$(1).vcxprojin >$(top_builddir)/build/win32/vs10/$(1).vcxproj
1560         $(CPP) -P - <$(top_srcdir)/build/win32/vs10/$(1).vcxproj.filtersin >$(top_builddir)/build/win32/vs10/$(1).vcxproj.filters
1561         $(RM) $(1).sourcefiles
1562         $(RM) $(1).vs10.sourcefiles
1563         $(RM) $(1).vs10.sourcefiles.filters
1564
1565 $(top_builddir)/build/win32/vs10/$(1).vs10.headers: $(top_builddir)/build/win32/vs9/$(1).headers
1566
1567 $(top_builddir)/build/win32/vs9/$(1).headers: Makefile
1568         -$(RM) $(top_builddir)/build/win32/vs9/$(1).headers
1569         -$(RM) $(top_builddir)/build/win32/vs10/$(1).vs10.headers
1570
1571         for F in $(_proj_headers); do \
1572                 case $$$$F in \
1573                 $(_proj_headers_excludes)) \
1574                         ;; \
1575                 *.h|*.hpp|*.hh|*.hxx) \
1576                         echo 'copy ..\..\..'$(_proj_subdir)$$$$F' $$$$(CopyDir)\include'$(_headers_destdir)'\'$$$$F'&#x0D;&#x0A;' >>$(top_builddir)/build/win32/vs9/$(1).headers && \
1577                         echo 'copy ..\..\..'$(_proj_subdir)$$$$F' $$$$(CopyDir)\include'$(_headers_destdir)'\'$$$$F >>$(top_builddir)/build/win32/vs10/$(1).vs10.headers \
1578                         ;; \
1579                 esac;   \
1580         done
1581
1582 endef
1583
1584 $(foreach proj,$(MSVCPROJS),$(eval $(call msvcproj-builder,$(proj))))
1585
1586 #
1587 # Create NMake Makefile Sections for Building Introspection files
1588 # from autotools files
1589 # $(1) - File Name of the .gir that is to be generated
1590 #
1591
1592 @HAVE_INTROSPECTION_TRUE@define gir-nmake-builder
1593
1594 # Basic sanity check, to make sure required variables are set
1595 @HAVE_INTROSPECTION_TRUE@$(if $($(_gir_name)_MSVC_FILES),,$(error Need to define $(_gir_name)_MSVC_FILES))
1596 @HAVE_INTROSPECTION_TRUE@$(if $(or $(findstring --header-only,$($(_gir_name)_MSVC_SCANNERFLAGS)),
1597 @HAVE_INTROSPECTION_TRUE@          $($(_gir_name)_MSVC_LIBS),
1598 @HAVE_INTROSPECTION_TRUE@          $($(_gir_name)_MSVC_PROGRAM)),,
1599 @HAVE_INTROSPECTION_TRUE@    $(error Need to define $(_gir_name)_MSVC_LIBS or $(_gir_name)_MSVC_PROGRAM))
1600
1601 @HAVE_INTROSPECTION_TRUE@$(top_builddir)/build/win32/$(_gir_name)_list:
1602 @HAVE_INTROSPECTION_TRUE@       for F in $(_gir_files_msvc); do \
1603 @HAVE_INTROSPECTION_TRUE@               case $$$$F in \
1604 @HAVE_INTROSPECTION_TRUE@               *.c|*.cpp|*.cc|*.cxx|*.h|*.hpp|*.hh|*.hxx) \
1605 @HAVE_INTROSPECTION_TRUE@                       echo '..\..'$(_gir_source_subdir_msvc)$$$$F >>$(top_builddir)/build/win32/$(_gir_name)_list \
1606 @HAVE_INTROSPECTION_TRUE@                       ;; \
1607 @HAVE_INTROSPECTION_TRUE@               esac; \
1608 @HAVE_INTROSPECTION_TRUE@       done
1609
1610 @HAVE_INTROSPECTION_TRUE@$(top_builddir)/build/win32/$(1).msvc.introspect:
1611 @HAVE_INTROSPECTION_TRUE@       -$(RM) $(top_builddir)/build/win32/$(1).msvc.introspect
1612
1613 # Assemble the Command to Run g-ir-scanner
1614 @HAVE_INTROSPECTION_TRUE@       echo $(1)': '$(_gir_name)'_list '$($(_gir_name)_MSVC_GIR_DEPS)>>$(top_builddir)/build/win32/$(1).msvc.introspect
1615 @HAVE_INTROSPECTION_TRUE@       echo '  @-echo Generating $$$$@...'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1616 @HAVE_INTROSPECTION_TRUE@       echo '  $$$$(PYTHON) $$$$(G_IR_SCANNER) \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1617 @HAVE_INTROSPECTION_TRUE@       echo '  --verbose -no-libtool   \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1618 @HAVE_INTROSPECTION_TRUE@       echo '  --namespace='$(_gir_namespace_msvc)'    \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1619 @HAVE_INTROSPECTION_TRUE@       echo '  --nsversion='$(_gir_version_msvc)'      \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1620 @HAVE_INTROSPECTION_TRUE@       echo '  '$(_gir_packages_msvc)' \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1621 @HAVE_INTROSPECTION_TRUE@       echo '  '$(_gir_libraries_msvc)'        \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1622 @HAVE_INTROSPECTION_TRUE@       echo '  '$(_gir_program_msvc)'  \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1623 @HAVE_INTROSPECTION_TRUE@       echo '  --add-include-path=$$$$(G_IR_INCLUDEDIR)        \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1624 @HAVE_INTROSPECTION_TRUE@       echo '  '$(_gir_includes_msvc)' \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1625 @HAVE_INTROSPECTION_TRUE@       echo '  '$(_gir_export_packages_msvc)'  \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1626 @HAVE_INTROSPECTION_TRUE@       echo '  --cflags-begin  \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1627 @HAVE_INTROSPECTION_TRUE@       echo '  '$($(_gir_name)_MSVC_CFLAGS)'   \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1628 @HAVE_INTROSPECTION_TRUE@       echo '  --cflags-end    \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1629 @HAVE_INTROSPECTION_TRUE@       echo '  '$($(_gir_name)_MSVC_SCANNERFLAGS)'     \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1630 @HAVE_INTROSPECTION_TRUE@       echo '  --filelist='$(_gir_name)'_list  \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1631 @HAVE_INTROSPECTION_TRUE@       echo '  -o $$$$@'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1632 @HAVE_INTROSPECTION_TRUE@       echo '' >>$(top_builddir)/build/win32/$(1).msvc.introspect
1633
1634 # Finally Assemble the Command to Compile the generated .gir
1635 @HAVE_INTROSPECTION_TRUE@       echo '$(_typelib_basename_msvc).typelib: '$(_typelib_basename_msvc)'.gir'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1636 @HAVE_INTROSPECTION_TRUE@       echo '  @-echo Compiling $$$$@...'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1637 @HAVE_INTROSPECTION_TRUE@       echo '  $$$$(G_IR_COMPILER)     \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1638 @HAVE_INTROSPECTION_TRUE@       echo '  --includedir=. --debug --verbose        \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1639 @HAVE_INTROSPECTION_TRUE@       echo '  '$(1)'  \'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1640 @HAVE_INTROSPECTION_TRUE@       echo '  -o $$$$@'>>$(top_builddir)/build/win32/$(1).msvc.introspect
1641 @HAVE_INTROSPECTION_TRUE@       echo '' >>$(top_builddir)/build/win32/$(1).msvc.introspect
1642 @HAVE_INTROSPECTION_TRUE@endef
1643
1644 @HAVE_INTROSPECTION_TRUE@$(foreach gir,$(MSVC_INTROSPECT_GIRS),$(eval $(call gir-nmake-builder,$(gir))))
1645
1646 dist-hook:      \
1647         $(top_builddir)/build/win32/vs9/json-glib.vcproj                \
1648         $(top_builddir)/build/win32/vs9/json-glib.headers       \
1649         $(NMAKE_INTROSPECTION_FILES)
1650
1651 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1652 # Otherwise a system limit (for SysV at least) may be exceeded.
1653 .NOEXPORT: