~ubuntu-branches/ubuntu/trusty/gobject-introspection/trusty

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2011-03-22 00:32:36 UTC
  • mfrom: (1.4.1 upstream) (3.3.33 multiarch)
  • Revision ID: james.westby@ubuntu.com-20110322003236-4spdgfk1vai6xay1
Tags: 0.10.4-2
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
@SET_MAKE@
17
17
 
 
18
# -*- Mode: make -*-
 
19
# Copyright 2009-2010 Johan Dahlin
 
20
#
 
21
# This file defines variables that are compatible with
 
22
# Makefile.introspection, but for use within the gobject-introspection
 
23
# module itself.
 
24
#
 
25
 
 
26
# -*- Mode: make -*-
 
27
# Copyright 2009-2010 Johan Dahlin
 
28
#
 
29
# This file is free software; the author(s) gives unlimited
 
30
# permission to copy and/or distribute it, with or without
 
31
# modifications, as long as this notice is preserved.
 
32
#
 
33
# * Input variables:
 
34
#
 
35
#   INTROSPECTION_GIRS - List of GIRS that should be generated
 
36
#   INTROSPECTION_SCANNER - Command to invoke scanner, normally set by
 
37
#      GOBJECT_INTROSPECTION_REQUIRE/CHECK() in introspection.m4
 
38
#   INTROSPECTION_SCANNER_ARGS - Additional args to pass in to the scanner
 
39
#   INTROSPECTION_COMPILER - Command to invoke compiler, normally set by
 
40
#      GOBJECT_INTROSPECTION_REQUIRE/CHECK() in introspection.m4
 
41
#   INTROSPECTION_COMPILER_ARGS - Additional args to pass in to the compiler
 
42
#
 
43
# * Simple tutorial
 
44
#
 
45
# Add this to configure.ac:
 
46
#   -Wno-portability to AM_INIT_AUTOMAKE
 
47
#   GOBJECT_INTROSPECTION_CHECK([0.6.7])
 
48
#
 
49
# Add this to Makefile.am where your library/program is built:
 
50
#   include $(INTROSPECTION_MAKEFILE)
 
51
#   INTROSPECTION_GIRS = YourLib-1.0.gir
 
52
#   YourLib_1_0_gir_NAMESPACE = YourLib
 
53
#   YourLib_1_0_gir_VERSION = 1.0
 
54
#   YourLib_1_0_gir_LIBS = libyourlib.la
 
55
#   YourLib_1_0_gir_FILES = $(libyourlib_1_0_SOURCES)
 
56
#   girdir = $(datadir)/gir-1.0
 
57
#   dist_gir_DATA = YourLib-1.0.gir
 
58
#   typelibdir = $(libdir)/girepository-1.0
 
59
#   typelib_DATA = YourLib-1.0.typelib
 
60
#   CLEANFILES = $(dist_gir_DATA) $(typelib_DATA)
 
61
#
 
62
 
 
63
 
 
64
 
 
65
 
 
66
 
18
67
VPATH = @srcdir@
19
68
pkgdatadir = $(datadir)/@PACKAGE@
20
69
pkgincludedir = $(includedir)/@PACKAGE@
34
83
POST_UNINSTALL = :
35
84
build_triplet = @build@
36
85
host_triplet = @host@
37
 
subdir = .
 
86
check_PROGRAMS =
 
87
bin_PROGRAMS = g-ir-compiler$(EXEEXT) g-ir-generate$(EXEEXT)
 
88
noinst_PROGRAMS = $(am__EXEEXT_1) glib-print$(EXEEXT)
38
89
DIST_COMMON = README $(am__configure_deps) $(dist_make_DATA) \
 
90
        $(girepo_HEADERS) $(pkgpyexec_PYTHON) \
 
91
        $(srcdir)/Makefile-cmph.am $(srcdir)/Makefile-examples.am \
 
92
        $(srcdir)/Makefile-gir.am $(srcdir)/Makefile-girepository.am \
 
93
        $(srcdir)/Makefile-giscanner.am $(srcdir)/Makefile-tools.am \
39
94
        $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
 
95
        $(srcdir)/Makefile.introspection $(srcdir)/common.mk \
40
96
        $(srcdir)/config.h.in \
41
97
        $(srcdir)/gobject-introspection-1.0.pc.in \
42
98
        $(srcdir)/gobject-introspection-no-export-1.0.pc.in \
43
 
        $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \
44
 
        TODO compile config.guess config.sub depcomp install-sh \
45
 
        ltmain.sh missing py-compile ylwrap
 
99
        $(top_srcdir)/configure $(top_srcdir)/gir/cairo-1.0.gir.in \
 
100
        $(top_srcdir)/giscanner/config.py.in AUTHORS COPYING ChangeLog \
 
101
        NEWS TODO compile config.guess config.sub depcomp install-sh \
 
102
        ltmain.sh missing py-compile scannerlexer.c scannerparser.c \
 
103
        scannerparser.h ylwrap
 
104
 
 
105
# Yuck. Probably there is a way to get this from Python, but I don't
 
106
# know how. Use -Wl to avoid libtool crack.
 
107
@OS_WIN32_TRUE@am__append_1 = -Wl,$(pyexecdir)/../../libs/libpython25.a -no-undefined
 
108
@OS_WIN32_TRUE@am__append_2 = _giscanner.pyd
 
109
@OS_WIN32_TRUE@am__append_3 = _giscanner.pyd
 
110
subdir = .
46
111
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
47
112
am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \
48
113
        $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
55
120
 configure.lineno config.status.lineno
56
121
mkinstalldirs = $(install_sh) -d
57
122
CONFIG_HEADER = config.h
58
 
CONFIG_CLEAN_FILES = gobject-introspection-1.0.pc \
 
123
CONFIG_CLEAN_FILES = gir/cairo-1.0.gir giscanner/config.py \
 
124
        gobject-introspection-1.0.pc \
59
125
        gobject-introspection-no-export-1.0.pc
60
126
CONFIG_CLEAN_VPATH_FILES =
61
 
AM_V_GEN = $(am__v_GEN_$(V))
62
 
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
63
 
am__v_GEN_0 = @echo "  GEN   " $@;
64
 
AM_V_at = $(am__v_at_$(V))
65
 
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
66
 
am__v_at_0 = @
67
 
SOURCES =
68
 
DIST_SOURCES =
69
 
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
70
 
        html-recursive info-recursive install-data-recursive \
71
 
        install-dvi-recursive install-exec-recursive \
72
 
        install-html-recursive install-info-recursive \
73
 
        install-pdf-recursive install-ps-recursive install-recursive \
74
 
        installcheck-recursive installdirs-recursive pdf-recursive \
75
 
        ps-recursive uninstall-recursive
76
127
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
77
128
am__vpath_adj = case $$p in \
78
129
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
94
145
am__base_list = \
95
146
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
96
147
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
 
148
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgpyexecdir)" \
 
149
        "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" \
 
150
        "$(DESTDIR)$(pkgpyexecdir)" "$(DESTDIR)$(man1dir)" \
 
151
        "$(DESTDIR)$(makedir)" "$(DESTDIR)$(gdumpdir)" \
 
152
        "$(DESTDIR)$(girdir)" "$(DESTDIR)$(m4dir)" \
 
153
        "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(typelibsdir)" \
 
154
        "$(DESTDIR)$(girepodir)"
 
155
LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES) \
 
156
        $(pkgpyexec_LTLIBRARIES)
 
157
am__DEPENDENCIES_1 =
 
158
_giscanner_la_DEPENDENCIES = libgiscanner.la $(am__DEPENDENCIES_1)
 
159
am__giscanner_la_OBJECTS = _giscanner_la-giscannermodule.lo
 
160
_giscanner_la_OBJECTS = $(am__giscanner_la_OBJECTS)
 
161
AM_V_lt = $(am__v_lt_$(V))
 
162
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
 
163
am__v_lt_0 = --silent
 
164
_giscanner_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
165
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(_giscanner_la_CFLAGS) \
 
166
        $(CFLAGS) $(_giscanner_la_LDFLAGS) $(LDFLAGS) -o $@
 
167
libcmph_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
 
168
am_libcmph_la_OBJECTS = libcmph_la-bdz.lo libcmph_la-bdz_ph.lo \
 
169
        libcmph_la-bmz8.lo libcmph_la-bmz.lo libcmph_la-brz.lo \
 
170
        libcmph_la-buffer_entry.lo libcmph_la-buffer_manager.lo \
 
171
        libcmph_la-chd.lo libcmph_la-chd_ph.lo libcmph_la-chm.lo \
 
172
        libcmph_la-cmph.lo libcmph_la-cmph_structs.lo \
 
173
        libcmph_la-compressed_rank.lo libcmph_la-compressed_seq.lo \
 
174
        libcmph_la-fch_buckets.lo libcmph_la-fch.lo \
 
175
        libcmph_la-graph.lo libcmph_la-hash.lo \
 
176
        libcmph_la-jenkins_hash.lo libcmph_la-miller_rabin.lo \
 
177
        libcmph_la-select.lo libcmph_la-vqueue.lo libcmph_la-vstack.lo
 
178
libcmph_la_OBJECTS = $(am_libcmph_la_OBJECTS)
 
179
libgirepository_1_0_la_DEPENDENCIES = libgirepository-gthash.la \
 
180
        $(am__DEPENDENCIES_1)
 
181
am_libgirepository_1_0_la_OBJECTS = libgirepository_1_0_la-gdump.lo \
 
182
        libgirepository_1_0_la-giarginfo.lo \
 
183
        libgirepository_1_0_la-gibaseinfo.lo \
 
184
        libgirepository_1_0_la-gicallableinfo.lo \
 
185
        libgirepository_1_0_la-giconstantinfo.lo \
 
186
        libgirepository_1_0_la-gienuminfo.lo \
 
187
        libgirepository_1_0_la-gierrordomaininfo.lo \
 
188
        libgirepository_1_0_la-gifieldinfo.lo \
 
189
        libgirepository_1_0_la-gifunctioninfo.lo \
 
190
        libgirepository_1_0_la-ginvoke.lo \
 
191
        libgirepository_1_0_la-giinterfaceinfo.lo \
 
192
        libgirepository_1_0_la-giobjectinfo.lo \
 
193
        libgirepository_1_0_la-gipropertyinfo.lo \
 
194
        libgirepository_1_0_la-giregisteredtypeinfo.lo \
 
195
        libgirepository_1_0_la-girepository.lo \
 
196
        libgirepository_1_0_la-girffi.lo \
 
197
        libgirepository_1_0_la-gisignalinfo.lo \
 
198
        libgirepository_1_0_la-gistructinfo.lo \
 
199
        libgirepository_1_0_la-gitypeinfo.lo \
 
200
        libgirepository_1_0_la-gitypelib.lo \
 
201
        libgirepository_1_0_la-giunioninfo.lo \
 
202
        libgirepository_1_0_la-givfuncinfo.lo
 
203
libgirepository_1_0_la_OBJECTS = $(am_libgirepository_1_0_la_OBJECTS)
 
204
libgirepository_1_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
 
205
        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
 
206
        $(AM_CFLAGS) $(CFLAGS) $(libgirepository_1_0_la_LDFLAGS) \
 
207
        $(LDFLAGS) -o $@
 
208
libgirepository_gthash_la_DEPENDENCIES = libcmph.la \
 
209
        $(am__DEPENDENCIES_1)
 
210
am_libgirepository_gthash_la_OBJECTS =  \
 
211
        libgirepository_gthash_la-gthash.lo
 
212
libgirepository_gthash_la_OBJECTS =  \
 
213
        $(am_libgirepository_gthash_la_OBJECTS)
 
214
libgirepository_gthash_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
 
215
        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
 
216
        $(libgirepository_gthash_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
 
217
        $(LDFLAGS) -o $@
 
218
libgirepository_internals_la_DEPENDENCIES = libgirepository-gthash.la \
 
219
        $(am__DEPENDENCIES_1)
 
220
am_libgirepository_internals_la_OBJECTS =  \
 
221
        libgirepository_internals_la-girmodule.lo \
 
222
        libgirepository_internals_la-girnode.lo \
 
223
        libgirepository_internals_la-giroffsets.lo \
 
224
        libgirepository_internals_la-girparser.lo \
 
225
        libgirepository_internals_la-girwriter.lo
 
226
libgirepository_internals_la_OBJECTS =  \
 
227
        $(am_libgirepository_internals_la_OBJECTS)
 
228
libgirepository_internals_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
 
229
        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
 
230
        $(libgirepository_internals_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
 
231
        $(LDFLAGS) -o $@
 
232
libgiscanner_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
 
233
am_libgiscanner_la_OBJECTS = libgiscanner_la-sourcescanner.lo \
 
234
        libgiscanner_la-scannerlexer.lo \
 
235
        libgiscanner_la-scannerparser.lo
 
236
libgiscanner_la_OBJECTS = $(am_libgiscanner_la_OBJECTS)
 
237
libgiscanner_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
 
238
        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
 
239
        $(libgiscanner_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
 
240
        -o $@
 
241
am__EXEEXT_1 = cmph-bdz-test$(EXEEXT) gthash-test$(EXEEXT)
 
242
PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
 
243
am_cmph_bdz_test_OBJECTS = cmph_bdz_test-cmph-bdz-test.$(OBJEXT)
 
244
cmph_bdz_test_OBJECTS = $(am_cmph_bdz_test_OBJECTS)
 
245
cmph_bdz_test_DEPENDENCIES = libcmph.la $(am__DEPENDENCIES_1)
 
246
cmph_bdz_test_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
247
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(cmph_bdz_test_CFLAGS) \
 
248
        $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
249
am_g_ir_compiler_OBJECTS = g_ir_compiler-compiler.$(OBJEXT)
 
250
g_ir_compiler_OBJECTS = $(am_g_ir_compiler_OBJECTS)
 
251
g_ir_compiler_DEPENDENCIES = libgirepository-internals.la \
 
252
        libgirepository-1.0.la $(am__DEPENDENCIES_1)
 
253
g_ir_compiler_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
254
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(g_ir_compiler_CFLAGS) \
 
255
        $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
256
am_g_ir_generate_OBJECTS = g_ir_generate-generate.$(OBJEXT)
 
257
g_ir_generate_OBJECTS = $(am_g_ir_generate_OBJECTS)
 
258
g_ir_generate_DEPENDENCIES = libgirepository-internals.la \
 
259
        libgirepository-1.0.la $(am__DEPENDENCIES_1)
 
260
g_ir_generate_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
261
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(g_ir_generate_CFLAGS) \
 
262
        $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
263
am_glib_print_OBJECTS = glib_print-glib-print.$(OBJEXT)
 
264
glib_print_OBJECTS = $(am_glib_print_OBJECTS)
 
265
glib_print_DEPENDENCIES = libgirepository-1.0.la $(am__DEPENDENCIES_1)
 
266
glib_print_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
267
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(glib_print_CFLAGS) \
 
268
        $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
269
am_gthash_test_OBJECTS = gthash_test-gthash.$(OBJEXT) \
 
270
        gthash_test-gthash-test.$(OBJEXT)
 
271
gthash_test_OBJECTS = $(am_gthash_test_OBJECTS)
 
272
gthash_test_DEPENDENCIES = libcmph.la libgirepository-1.0.la \
 
273
        $(am__DEPENDENCIES_1)
 
274
gthash_test_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
275
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(gthash_test_CFLAGS) \
 
276
        $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
277
SCRIPTS = $(bin_SCRIPTS)
 
278
DEFAULT_INCLUDES = -I.@am__isrc@
 
279
depcomp = $(SHELL) $(top_srcdir)/depcomp
 
280
am__depfiles_maybe = depfiles
 
281
am__mv = mv -f
 
282
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 
283
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
284
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
285
        $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
 
286
        $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
287
        $(AM_CFLAGS) $(CFLAGS)
 
288
AM_V_CC = $(am__v_CC_$(V))
 
289
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
 
290
am__v_CC_0 = @echo "  CC    " $@;
 
291
AM_V_at = $(am__v_at_$(V))
 
292
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
 
293
am__v_at_0 = @
 
294
CCLD = $(CC)
 
295
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
296
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
297
        $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
298
AM_V_CCLD = $(am__v_CCLD_$(V))
 
299
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
 
300
am__v_CCLD_0 = @echo "  CCLD  " $@;
 
301
@MAINTAINER_MODE_FALSE@am__skiplex = test -f $@ ||
 
302
LEXCOMPILE = $(LEX) $(LFLAGS) $(AM_LFLAGS)
 
303
LTLEXCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \
 
304
        $(LIBTOOLFLAGS) --mode=compile $(LEX) $(LFLAGS) $(AM_LFLAGS)
 
305
AM_V_LEX = $(am__v_LEX_$(V))
 
306
am__v_LEX_ = $(am__v_LEX_$(AM_DEFAULT_VERBOSITY))
 
307
am__v_LEX_0 = @echo "  LEX   " $@;
 
308
YLWRAP = $(top_srcdir)/ylwrap
 
309
@MAINTAINER_MODE_FALSE@am__skipyacc = test -f $@ ||
 
310
YACCCOMPILE = $(YACC) $(YFLAGS) $(AM_YFLAGS)
 
311
LTYACCCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \
 
312
        $(LIBTOOLFLAGS) --mode=compile $(YACC) $(YFLAGS) $(AM_YFLAGS)
 
313
AM_V_YACC = $(am__v_YACC_$(V))
 
314
am__v_YACC_ = $(am__v_YACC_$(AM_DEFAULT_VERBOSITY))
 
315
am__v_YACC_0 = @echo "  YACC  " $@;
 
316
AM_V_GEN = $(am__v_GEN_$(V))
 
317
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
 
318
am__v_GEN_0 = @echo "  GEN   " $@;
 
319
SOURCES = $(_giscanner_la_SOURCES) $(libcmph_la_SOURCES) \
 
320
        $(libgirepository_1_0_la_SOURCES) \
 
321
        $(libgirepository_gthash_la_SOURCES) \
 
322
        $(libgirepository_internals_la_SOURCES) \
 
323
        $(libgiscanner_la_SOURCES) $(cmph_bdz_test_SOURCES) \
 
324
        $(g_ir_compiler_SOURCES) $(g_ir_generate_SOURCES) \
 
325
        $(glib_print_SOURCES) $(gthash_test_SOURCES)
 
326
DIST_SOURCES = $(_giscanner_la_SOURCES) $(libcmph_la_SOURCES) \
 
327
        $(libgirepository_1_0_la_SOURCES) \
 
328
        $(libgirepository_gthash_la_SOURCES) \
 
329
        $(libgirepository_internals_la_SOURCES) \
 
330
        $(libgiscanner_la_SOURCES) $(cmph_bdz_test_SOURCES) \
 
331
        $(g_ir_compiler_SOURCES) $(g_ir_generate_SOURCES) \
 
332
        $(glib_print_SOURCES) $(gthash_test_SOURCES)
 
333
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 
334
        html-recursive info-recursive install-data-recursive \
 
335
        install-dvi-recursive install-exec-recursive \
 
336
        install-html-recursive install-info-recursive \
 
337
        install-pdf-recursive install-ps-recursive install-recursive \
 
338
        installcheck-recursive installdirs-recursive pdf-recursive \
 
339
        ps-recursive uninstall-recursive
 
340
py_compile = $(top_srcdir)/py-compile
97
341
man1dir = $(mandir)/man1
98
 
am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(makedir)" \
99
 
        "$(DESTDIR)$(m4dir)" "$(DESTDIR)$(pkgconfigdir)"
100
342
NROFF = nroff
101
343
MANS = $(man_MANS)
102
 
DATA = $(dist_make_DATA) $(m4_DATA) $(pkgconfig_DATA)
 
344
DATA = $(dist_make_DATA) $(gdump_DATA) $(gir_DATA) $(m4_DATA) \
 
345
        $(pkgconfig_DATA) $(typelibs_DATA)
 
346
HEADERS = $(girepo_HEADERS)
103
347
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
104
348
  distclean-recursive maintainer-clean-recursive
105
349
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
139
383
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
140
384
  done; \
141
385
  reldir="$$dir2"
142
 
DIST_ARCHIVES = $(distdir).tar.gz
143
386
GZIP_ENV = --best
 
387
DIST_ARCHIVES = $(distdir).tar.bz2
144
388
distuninstallcheck_listfiles = find . -type f -print
145
389
distcleancheck_listfiles = find . -type f -print
146
390
ACLOCAL = @ACLOCAL@
152
396
AUTOMAKE = @AUTOMAKE@
153
397
AWK = @AWK@
154
398
CAIRO_CFLAGS = @CAIRO_CFLAGS@
 
399
CAIRO_GIR_PACKAGE = @CAIRO_GIR_PACKAGE@
 
400
CAIRO_GOBJECT_CFLAGS = @CAIRO_GOBJECT_CFLAGS@
 
401
CAIRO_GOBJECT_LIBS = @CAIRO_GOBJECT_LIBS@
155
402
CAIRO_LIBS = @CAIRO_LIBS@
 
403
CAIRO_SHARED_LIBRARY = @CAIRO_SHARED_LIBRARY@
156
404
CC = @CC@
157
405
CCDEPMODE = @CCDEPMODE@
158
406
CFLAGS = @CFLAGS@
180
428
FFI_PC_LIBS = @FFI_PC_LIBS@
181
429
FFI_PC_PACKAGES = @FFI_PC_PACKAGES@
182
430
FGREP = @FGREP@
 
431
GIO_CFLAGS = @GIO_CFLAGS@
 
432
GIO_LIBS = @GIO_LIBS@
183
433
GIO_UNIX_CFLAGS = @GIO_UNIX_CFLAGS@
184
434
GIO_UNIX_LIBS = @GIO_UNIX_LIBS@
185
435
GIREPO_CFLAGS = @GIREPO_CFLAGS@
186
436
GIREPO_LIBS = @GIREPO_LIBS@
187
437
GIR_DIR = @GIR_DIR@
188
438
GIR_SUFFIX = @GIR_SUFFIX@
 
439
GLIBSRC = @GLIBSRC@
 
440
GLIB_CFLAGS = @GLIB_CFLAGS@
 
441
GLIB_LIBS = @GLIB_LIBS@
189
442
GOBJECT_CFLAGS = @GOBJECT_CFLAGS@
190
443
GOBJECT_INTROSPECTION_LIBDIR = @GOBJECT_INTROSPECTION_LIBDIR@
191
444
GOBJECT_LIBS = @GOBJECT_LIBS@
192
445
GREP = @GREP@
193
 
GTHREAD_CFLAGS = @GTHREAD_CFLAGS@
194
 
GTHREAD_LIBS = @GTHREAD_LIBS@
195
446
GTKDOC_CHECK = @GTKDOC_CHECK@
196
447
GTKDOC_MKPDF = @GTKDOC_MKPDF@
197
448
GTKDOC_REBASE = @GTKDOC_REBASE@
226
477
PACKAGE_NAME = @PACKAGE_NAME@
227
478
PACKAGE_STRING = @PACKAGE_STRING@
228
479
PACKAGE_TARNAME = @PACKAGE_TARNAME@
229
 
PACKAGE_URL = @PACKAGE_URL@
230
480
PACKAGE_VERSION = @PACKAGE_VERSION@
231
481
PATH_SEPARATOR = @PATH_SEPARATOR@
232
482
PKG_CONFIG = @PKG_CONFIG@
287
537
mkdir_p = @mkdir_p@
288
538
oldincludedir = @oldincludedir@
289
539
pdfdir = @pdfdir@
290
 
pkgpyexecdir = @pkgpyexecdir@
 
540
 
 
541
# Python module
 
542
pkgpyexecdir = $(pkglibdir)/giscanner
291
543
pkgpythondir = @pkgpythondir@
292
544
prefix = @prefix@
293
545
program_transform_name = @program_transform_name@
302
554
top_build_prefix = @top_build_prefix@
303
555
top_builddir = @top_builddir@
304
556
top_srcdir = @top_srcdir@
 
557
man_MANS = docs/g-ir-compiler.1 docs/g-ir-generate.1 \
 
558
        docs/g-ir-scanner.1
 
559
EXTRA_DIST = $(STATIC_GIRSOURCES) gir/glib-2.0.c gir/gobject-2.0.c \
 
560
        gir/gio-2.0.c tools/g-ir-scanner.in \
 
561
        tools/g-ir-annotation-tool.in COPYING.LGPL COPYING.GPL \
 
562
        CONTRIBUTORS $(pkgconfig_DATA) $(man_MANS) $(m4_DATA) \
 
563
        misc/pep8.py misc/pre-commit misc/pyflakes.py
 
564
lib_LTLIBRARIES = libgirepository-1.0.la
 
565
noinst_LTLIBRARIES = libcmph.la libgirepository-internals.la \
 
566
        libgirepository-gthash.la libgiscanner.la
 
567
BUILT_SOURCES = scannerparser.c scannerparser.h scannerlexer.c \
 
568
        scannerlexer.h $(am__append_2)
 
569
CLEANFILES = $(BUILT_SOURCES) $(am__append_3) $(BUILT_GIRSOURCES) \
 
570
        $(typelibs_DATA) g-ir-scanner g-ir-annotation-tool
 
571
INTROSPECTION_GIRS = $(BUILT_GIRSOURCES)
 
572
check_LTLIBRARIES = 
 
573
bin_SCRIPTS = g-ir-scanner g-ir-annotation-tool
 
574
GTESTER_PROGS = cmph-bdz-test gthash-test
 
575
INTROSPECTION_SCANNER = \
 
576
    env LPATH=.libs \
 
577
        PYTHONPATH=$(top_builddir):$(top_srcdir) \
 
578
        UNINSTALLED_INTROSPECTION_SRCDIR=$(top_srcdir) \
 
579
        UNINSTALLED_INTROSPECTION_BUILDDIR=$(top_builddir) \
 
580
    $(top_builddir)/g-ir-scanner$(EXEEXT)
 
581
 
 
582
INTROSPECTION_SCANNER_ARGS = \
 
583
    --verbose \
 
584
    -I$(top_srcdir) \
 
585
    --add-include-path=$(srcdir) \
 
586
    --add-include-path=$(top_srcdir)/gir \
 
587
    --add-include-path=$(builddir) \
 
588
    --add-include-path=$(top_builddir)
 
589
 
 
590
INTROSPECTION_COMPILER = $(top_builddir)/g-ir-compiler$(EXEEXT)
 
591
INTROSPECTION_COMPILER_ARGS = \
 
592
    --includedir=$(srcdir) \
 
593
    --includedir=$(top_srcdir)/gir \
 
594
    --includedir=$(builddir) \
 
595
    --includedir=$(top_builddir)
 
596
 
 
597
 
 
598
# Private functions
 
599
_gir_name = $(subst /,_,$(subst -,_,$(subst .,_,$(1))))
 
600
 
 
601
# Namespace and Version is either fetched from the gir filename
 
602
# or the _NAMESPACE/_VERSION variable combo
 
603
_gir_namespace = $(or $($(_gir_name)_NAMESPACE),$(firstword $(subst -, ,$(1))))
 
604
_gir_version = $(or $($(_gir_name)_VERSION),$(lastword $(subst -, ,$(1:.gir=))))
 
605
 
 
606
# _PROGRAM is an optional variable which needs it's own --program argument
 
607
_gir_program = $(if $($(_gir_name)_PROGRAM),--program=$($(_gir_name)_PROGRAM))
 
608
 
 
609
# Variables which provides a list of things
 
610
_gir_libraries = $(foreach lib,$($(_gir_name)_LIBS),--library=$(lib))
 
611
_gir_packages = $(foreach pkg,$($(_gir_name)_PACKAGES),--pkg=$(pkg))
 
612
_gir_includes = $(foreach include,$($(_gir_name)_INCLUDES),--include=$(include))
 
613
_gir_export_packages = $(foreach pkg,$($(_gir_name)_EXPORT_PACKAGES),--pkg-export=$(pkg))
 
614
 
 
615
# Reuse the LIBTOOL variable from by automake if it's set
 
616
_gir_libtool = $(if $(LIBTOOL),--libtool="$(LIBTOOL)")
 
617
 
 
618
# Macros for AM_SILENT_RULES prettiness
 
619
_gir_verbosity = $(if $(AM_DEFAULT_VERBOSITY),$(AM_DEFAULT_VERBOSITY),1)
 
620
_gir_silent_scanner_prefix = $(_gir_silent_scanner_prefix_$(V))
 
621
_gir_silent_scanner_prefix_ = $(_gir_silent_scanner_prefix_$(_gir_verbosity))
 
622
_gir_silent_scanner_prefix_0 = @echo "  GISCAN $(1)";
 
623
_gir_silent_scanner_opts = $(_gir_silent_scanner_opts_$(V))
 
624
_gir_silent_scanner_opts_ = $(_gir_silent_scanner_opts_$(_gir_verbosity))
 
625
_gir_silent_scanner_opts_0 = --quiet
 
626
_gir_silent_compiler = $(_gir_silent_compiler_$(V))
 
627
_gir_silent_compiler_ = $(_gir_silent_compiler_$(_gir_verbosity))
 
628
_gir_silent_compiler_0 = @echo "  GICOMP $(1)";
 
629
libcmph_la_CPPFLAGS = -Icmph $(GLIB_CFLAGS)
 
630
libcmph_la_LIBADD = -lm $(GLIB_LIBS)
 
631
libcmph_la_SOURCES = \
 
632
        girepository/cmph/bdz.c \
 
633
        girepository/cmph/bdz.h \
 
634
        girepository/cmph/bdz_ph.c \
 
635
        girepository/cmph/bdz_ph.h \
 
636
        girepository/cmph/bdz_structs.h \
 
637
        girepository/cmph/bdz_structs_ph.h \
 
638
        girepository/cmph/bitbool.h \
 
639
        girepository/cmph/bmz8.c \
 
640
        girepository/cmph/bmz8.h \
 
641
        girepository/cmph/bmz8_structs.h \
 
642
        girepository/cmph/bmz.c \
 
643
        girepository/cmph/bmz.h \
 
644
        girepository/cmph/bmz_structs.h \
 
645
        girepository/cmph/brz.c \
 
646
        girepository/cmph/brz.h \
 
647
        girepository/cmph/brz_structs.h \
 
648
        girepository/cmph/buffer_entry.c \
 
649
        girepository/cmph/buffer_entry.h \
 
650
        girepository/cmph/buffer_manager.c \
 
651
        girepository/cmph/buffer_manager.h \
 
652
        girepository/cmph/chd.c \
 
653
        girepository/cmph/chd.h \
 
654
        girepository/cmph/chd_ph.c \
 
655
        girepository/cmph/chd_ph.h \
 
656
        girepository/cmph/chd_structs.h \
 
657
        girepository/cmph/chd_structs_ph.h \
 
658
        girepository/cmph/chm.c \
 
659
        girepository/cmph/chm.h \
 
660
        girepository/cmph/chm_structs.h \
 
661
        girepository/cmph/cmph.c \
 
662
        girepository/cmph/cmph.h \
 
663
        girepository/cmph/cmph_structs.c \
 
664
        girepository/cmph/cmph_structs.h \
 
665
        girepository/cmph/cmph_time.h \
 
666
        girepository/cmph/cmph_types.h \
 
667
        girepository/cmph/compressed_rank.c \
 
668
        girepository/cmph/compressed_rank.h \
 
669
        girepository/cmph/compressed_seq.c \
 
670
        girepository/cmph/compressed_seq.h \
 
671
        girepository/cmph/debug.h \
 
672
        girepository/cmph/fch_buckets.c \
 
673
        girepository/cmph/fch_buckets.h \
 
674
        girepository/cmph/fch.c \
 
675
        girepository/cmph/fch.h \
 
676
        girepository/cmph/fch_structs.h \
 
677
        girepository/cmph/graph.c \
 
678
        girepository/cmph/graph.h \
 
679
        girepository/cmph/hash.c \
 
680
        girepository/cmph/hash.h \
 
681
        girepository/cmph/hash_state.h \
 
682
        girepository/cmph/jenkins_hash.c \
 
683
        girepository/cmph/jenkins_hash.h \
 
684
        girepository/cmph/miller_rabin.c \
 
685
        girepository/cmph/miller_rabin.h \
 
686
        girepository/cmph/select.c \
 
687
        girepository/cmph/select.h \
 
688
        girepository/cmph/select_lookup_tables.h \
 
689
        girepository/cmph/vqueue.c \
 
690
        girepository/cmph/vqueue.h \
 
691
        girepository/cmph/vstack.c \
 
692
        girepository/cmph/vstack.h
 
693
 
 
694
cmph_bdz_test_SOURCES = girepository/cmph-bdz-test.c
 
695
cmph_bdz_test_CFLAGS = -I$(top_srcdir)/girepository/cmph $(GOBJECT_CFLAGS)
 
696
cmph_bdz_test_LDADD = libcmph.la $(GOBJECT_LIBS)
 
697
girepodir = $(includedir)/gobject-introspection-1.0/
 
698
girepo_HEADERS = \
 
699
        girepository/giarginfo.h                        \
 
700
        girepository/gibaseinfo.h                       \
 
701
        girepository/gicallableinfo.h                   \
 
702
        girepository/giconstantinfo.h                   \
 
703
        girepository/gienuminfo.h                       \
 
704
        girepository/gierrordomaininfo.h                \
 
705
        girepository/gifieldinfo.h                      \
 
706
        girepository/gifunctioninfo.h                   \
 
707
        girepository/giinterfaceinfo.h                  \
 
708
        girepository/giobjectinfo.h                     \
 
709
        girepository/gipropertyinfo.h                   \
 
710
        girepository/giregisteredtypeinfo.h             \
 
711
        girepository/girepository.h                     \
 
712
        girepository/girffi.h                           \
 
713
        girepository/gisignalinfo.h                     \
 
714
        girepository/gistructinfo.h                     \
 
715
        girepository/gitypeinfo.h                       \
 
716
        girepository/gitypelib.h                        \
 
717
        girepository/gitypes.h                          \
 
718
        girepository/giunioninfo.h                      \
 
719
        girepository/givfuncinfo.h
 
720
 
 
721
libgirepository_gthash_la_SOURCES = \
 
722
        girepository/gthash.c
 
723
 
 
724
libgirepository_gthash_la_CFLAGS = $(GIREPO_CFLAGS) -I$(top_srcdir)/girepository
 
725
libgirepository_gthash_la_LIBADD = libcmph.la $(GIREPO_LIBS)
 
726
libgirepository_internals_la_SOURCES = \
 
727
        girepository/girmodule.c                                \
 
728
        girepository/girmodule.h                                \
 
729
        girepository/girnode.c                                  \
 
730
        girepository/girnode.h                                  \
 
731
        girepository/giroffsets.c                               \
 
732
        girepository/girparser.c                                \
 
733
        girepository/girparser.h                                \
 
734
        girepository/girwriter.c                                \
 
735
        girepository/girwriter.h
 
736
 
 
737
libgirepository_internals_la_CFLAGS = $(GIREPO_CFLAGS) -I$(top_srcdir)/girepository
 
738
libgirepository_internals_la_LIBADD = libgirepository-gthash.la $(GIREPO_LIBS)
 
739
libgirepository_1_0_la_SOURCES = \
 
740
        girepository/gdump.c                            \
 
741
        girepository/giarginfo.c                        \
 
742
        girepository/gibaseinfo.c                       \
 
743
        girepository/gicallableinfo.c                   \
 
744
        girepository/giconstantinfo.c                   \
 
745
        girepository/gienuminfo.c                       \
 
746
        girepository/gierrordomaininfo.c                \
 
747
        girepository/gifieldinfo.c                      \
 
748
        girepository/gifunctioninfo.c                   \
 
749
        girepository/ginvoke.c                          \
 
750
        girepository/giinterfaceinfo.c                  \
 
751
        girepository/giobjectinfo.c                     \
 
752
        girepository/gipropertyinfo.c                   \
 
753
        girepository/giregisteredtypeinfo.c             \
 
754
        girepository/girepository.c                     \
 
755
        girepository/girepository-private.h             \
 
756
        girepository/girffi.c                           \
 
757
        girepository/girffi.h                           \
 
758
        girepository/gisignalinfo.c                     \
 
759
        girepository/gistructinfo.c                     \
 
760
        girepository/gitypeinfo.c                       \
 
761
        girepository/gitypelib.c                        \
 
762
        girepository/gitypelib-internal.h               \
 
763
        girepository/glib-compat.h                      \
 
764
        girepository/giunioninfo.c                      \
 
765
        girepository/givfuncinfo.c
 
766
 
 
767
libgirepository_1_0_la_CPPFLAGS = $(GIREPO_CFLAGS) -I$(top_srcdir)/girepository -DG_IREPOSITORY_COMPILATION
 
768
libgirepository_1_0_la_LIBADD = libgirepository-gthash.la $(GIREPO_LIBS)
 
769
libgirepository_1_0_la_LDFLAGS = -no-undefined -version-number 1:0:0 -export-symbols-regex '^gi?_'
 
770
gdumpdir = $(datadir)/gobject-introspection-1.0/
 
771
gdump_DATA = girepository/gdump.c
 
772
gthash_test_SOURCES = girepository/gthash.c girepository/gthash-test.c
 
773
gthash_test_CFLAGS = -I$(top_srcdir)/girepository $(GOBJECT_CFLAGS)
 
774
gthash_test_LDADD = libcmph.la libgirepository-1.0.la $(GOBJECT_LIBS)
 
775
AM_YFLAGS = -d -t
 
776
libgiscanner_la_SOURCES = \
 
777
        giscanner/sourcescanner.c                               \
 
778
        giscanner/sourcescanner.h                               \
 
779
        giscanner/scannerlexer.l                                \
 
780
        giscanner/scannerparser.y                               \
 
781
        giscanner/grealpath.h
 
782
 
 
783
libgiscanner_la_CPPFLAGS = -I$(top_srcdir)/girepository -I$(top_srcdir)/giscanner
 
784
libgiscanner_la_LIBADD = $(GOBJECT_LIBS)
 
785
libgiscanner_la_CFLAGS = $(GOBJECT_CFLAGS)
 
786
pkgpyexec_LTLIBRARIES = _giscanner.la
 
787
pkgpyexec_PYTHON = \
 
788
        giscanner/__init__.py           \
 
789
        giscanner/annotationmain.py     \
 
790
        giscanner/annotationparser.py   \
 
791
        giscanner/ast.py                \
 
792
        giscanner/cachestore.py         \
 
793
        giscanner/codegen.py            \
 
794
        giscanner/config.py             \
 
795
        giscanner/dumper.py             \
 
796
        giscanner/introspectablepass.py \
 
797
        giscanner/girparser.py          \
 
798
        giscanner/girwriter.py          \
 
799
        giscanner/gdumpparser.py        \
 
800
        giscanner/libtoolimporter.py    \
 
801
        giscanner/odict.py              \
 
802
        giscanner/maintransformer.py    \
 
803
        giscanner/message.py            \
 
804
        giscanner/shlibs.py             \
 
805
        giscanner/scannermain.py        \
 
806
        giscanner/sourcescanner.py      \
 
807
        giscanner/testcodegen.py        \
 
808
        giscanner/transformer.py        \
 
809
        giscanner/utils.py              \
 
810
        giscanner/xmlwriter.py
 
811
 
 
812
_giscanner_la_CFLAGS = \
 
813
        $(PYTHON_INCLUDES) \
 
814
        $(GOBJECT_CFLAGS) \
 
815
        -I$(top_srcdir)/giscanner
 
816
 
 
817
_giscanner_la_LIBADD = libgiscanner.la $(GOBJECT_LIBS)
 
818
_giscanner_la_LDFLAGS = -module -avoid-version -export-symbols-regex \
 
819
        init_giscanner $(am__append_1)
 
820
_giscanner_la_SOURCES = giscanner/giscannermodule.c
 
821
glib_print_SOURCES = examples/glib-print.c
 
822
glib_print_CFLAGS = $(GOBJECT_CFLAGS) -I$(top_srcdir)/girepository
 
823
glib_print_LDADD = libgirepository-1.0.la $(GOBJECT_LIBS)
 
824
BUILT_GIRSOURCES = GLib-2.0.gir GObject-2.0.gir GModule-2.0.gir \
 
825
        Gio-2.0.gir GIRepository-2.0.gir
 
826
STATIC_GIRSOURCES = \
 
827
        gir/cairo-1.0.gir           \
 
828
        gir/DBus-1.0.gir           \
 
829
        gir/DBusGLib-1.0.gir           \
 
830
        gir/fontconfig-2.0.gir      \
 
831
        gir/freetype2-2.0.gir       \
 
832
        gir/GL-1.0.gir              \
 
833
        gir/libxml2-2.0.gir         \
 
834
        gir/xft-2.0.gir             \
 
835
        gir/xlib-2.0.gir            \
 
836
        gir/xfixes-4.0.gir          \
 
837
        gir/xrandr-1.3.gir
 
838
 
 
839
@WITH_GLIBSRC_FALSE@GLib_2_0_gir_DOCSRC = 
 
840
 
 
841
# glib with source (to enable documentation)
 
842
@WITH_GLIBSRC_TRUE@GLib_2_0_gir_DOCSRC = $(GLIBSRC)/glib/*.c
 
843
@WITH_GLIBSRC_FALSE@GObject_2_0_gir_DOCSRC = 
 
844
@WITH_GLIBSRC_TRUE@GObject_2_0_gir_DOCSRC = $(GLIBSRC)/gobject/*.c
 
845
@WITH_GLIBSRC_FALSE@GModule_2_0_gir_DOCSRC = 
 
846
@WITH_GLIBSRC_TRUE@GModule_2_0_gir_DOCSRC = $(GLIBSRC)/gmodule/*.c
 
847
@WITH_GLIBSRC_FALSE@Gio_2_0_gir_DOCSRC = 
 
848
@WITH_GLIBSRC_TRUE@Gio_2_0_gir_DOCSRC = $(GLIBSRC)/gio/*.c
 
849
 
 
850
# glib
 
851
GLIB_INCLUDEDIR = $(shell pkg-config --variable=includedir glib-2.0)/glib-2.0
 
852
GLIB_LIBDIR = $(shell pkg-config --variable=libdir glib-2.0)
 
853
@OS_WIN32_FALSE@GLIB_LIBRARY = glib-2.0
 
854
@OS_WIN32_TRUE@GLIB_LIBRARY = libglib-2.0-0
 
855
GLib_2_0_gir_LIBS = $(GLIB_LIBRARY)
 
856
GLib_2_0_gir_SCANNERFLAGS = \
 
857
            --external-library \
 
858
            --reparse-validate \
 
859
            --identifier-prefix=G \
 
860
            --symbol-prefix=g \
 
861
            --symbol-prefix=glib \
 
862
            --c-include="glib.h" \
 
863
            $(GLib_2_0_gir_DOCSRC)
 
864
 
 
865
GLib_2_0_gir_PACKAGES = glib-2.0
 
866
GLib_2_0_gir_CFLAGS = \
 
867
            -I$(GLIB_INCLUDEDIR) \
 
868
            -I$(GLIB_LIBDIR)/glib-2.0/include \
 
869
            -DGETTEXT_PACKAGE=Dummy \
 
870
            -DGLIB_COMPILATION \
 
871
            -D__G_I18N_LIB_H__
 
872
 
 
873
GLib_2_0_gir_FILES = \
 
874
                $(GLIB_LIBDIR)/glib-2.0/include/glibconfig.h \
 
875
        $(GLIB_INCLUDEDIR)/glib/*.h \
 
876
                gir/glib-2.0.c
 
877
 
 
878
 
 
879
# gobject
 
880
GOBJECT_INCLUDEDIR = $(shell pkg-config --variable=includedir gobject-2.0)/glib-2.0
 
881
GOBJECT_LIBDIR = $(shell pkg-config --variable=libdir gobject-2.0)
 
882
@OS_WIN32_FALSE@GOBJECT_LIBRARY = gobject-2.0
 
883
@OS_WIN32_TRUE@GOBJECT_LIBRARY = libgobject-2.0-0
 
884
GObject_2_0_gir_LIBS = $(GOBJECT_LIBRARY)
 
885
GObject_2_0_gir_SCANNERFLAGS = \
 
886
            --external-library \
 
887
            --reparse-validate \
 
888
            --identifier-prefix=G \
 
889
            --c-include="glib-object.h" \
 
890
            --add-include-path=. \
 
891
            $(GObject_2_0_gir_DOCSRC)
 
892
 
 
893
GObject_2_0_gir_PACKAGES = gobject-2.0
 
894
GObject_2_0_gir_INCLUDES = GLib-2.0
 
895
GObject_2_0_gir_CFLAGS = \
 
896
            -DGOBJECT_COMPILATION \
 
897
                -I$(GOBJECT_INCLUDEDIR) \
 
898
            -I$(GOBJECT_LIBDIR)/glib-2.0/include
 
899
 
 
900
GObject_2_0_gir_FILES = $(GLIB_INCLUDEDIR)/gobject/*.h gir/gobject-2.0.c
 
901
 
 
902
# gmodule
 
903
GMODULE_INCLUDEDIR = $(shell pkg-config --variable=includedir gmodule-2.0)/glib-2.0
 
904
GMODULE_LIBDIR = $(shell pkg-config --variable=libdir gmodule-2.0)
 
905
@OS_WIN32_FALSE@GMODULE_LIBRARY = gmodule-2.0
 
906
@OS_WIN32_TRUE@GMODULE_LIBRARY = libgmodule-2.0-0
 
907
GModule_2_0_gir_LIBS = $(GMODULE_LIBRARY)
 
908
GModule_2_0_gir_SCANNERFLAGS = \
 
909
            --external-library \
 
910
            --identifier-prefix=G \
 
911
            --c-include="gmodule.h" \
 
912
            --add-include-path=. \
 
913
            $(GModule_2_0_gir_DOCSRC)
 
914
 
 
915
GModule_2_0_gir_PACKAGES = gmodule-2.0
 
916
GModule_2_0_gir_INCLUDES = GLib-2.0
 
917
GModule_2_0_gir_CFLAGS = \
 
918
            -I$(GMODULE_INCLUDEDIR) \
 
919
            -I$(GMODULE_LIBDIR)/glib-2.0/include
 
920
 
 
921
GModule_2_0_gir_FILES = $(GLIB_INCLUDEDIR)/gmodule.h
 
922
 
 
923
# gio
 
924
GIO_INCLUDEDIR = $(shell pkg-config --variable=includedir gio-2.0)/glib-2.0
 
925
GIO_LIBDIR = $(shell pkg-config --variable=libdir gio-2.0)
 
926
@OS_WIN32_FALSE@GIO_LIBRARY = gio-2.0
 
927
@OS_WIN32_TRUE@GIO_LIBRARY = libgio-2.0-0
 
928
@HAVE_GIO_UNIX_FALSE@GIO_UNIX_HDRS = 
 
929
@HAVE_GIO_UNIX_TRUE@GIO_UNIX_HDRS = $(shell pkg-config --variable=includedir gio-unix-2.0)/gio-unix-2.0/gio/*.h
 
930
@HAVE_GIO_UNIX_FALSE@GIO_UNIX_PACKAGES = 
 
931
@HAVE_GIO_UNIX_TRUE@GIO_UNIX_PACKAGES = gio-unix-2.0
 
932
GIO_CINCLUDES = $(patsubst %,--c-include='%',$(shell echo $(GIO_UNIX_HDRS)))
 
933
Gio_2_0_gir_LIBS = $(GIO_LIBRARY)
 
934
Gio_2_0_gir_SCANNERFLAGS = \
 
935
            --external-library \
 
936
            --reparse-validate \
 
937
            --warn-all \
 
938
            --identifier-prefix=G \
 
939
            --c-include="gio/gio.h" \
 
940
            $(GIO_CINCLUDES) \
 
941
            --add-include-path=. \
 
942
            $(Gio_2_0_gir_DOCSRC)
 
943
 
 
944
Gio_2_0_gir_PACKAGES = gio-2.0 $(GIO_UNIX_PACKAGES)
 
945
Gio_2_0_gir_INCLUDES = GObject-2.0
 
946
Gio_2_0_gir_CFLAGS = \
 
947
            -DGIO_COMPILATION \
 
948
            -I$(GIO_LIBDIR)/glib-2.0/include
 
949
 
 
950
Gio_2_0_gir_FILES = \
 
951
            $(GIO_UNIX_HDRS) \
 
952
            $(filter-out %/gsettingsbackend.h, $(shell echo $(GIO_INCLUDEDIR)/gio/*.h)) \
 
953
            gir/gio-2.0.c
 
954
 
 
955
GIRepository_2_0_gir_LIBS = libgirepository-1.0.la
 
956
GIRepository_2_0_gir_SCANNERFLAGS = \
 
957
        --warn-all \
 
958
        --identifier-prefix=GI \
 
959
        --symbol-prefix=g \
 
960
        --c-include="girepository.h" \
 
961
        --add-include-path=.
 
962
 
 
963
GIRepository_2_0_gir_PACKAGES = gobject-2.0
 
964
GIRepository_2_0_gir_INCLUDES = GObject-2.0
 
965
GIRepository_2_0_gir_EXPORT_PACKAGES = gobject-introspection-1.0
 
966
GIRepository_2_0_gir_CFLAGS = \
 
967
    -I$(top_srcdir)/girepository -I$(top_srcdir) \
 
968
    -DGI_COMPILATION
 
969
 
 
970
GIRepository_2_0_gir_FILES = \
 
971
        $(top_srcdir)/girepository/girepository.h   \
 
972
        $(top_srcdir)/girepository/girepository.c   \
 
973
        $(top_srcdir)/girepository/gi*info.c        \
 
974
        $(top_srcdir)/girepository/gi*info.h        \
 
975
        $(top_srcdir)/girepository/gitypelib.h      \
 
976
        $(top_srcdir)/girepository/gitypes.h
 
977
 
 
978
girdir = $(GIR_DIR)
 
979
gir_DATA = $(STATIC_GIRSOURCES) $(BUILT_GIRSOURCES)
 
980
typelibsdir = $(libdir)/girepository-1.0
 
981
typelibs_DATA = $(gir_DATA:.gir=.typelib)
 
982
g_ir_compiler_SOURCES = tools/compiler.c
 
983
g_ir_compiler_CPPFLAGS = -DGIREPO_DEFAULT_SEARCH_PATH="\"$(libdir)\"" \
 
984
                         -I$(top_srcdir)/girepository
 
985
 
 
986
g_ir_compiler_CFLAGS = $(GIO_CFLAGS)
 
987
g_ir_compiler_LDADD = \
 
988
        libgirepository-internals.la    \
 
989
        libgirepository-1.0.la          \
 
990
        $(GIREPO_LIBS)
 
991
 
 
992
g_ir_generate_SOURCES = tools/generate.c
 
993
g_ir_generate_CPPFLAGS = -DGIREPO_DEFAULT_SEARCH_PATH="\"$(libdir)\"" \
 
994
                         -I$(top_srcdir)/girepository
 
995
 
 
996
g_ir_generate_CFLAGS = $(GIO_CFLAGS)
 
997
g_ir_generate_LDADD = \
 
998
        libgirepository-internals.la    \
 
999
        libgirepository-1.0.la          \
 
1000
        $(GIREPO_LIBS)
 
1001
 
 
1002
GCOVSOURCES = \
 
1003
        $(g_ir_compiler_SOURCES)                \
 
1004
        $(g_ir_generate_SOURCES)
 
1005
 
305
1006
ACLOCAL_AMFLAGS = -I m4
306
 
SUBDIRS = girepository giscanner tools gir docs tests examples
 
1007
SUBDIRS = . docs tests
307
1008
DIST_SUBDIRS = m4 $(SUBDIRS)
308
1009
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
309
 
man_MANS = \
310
 
        docs/g-ir-compiler.1    \
311
 
        docs/g-ir-generate.1    \
312
 
        docs/g-ir-scanner.1
313
 
 
314
1010
pkgconfigdir = $(libdir)/pkgconfig
315
1011
pkgconfig_DATA = gobject-introspection-1.0.pc gobject-introspection-no-export-1.0.pc
316
1012
m4dir = $(datadir)/aclocal
317
1013
m4_DATA = m4/introspection.m4
318
1014
makedir = $(datadir)/gobject-introspection-1.0
319
1015
dist_make_DATA = Makefile.introspection
320
 
EXTRA_DIST = \
321
 
        COPYING.LGPL            \
322
 
        COPYING.GPL             \
323
 
        CONTRIBUTORS            \
324
 
        $(pkgconfig_DATA)       \
325
 
        $(man_MANS)             \
326
 
        $(m4_DATA)              \
327
 
        misc/pep8.py            \
328
 
        misc/pyflakes.py
329
 
 
330
 
all: config.h
 
1016
all: $(BUILT_SOURCES) config.h
331
1017
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
332
1018
 
333
1019
.SUFFIXES:
 
1020
.SUFFIXES: .c .l .lo .o .obj .y
334
1021
am--refresh:
335
1022
        @:
336
 
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
1023
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/common.mk $(srcdir)/Makefile.introspection $(srcdir)/Makefile-cmph.am $(srcdir)/Makefile-girepository.am $(srcdir)/Makefile-giscanner.am $(srcdir)/Makefile-examples.am $(srcdir)/Makefile-gir.am $(srcdir)/Makefile-tools.am $(am__configure_deps)
337
1024
        @for dep in $?; do \
338
1025
          case '$(am__configure_deps)' in \
339
1026
            *$$dep*) \
340
 
              echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
341
 
              $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
 
1027
              echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
 
1028
              $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
342
1029
                && exit 0; \
343
1030
              exit 1;; \
344
1031
          esac; \
345
1032
        done; \
346
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
 
1033
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
347
1034
        $(am__cd) $(top_srcdir) && \
348
 
          $(AUTOMAKE) --gnu Makefile
 
1035
          $(AUTOMAKE) --foreign Makefile
349
1036
.PRECIOUS: Makefile
350
1037
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
351
1038
        @case '$?' in \
382
1069
 
383
1070
distclean-hdr:
384
1071
        -rm -f config.h stamp-h1
 
1072
gir/cairo-1.0.gir: $(top_builddir)/config.status $(top_srcdir)/gir/cairo-1.0.gir.in
 
1073
        cd $(top_builddir) && $(SHELL) ./config.status $@
 
1074
giscanner/config.py: $(top_builddir)/config.status $(top_srcdir)/giscanner/config.py.in
 
1075
        cd $(top_builddir) && $(SHELL) ./config.status $@
385
1076
gobject-introspection-1.0.pc: $(top_builddir)/config.status $(srcdir)/gobject-introspection-1.0.pc.in
386
1077
        cd $(top_builddir) && $(SHELL) ./config.status $@
387
1078
gobject-introspection-no-export-1.0.pc: $(top_builddir)/config.status $(srcdir)/gobject-introspection-no-export-1.0.pc.in
388
1079
        cd $(top_builddir) && $(SHELL) ./config.status $@
389
1080
 
 
1081
clean-checkLTLIBRARIES:
 
1082
        -test -z "$(check_LTLIBRARIES)" || rm -f $(check_LTLIBRARIES)
 
1083
        @list='$(check_LTLIBRARIES)'; for p in $$list; do \
 
1084
          dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
 
1085
          test "$$dir" != "$$p" || dir=.; \
 
1086
          echo "rm -f \"$${dir}/so_locations\""; \
 
1087
          rm -f "$${dir}/so_locations"; \
 
1088
        done
 
1089
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
 
1090
        @$(NORMAL_INSTALL)
 
1091
        test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
 
1092
        @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
 
1093
        list2=; for p in $$list; do \
 
1094
          if test -f $$p; then \
 
1095
            list2="$$list2 $$p"; \
 
1096
          else :; fi; \
 
1097
        done; \
 
1098
        test -z "$$list2" || { \
 
1099
          echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
 
1100
          $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
 
1101
        }
 
1102
 
 
1103
uninstall-libLTLIBRARIES:
 
1104
        @$(NORMAL_UNINSTALL)
 
1105
        @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
 
1106
        for p in $$list; do \
 
1107
          $(am__strip_dir) \
 
1108
          echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
 
1109
          $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
 
1110
        done
 
1111
 
 
1112
clean-libLTLIBRARIES:
 
1113
        -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
 
1114
        @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
 
1115
          dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
 
1116
          test "$$dir" != "$$p" || dir=.; \
 
1117
          echo "rm -f \"$${dir}/so_locations\""; \
 
1118
          rm -f "$${dir}/so_locations"; \
 
1119
        done
 
1120
 
 
1121
clean-noinstLTLIBRARIES:
 
1122
        -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
 
1123
        @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
 
1124
          dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
 
1125
          test "$$dir" != "$$p" || dir=.; \
 
1126
          echo "rm -f \"$${dir}/so_locations\""; \
 
1127
          rm -f "$${dir}/so_locations"; \
 
1128
        done
 
1129
install-pkgpyexecLTLIBRARIES: $(pkgpyexec_LTLIBRARIES)
 
1130
        @$(NORMAL_INSTALL)
 
1131
        test -z "$(pkgpyexecdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgpyexecdir)"
 
1132
        @list='$(pkgpyexec_LTLIBRARIES)'; test -n "$(pkgpyexecdir)" || list=; \
 
1133
        list2=; for p in $$list; do \
 
1134
          if test -f $$p; then \
 
1135
            list2="$$list2 $$p"; \
 
1136
          else :; fi; \
 
1137
        done; \
 
1138
        test -z "$$list2" || { \
 
1139
          echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkgpyexecdir)'"; \
 
1140
          $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkgpyexecdir)"; \
 
1141
        }
 
1142
 
 
1143
uninstall-pkgpyexecLTLIBRARIES:
 
1144
        @$(NORMAL_UNINSTALL)
 
1145
        @list='$(pkgpyexec_LTLIBRARIES)'; test -n "$(pkgpyexecdir)" || list=; \
 
1146
        for p in $$list; do \
 
1147
          $(am__strip_dir) \
 
1148
          echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkgpyexecdir)/$$f'"; \
 
1149
          $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkgpyexecdir)/$$f"; \
 
1150
        done
 
1151
 
 
1152
clean-pkgpyexecLTLIBRARIES:
 
1153
        -test -z "$(pkgpyexec_LTLIBRARIES)" || rm -f $(pkgpyexec_LTLIBRARIES)
 
1154
        @list='$(pkgpyexec_LTLIBRARIES)'; for p in $$list; do \
 
1155
          dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
 
1156
          test "$$dir" != "$$p" || dir=.; \
 
1157
          echo "rm -f \"$${dir}/so_locations\""; \
 
1158
          rm -f "$${dir}/so_locations"; \
 
1159
        done
 
1160
_giscanner.la: $(_giscanner_la_OBJECTS) $(_giscanner_la_DEPENDENCIES) 
 
1161
        $(AM_V_CCLD)$(_giscanner_la_LINK) -rpath $(pkgpyexecdir) $(_giscanner_la_OBJECTS) $(_giscanner_la_LIBADD) $(LIBS)
 
1162
libcmph.la: $(libcmph_la_OBJECTS) $(libcmph_la_DEPENDENCIES) 
 
1163
        $(AM_V_CCLD)$(LINK)  $(libcmph_la_OBJECTS) $(libcmph_la_LIBADD) $(LIBS)
 
1164
libgirepository-1.0.la: $(libgirepository_1_0_la_OBJECTS) $(libgirepository_1_0_la_DEPENDENCIES) 
 
1165
        $(AM_V_CCLD)$(libgirepository_1_0_la_LINK) -rpath $(libdir) $(libgirepository_1_0_la_OBJECTS) $(libgirepository_1_0_la_LIBADD) $(LIBS)
 
1166
libgirepository-gthash.la: $(libgirepository_gthash_la_OBJECTS) $(libgirepository_gthash_la_DEPENDENCIES) 
 
1167
        $(AM_V_CCLD)$(libgirepository_gthash_la_LINK)  $(libgirepository_gthash_la_OBJECTS) $(libgirepository_gthash_la_LIBADD) $(LIBS)
 
1168
libgirepository-internals.la: $(libgirepository_internals_la_OBJECTS) $(libgirepository_internals_la_DEPENDENCIES) 
 
1169
        $(AM_V_CCLD)$(libgirepository_internals_la_LINK)  $(libgirepository_internals_la_OBJECTS) $(libgirepository_internals_la_LIBADD) $(LIBS)
 
1170
scannerparser.h: scannerparser.c
 
1171
        @if test ! -f $@; then \
 
1172
          rm -f scannerparser.c; \
 
1173
          $(MAKE) $(AM_MAKEFLAGS) scannerparser.c; \
 
1174
        else :; fi
 
1175
libgiscanner.la: $(libgiscanner_la_OBJECTS) $(libgiscanner_la_DEPENDENCIES) 
 
1176
        $(AM_V_CCLD)$(libgiscanner_la_LINK)  $(libgiscanner_la_OBJECTS) $(libgiscanner_la_LIBADD) $(LIBS)
 
1177
install-binPROGRAMS: $(bin_PROGRAMS)
 
1178
        @$(NORMAL_INSTALL)
 
1179
        test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
 
1180
        @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
 
1181
        for p in $$list; do echo "$$p $$p"; done | \
 
1182
        sed 's/$(EXEEXT)$$//' | \
 
1183
        while read p p1; do if test -f $$p || test -f $$p1; \
 
1184
          then echo "$$p"; echo "$$p"; else :; fi; \
 
1185
        done | \
 
1186
        sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
 
1187
            -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
 
1188
        sed 'N;N;N;s,\n, ,g' | \
 
1189
        $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
 
1190
          { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
 
1191
            if ($$2 == $$4) files[d] = files[d] " " $$1; \
 
1192
            else { print "f", $$3 "/" $$4, $$1; } } \
 
1193
          END { for (d in files) print "f", d, files[d] }' | \
 
1194
        while read type dir files; do \
 
1195
            if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
 
1196
            test -z "$$files" || { \
 
1197
            echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
 
1198
            $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
 
1199
            } \
 
1200
        ; done
 
1201
 
 
1202
uninstall-binPROGRAMS:
 
1203
        @$(NORMAL_UNINSTALL)
 
1204
        @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
 
1205
        files=`for p in $$list; do echo "$$p"; done | \
 
1206
          sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
 
1207
              -e 's/$$/$(EXEEXT)/' `; \
 
1208
        test -n "$$list" || exit 0; \
 
1209
        echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
 
1210
        cd "$(DESTDIR)$(bindir)" && rm -f $$files
 
1211
 
 
1212
clean-binPROGRAMS:
 
1213
        @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
 
1214
        echo " rm -f" $$list; \
 
1215
        rm -f $$list || exit $$?; \
 
1216
        test -n "$(EXEEXT)" || exit 0; \
 
1217
        list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
 
1218
        echo " rm -f" $$list; \
 
1219
        rm -f $$list
 
1220
 
 
1221
clean-checkPROGRAMS:
 
1222
        @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
 
1223
        echo " rm -f" $$list; \
 
1224
        rm -f $$list || exit $$?; \
 
1225
        test -n "$(EXEEXT)" || exit 0; \
 
1226
        list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
 
1227
        echo " rm -f" $$list; \
 
1228
        rm -f $$list
 
1229
 
 
1230
clean-noinstPROGRAMS:
 
1231
        @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
 
1232
        echo " rm -f" $$list; \
 
1233
        rm -f $$list || exit $$?; \
 
1234
        test -n "$(EXEEXT)" || exit 0; \
 
1235
        list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
 
1236
        echo " rm -f" $$list; \
 
1237
        rm -f $$list
 
1238
cmph-bdz-test$(EXEEXT): $(cmph_bdz_test_OBJECTS) $(cmph_bdz_test_DEPENDENCIES) 
 
1239
        @rm -f cmph-bdz-test$(EXEEXT)
 
1240
        $(AM_V_CCLD)$(cmph_bdz_test_LINK) $(cmph_bdz_test_OBJECTS) $(cmph_bdz_test_LDADD) $(LIBS)
 
1241
g-ir-compiler$(EXEEXT): $(g_ir_compiler_OBJECTS) $(g_ir_compiler_DEPENDENCIES) 
 
1242
        @rm -f g-ir-compiler$(EXEEXT)
 
1243
        $(AM_V_CCLD)$(g_ir_compiler_LINK) $(g_ir_compiler_OBJECTS) $(g_ir_compiler_LDADD) $(LIBS)
 
1244
g-ir-generate$(EXEEXT): $(g_ir_generate_OBJECTS) $(g_ir_generate_DEPENDENCIES) 
 
1245
        @rm -f g-ir-generate$(EXEEXT)
 
1246
        $(AM_V_CCLD)$(g_ir_generate_LINK) $(g_ir_generate_OBJECTS) $(g_ir_generate_LDADD) $(LIBS)
 
1247
glib-print$(EXEEXT): $(glib_print_OBJECTS) $(glib_print_DEPENDENCIES) 
 
1248
        @rm -f glib-print$(EXEEXT)
 
1249
        $(AM_V_CCLD)$(glib_print_LINK) $(glib_print_OBJECTS) $(glib_print_LDADD) $(LIBS)
 
1250
gthash-test$(EXEEXT): $(gthash_test_OBJECTS) $(gthash_test_DEPENDENCIES) 
 
1251
        @rm -f gthash-test$(EXEEXT)
 
1252
        $(AM_V_CCLD)$(gthash_test_LINK) $(gthash_test_OBJECTS) $(gthash_test_LDADD) $(LIBS)
 
1253
install-binSCRIPTS: $(bin_SCRIPTS)
 
1254
        @$(NORMAL_INSTALL)
 
1255
        test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
 
1256
        @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \
 
1257
        for p in $$list; do \
 
1258
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
1259
          if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
 
1260
        done | \
 
1261
        sed -e 'p;s,.*/,,;n' \
 
1262
            -e 'h;s|.*|.|' \
 
1263
            -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
 
1264
        $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
 
1265
          { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
 
1266
            if ($$2 == $$4) { files[d] = files[d] " " $$1; \
 
1267
              if (++n[d] == $(am__install_max)) { \
 
1268
                print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
 
1269
            else { print "f", d "/" $$4, $$1 } } \
 
1270
          END { for (d in files) print "f", d, files[d] }' | \
 
1271
        while read type dir files; do \
 
1272
             if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
 
1273
             test -z "$$files" || { \
 
1274
               echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \
 
1275
               $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
 
1276
             } \
 
1277
        ; done
 
1278
 
 
1279
uninstall-binSCRIPTS:
 
1280
        @$(NORMAL_UNINSTALL)
 
1281
        @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \
 
1282
        files=`for p in $$list; do echo "$$p"; done | \
 
1283
               sed -e 's,.*/,,;$(transform)'`; \
 
1284
        test -n "$$list" || exit 0; \
 
1285
        echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
 
1286
        cd "$(DESTDIR)$(bindir)" && rm -f $$files
 
1287
 
 
1288
mostlyclean-compile:
 
1289
        -rm -f *.$(OBJEXT)
 
1290
 
 
1291
distclean-compile:
 
1292
        -rm -f *.tab.c
 
1293
 
 
1294
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_giscanner_la-giscannermodule.Plo@am__quote@
 
1295
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmph_bdz_test-cmph-bdz-test.Po@am__quote@
 
1296
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/g_ir_compiler-compiler.Po@am__quote@
 
1297
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/g_ir_generate-generate.Po@am__quote@
 
1298
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glib_print-glib-print.Po@am__quote@
 
1299
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gthash_test-gthash-test.Po@am__quote@
 
1300
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gthash_test-gthash.Po@am__quote@
 
1301
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-bdz.Plo@am__quote@
 
1302
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-bdz_ph.Plo@am__quote@
 
1303
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-bmz.Plo@am__quote@
 
1304
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-bmz8.Plo@am__quote@
 
1305
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-brz.Plo@am__quote@
 
1306
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-buffer_entry.Plo@am__quote@
 
1307
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-buffer_manager.Plo@am__quote@
 
1308
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-chd.Plo@am__quote@
 
1309
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-chd_ph.Plo@am__quote@
 
1310
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-chm.Plo@am__quote@
 
1311
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-cmph.Plo@am__quote@
 
1312
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-cmph_structs.Plo@am__quote@
 
1313
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-compressed_rank.Plo@am__quote@
 
1314
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-compressed_seq.Plo@am__quote@
 
1315
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-fch.Plo@am__quote@
 
1316
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-fch_buckets.Plo@am__quote@
 
1317
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-graph.Plo@am__quote@
 
1318
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-hash.Plo@am__quote@
 
1319
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-jenkins_hash.Plo@am__quote@
 
1320
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-miller_rabin.Plo@am__quote@
 
1321
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-select.Plo@am__quote@
 
1322
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-vqueue.Plo@am__quote@
 
1323
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcmph_la-vstack.Plo@am__quote@
 
1324
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-gdump.Plo@am__quote@
 
1325
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-giarginfo.Plo@am__quote@
 
1326
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-gibaseinfo.Plo@am__quote@
 
1327
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-gicallableinfo.Plo@am__quote@
 
1328
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-giconstantinfo.Plo@am__quote@
 
1329
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-gienuminfo.Plo@am__quote@
 
1330
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-gierrordomaininfo.Plo@am__quote@
 
1331
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-gifieldinfo.Plo@am__quote@
 
1332
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-gifunctioninfo.Plo@am__quote@
 
1333
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-giinterfaceinfo.Plo@am__quote@
 
1334
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-ginvoke.Plo@am__quote@
 
1335
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-giobjectinfo.Plo@am__quote@
 
1336
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-gipropertyinfo.Plo@am__quote@
 
1337
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-giregisteredtypeinfo.Plo@am__quote@
 
1338
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-girepository.Plo@am__quote@
 
1339
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-girffi.Plo@am__quote@
 
1340
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-gisignalinfo.Plo@am__quote@
 
1341
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-gistructinfo.Plo@am__quote@
 
1342
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-gitypeinfo.Plo@am__quote@
 
1343
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-gitypelib.Plo@am__quote@
 
1344
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-giunioninfo.Plo@am__quote@
 
1345
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_1_0_la-givfuncinfo.Plo@am__quote@
 
1346
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_gthash_la-gthash.Plo@am__quote@
 
1347
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_internals_la-girmodule.Plo@am__quote@
 
1348
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_internals_la-girnode.Plo@am__quote@
 
1349
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_internals_la-giroffsets.Plo@am__quote@
 
1350
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_internals_la-girparser.Plo@am__quote@
 
1351
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgirepository_internals_la-girwriter.Plo@am__quote@
 
1352
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgiscanner_la-scannerlexer.Plo@am__quote@
 
1353
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgiscanner_la-scannerparser.Plo@am__quote@
 
1354
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgiscanner_la-sourcescanner.Plo@am__quote@
 
1355
 
 
1356
.c.o:
 
1357
@am__fastdepCC_TRUE@    $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 
1358
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
1359
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1360
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 
1361
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1362
@am__fastdepCC_FALSE@   $(COMPILE) -c $<
 
1363
 
 
1364
.c.obj:
 
1365
@am__fastdepCC_TRUE@    $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
 
1366
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
1367
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1368
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 
1369
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1370
@am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
1371
 
 
1372
.c.lo:
 
1373
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 
1374
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
 
1375
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1376
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
 
1377
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1378
@am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
 
1379
 
 
1380
_giscanner_la-giscannermodule.lo: giscanner/giscannermodule.c
 
1381
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_giscanner_la_CFLAGS) $(CFLAGS) -MT _giscanner_la-giscannermodule.lo -MD -MP -MF $(DEPDIR)/_giscanner_la-giscannermodule.Tpo -c -o _giscanner_la-giscannermodule.lo `test -f 'giscanner/giscannermodule.c' || echo '$(srcdir)/'`giscanner/giscannermodule.c
 
1382
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/_giscanner_la-giscannermodule.Tpo $(DEPDIR)/_giscanner_la-giscannermodule.Plo
 
1383
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1384
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='giscanner/giscannermodule.c' object='_giscanner_la-giscannermodule.lo' libtool=yes @AMDEPBACKSLASH@
 
1385
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1386
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_giscanner_la_CFLAGS) $(CFLAGS) -c -o _giscanner_la-giscannermodule.lo `test -f 'giscanner/giscannermodule.c' || echo '$(srcdir)/'`giscanner/giscannermodule.c
 
1387
 
 
1388
libcmph_la-bdz.lo: girepository/cmph/bdz.c
 
1389
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-bdz.lo -MD -MP -MF $(DEPDIR)/libcmph_la-bdz.Tpo -c -o libcmph_la-bdz.lo `test -f 'girepository/cmph/bdz.c' || echo '$(srcdir)/'`girepository/cmph/bdz.c
 
1390
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-bdz.Tpo $(DEPDIR)/libcmph_la-bdz.Plo
 
1391
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1392
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/bdz.c' object='libcmph_la-bdz.lo' libtool=yes @AMDEPBACKSLASH@
 
1393
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1394
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-bdz.lo `test -f 'girepository/cmph/bdz.c' || echo '$(srcdir)/'`girepository/cmph/bdz.c
 
1395
 
 
1396
libcmph_la-bdz_ph.lo: girepository/cmph/bdz_ph.c
 
1397
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-bdz_ph.lo -MD -MP -MF $(DEPDIR)/libcmph_la-bdz_ph.Tpo -c -o libcmph_la-bdz_ph.lo `test -f 'girepository/cmph/bdz_ph.c' || echo '$(srcdir)/'`girepository/cmph/bdz_ph.c
 
1398
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-bdz_ph.Tpo $(DEPDIR)/libcmph_la-bdz_ph.Plo
 
1399
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1400
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/bdz_ph.c' object='libcmph_la-bdz_ph.lo' libtool=yes @AMDEPBACKSLASH@
 
1401
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1402
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-bdz_ph.lo `test -f 'girepository/cmph/bdz_ph.c' || echo '$(srcdir)/'`girepository/cmph/bdz_ph.c
 
1403
 
 
1404
libcmph_la-bmz8.lo: girepository/cmph/bmz8.c
 
1405
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-bmz8.lo -MD -MP -MF $(DEPDIR)/libcmph_la-bmz8.Tpo -c -o libcmph_la-bmz8.lo `test -f 'girepository/cmph/bmz8.c' || echo '$(srcdir)/'`girepository/cmph/bmz8.c
 
1406
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-bmz8.Tpo $(DEPDIR)/libcmph_la-bmz8.Plo
 
1407
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1408
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/bmz8.c' object='libcmph_la-bmz8.lo' libtool=yes @AMDEPBACKSLASH@
 
1409
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1410
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-bmz8.lo `test -f 'girepository/cmph/bmz8.c' || echo '$(srcdir)/'`girepository/cmph/bmz8.c
 
1411
 
 
1412
libcmph_la-bmz.lo: girepository/cmph/bmz.c
 
1413
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-bmz.lo -MD -MP -MF $(DEPDIR)/libcmph_la-bmz.Tpo -c -o libcmph_la-bmz.lo `test -f 'girepository/cmph/bmz.c' || echo '$(srcdir)/'`girepository/cmph/bmz.c
 
1414
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-bmz.Tpo $(DEPDIR)/libcmph_la-bmz.Plo
 
1415
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1416
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/bmz.c' object='libcmph_la-bmz.lo' libtool=yes @AMDEPBACKSLASH@
 
1417
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1418
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-bmz.lo `test -f 'girepository/cmph/bmz.c' || echo '$(srcdir)/'`girepository/cmph/bmz.c
 
1419
 
 
1420
libcmph_la-brz.lo: girepository/cmph/brz.c
 
1421
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-brz.lo -MD -MP -MF $(DEPDIR)/libcmph_la-brz.Tpo -c -o libcmph_la-brz.lo `test -f 'girepository/cmph/brz.c' || echo '$(srcdir)/'`girepository/cmph/brz.c
 
1422
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-brz.Tpo $(DEPDIR)/libcmph_la-brz.Plo
 
1423
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1424
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/brz.c' object='libcmph_la-brz.lo' libtool=yes @AMDEPBACKSLASH@
 
1425
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1426
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-brz.lo `test -f 'girepository/cmph/brz.c' || echo '$(srcdir)/'`girepository/cmph/brz.c
 
1427
 
 
1428
libcmph_la-buffer_entry.lo: girepository/cmph/buffer_entry.c
 
1429
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-buffer_entry.lo -MD -MP -MF $(DEPDIR)/libcmph_la-buffer_entry.Tpo -c -o libcmph_la-buffer_entry.lo `test -f 'girepository/cmph/buffer_entry.c' || echo '$(srcdir)/'`girepository/cmph/buffer_entry.c
 
1430
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-buffer_entry.Tpo $(DEPDIR)/libcmph_la-buffer_entry.Plo
 
1431
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1432
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/buffer_entry.c' object='libcmph_la-buffer_entry.lo' libtool=yes @AMDEPBACKSLASH@
 
1433
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1434
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-buffer_entry.lo `test -f 'girepository/cmph/buffer_entry.c' || echo '$(srcdir)/'`girepository/cmph/buffer_entry.c
 
1435
 
 
1436
libcmph_la-buffer_manager.lo: girepository/cmph/buffer_manager.c
 
1437
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-buffer_manager.lo -MD -MP -MF $(DEPDIR)/libcmph_la-buffer_manager.Tpo -c -o libcmph_la-buffer_manager.lo `test -f 'girepository/cmph/buffer_manager.c' || echo '$(srcdir)/'`girepository/cmph/buffer_manager.c
 
1438
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-buffer_manager.Tpo $(DEPDIR)/libcmph_la-buffer_manager.Plo
 
1439
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1440
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/buffer_manager.c' object='libcmph_la-buffer_manager.lo' libtool=yes @AMDEPBACKSLASH@
 
1441
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1442
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-buffer_manager.lo `test -f 'girepository/cmph/buffer_manager.c' || echo '$(srcdir)/'`girepository/cmph/buffer_manager.c
 
1443
 
 
1444
libcmph_la-chd.lo: girepository/cmph/chd.c
 
1445
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-chd.lo -MD -MP -MF $(DEPDIR)/libcmph_la-chd.Tpo -c -o libcmph_la-chd.lo `test -f 'girepository/cmph/chd.c' || echo '$(srcdir)/'`girepository/cmph/chd.c
 
1446
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-chd.Tpo $(DEPDIR)/libcmph_la-chd.Plo
 
1447
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1448
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/chd.c' object='libcmph_la-chd.lo' libtool=yes @AMDEPBACKSLASH@
 
1449
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1450
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-chd.lo `test -f 'girepository/cmph/chd.c' || echo '$(srcdir)/'`girepository/cmph/chd.c
 
1451
 
 
1452
libcmph_la-chd_ph.lo: girepository/cmph/chd_ph.c
 
1453
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-chd_ph.lo -MD -MP -MF $(DEPDIR)/libcmph_la-chd_ph.Tpo -c -o libcmph_la-chd_ph.lo `test -f 'girepository/cmph/chd_ph.c' || echo '$(srcdir)/'`girepository/cmph/chd_ph.c
 
1454
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-chd_ph.Tpo $(DEPDIR)/libcmph_la-chd_ph.Plo
 
1455
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1456
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/chd_ph.c' object='libcmph_la-chd_ph.lo' libtool=yes @AMDEPBACKSLASH@
 
1457
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1458
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-chd_ph.lo `test -f 'girepository/cmph/chd_ph.c' || echo '$(srcdir)/'`girepository/cmph/chd_ph.c
 
1459
 
 
1460
libcmph_la-chm.lo: girepository/cmph/chm.c
 
1461
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-chm.lo -MD -MP -MF $(DEPDIR)/libcmph_la-chm.Tpo -c -o libcmph_la-chm.lo `test -f 'girepository/cmph/chm.c' || echo '$(srcdir)/'`girepository/cmph/chm.c
 
1462
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-chm.Tpo $(DEPDIR)/libcmph_la-chm.Plo
 
1463
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1464
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/chm.c' object='libcmph_la-chm.lo' libtool=yes @AMDEPBACKSLASH@
 
1465
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1466
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-chm.lo `test -f 'girepository/cmph/chm.c' || echo '$(srcdir)/'`girepository/cmph/chm.c
 
1467
 
 
1468
libcmph_la-cmph.lo: girepository/cmph/cmph.c
 
1469
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-cmph.lo -MD -MP -MF $(DEPDIR)/libcmph_la-cmph.Tpo -c -o libcmph_la-cmph.lo `test -f 'girepository/cmph/cmph.c' || echo '$(srcdir)/'`girepository/cmph/cmph.c
 
1470
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-cmph.Tpo $(DEPDIR)/libcmph_la-cmph.Plo
 
1471
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1472
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/cmph.c' object='libcmph_la-cmph.lo' libtool=yes @AMDEPBACKSLASH@
 
1473
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1474
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-cmph.lo `test -f 'girepository/cmph/cmph.c' || echo '$(srcdir)/'`girepository/cmph/cmph.c
 
1475
 
 
1476
libcmph_la-cmph_structs.lo: girepository/cmph/cmph_structs.c
 
1477
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-cmph_structs.lo -MD -MP -MF $(DEPDIR)/libcmph_la-cmph_structs.Tpo -c -o libcmph_la-cmph_structs.lo `test -f 'girepository/cmph/cmph_structs.c' || echo '$(srcdir)/'`girepository/cmph/cmph_structs.c
 
1478
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-cmph_structs.Tpo $(DEPDIR)/libcmph_la-cmph_structs.Plo
 
1479
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1480
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/cmph_structs.c' object='libcmph_la-cmph_structs.lo' libtool=yes @AMDEPBACKSLASH@
 
1481
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1482
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-cmph_structs.lo `test -f 'girepository/cmph/cmph_structs.c' || echo '$(srcdir)/'`girepository/cmph/cmph_structs.c
 
1483
 
 
1484
libcmph_la-compressed_rank.lo: girepository/cmph/compressed_rank.c
 
1485
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-compressed_rank.lo -MD -MP -MF $(DEPDIR)/libcmph_la-compressed_rank.Tpo -c -o libcmph_la-compressed_rank.lo `test -f 'girepository/cmph/compressed_rank.c' || echo '$(srcdir)/'`girepository/cmph/compressed_rank.c
 
1486
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-compressed_rank.Tpo $(DEPDIR)/libcmph_la-compressed_rank.Plo
 
1487
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1488
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/compressed_rank.c' object='libcmph_la-compressed_rank.lo' libtool=yes @AMDEPBACKSLASH@
 
1489
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1490
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-compressed_rank.lo `test -f 'girepository/cmph/compressed_rank.c' || echo '$(srcdir)/'`girepository/cmph/compressed_rank.c
 
1491
 
 
1492
libcmph_la-compressed_seq.lo: girepository/cmph/compressed_seq.c
 
1493
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-compressed_seq.lo -MD -MP -MF $(DEPDIR)/libcmph_la-compressed_seq.Tpo -c -o libcmph_la-compressed_seq.lo `test -f 'girepository/cmph/compressed_seq.c' || echo '$(srcdir)/'`girepository/cmph/compressed_seq.c
 
1494
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-compressed_seq.Tpo $(DEPDIR)/libcmph_la-compressed_seq.Plo
 
1495
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1496
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/compressed_seq.c' object='libcmph_la-compressed_seq.lo' libtool=yes @AMDEPBACKSLASH@
 
1497
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1498
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-compressed_seq.lo `test -f 'girepository/cmph/compressed_seq.c' || echo '$(srcdir)/'`girepository/cmph/compressed_seq.c
 
1499
 
 
1500
libcmph_la-fch_buckets.lo: girepository/cmph/fch_buckets.c
 
1501
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-fch_buckets.lo -MD -MP -MF $(DEPDIR)/libcmph_la-fch_buckets.Tpo -c -o libcmph_la-fch_buckets.lo `test -f 'girepository/cmph/fch_buckets.c' || echo '$(srcdir)/'`girepository/cmph/fch_buckets.c
 
1502
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-fch_buckets.Tpo $(DEPDIR)/libcmph_la-fch_buckets.Plo
 
1503
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1504
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/fch_buckets.c' object='libcmph_la-fch_buckets.lo' libtool=yes @AMDEPBACKSLASH@
 
1505
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1506
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-fch_buckets.lo `test -f 'girepository/cmph/fch_buckets.c' || echo '$(srcdir)/'`girepository/cmph/fch_buckets.c
 
1507
 
 
1508
libcmph_la-fch.lo: girepository/cmph/fch.c
 
1509
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-fch.lo -MD -MP -MF $(DEPDIR)/libcmph_la-fch.Tpo -c -o libcmph_la-fch.lo `test -f 'girepository/cmph/fch.c' || echo '$(srcdir)/'`girepository/cmph/fch.c
 
1510
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-fch.Tpo $(DEPDIR)/libcmph_la-fch.Plo
 
1511
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1512
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/fch.c' object='libcmph_la-fch.lo' libtool=yes @AMDEPBACKSLASH@
 
1513
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1514
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-fch.lo `test -f 'girepository/cmph/fch.c' || echo '$(srcdir)/'`girepository/cmph/fch.c
 
1515
 
 
1516
libcmph_la-graph.lo: girepository/cmph/graph.c
 
1517
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-graph.lo -MD -MP -MF $(DEPDIR)/libcmph_la-graph.Tpo -c -o libcmph_la-graph.lo `test -f 'girepository/cmph/graph.c' || echo '$(srcdir)/'`girepository/cmph/graph.c
 
1518
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-graph.Tpo $(DEPDIR)/libcmph_la-graph.Plo
 
1519
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1520
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/graph.c' object='libcmph_la-graph.lo' libtool=yes @AMDEPBACKSLASH@
 
1521
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1522
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-graph.lo `test -f 'girepository/cmph/graph.c' || echo '$(srcdir)/'`girepository/cmph/graph.c
 
1523
 
 
1524
libcmph_la-hash.lo: girepository/cmph/hash.c
 
1525
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-hash.lo -MD -MP -MF $(DEPDIR)/libcmph_la-hash.Tpo -c -o libcmph_la-hash.lo `test -f 'girepository/cmph/hash.c' || echo '$(srcdir)/'`girepository/cmph/hash.c
 
1526
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-hash.Tpo $(DEPDIR)/libcmph_la-hash.Plo
 
1527
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1528
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/hash.c' object='libcmph_la-hash.lo' libtool=yes @AMDEPBACKSLASH@
 
1529
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1530
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-hash.lo `test -f 'girepository/cmph/hash.c' || echo '$(srcdir)/'`girepository/cmph/hash.c
 
1531
 
 
1532
libcmph_la-jenkins_hash.lo: girepository/cmph/jenkins_hash.c
 
1533
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-jenkins_hash.lo -MD -MP -MF $(DEPDIR)/libcmph_la-jenkins_hash.Tpo -c -o libcmph_la-jenkins_hash.lo `test -f 'girepository/cmph/jenkins_hash.c' || echo '$(srcdir)/'`girepository/cmph/jenkins_hash.c
 
1534
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-jenkins_hash.Tpo $(DEPDIR)/libcmph_la-jenkins_hash.Plo
 
1535
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1536
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/jenkins_hash.c' object='libcmph_la-jenkins_hash.lo' libtool=yes @AMDEPBACKSLASH@
 
1537
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1538
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-jenkins_hash.lo `test -f 'girepository/cmph/jenkins_hash.c' || echo '$(srcdir)/'`girepository/cmph/jenkins_hash.c
 
1539
 
 
1540
libcmph_la-miller_rabin.lo: girepository/cmph/miller_rabin.c
 
1541
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-miller_rabin.lo -MD -MP -MF $(DEPDIR)/libcmph_la-miller_rabin.Tpo -c -o libcmph_la-miller_rabin.lo `test -f 'girepository/cmph/miller_rabin.c' || echo '$(srcdir)/'`girepository/cmph/miller_rabin.c
 
1542
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-miller_rabin.Tpo $(DEPDIR)/libcmph_la-miller_rabin.Plo
 
1543
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1544
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/miller_rabin.c' object='libcmph_la-miller_rabin.lo' libtool=yes @AMDEPBACKSLASH@
 
1545
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1546
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-miller_rabin.lo `test -f 'girepository/cmph/miller_rabin.c' || echo '$(srcdir)/'`girepository/cmph/miller_rabin.c
 
1547
 
 
1548
libcmph_la-select.lo: girepository/cmph/select.c
 
1549
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-select.lo -MD -MP -MF $(DEPDIR)/libcmph_la-select.Tpo -c -o libcmph_la-select.lo `test -f 'girepository/cmph/select.c' || echo '$(srcdir)/'`girepository/cmph/select.c
 
1550
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-select.Tpo $(DEPDIR)/libcmph_la-select.Plo
 
1551
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1552
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/select.c' object='libcmph_la-select.lo' libtool=yes @AMDEPBACKSLASH@
 
1553
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1554
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-select.lo `test -f 'girepository/cmph/select.c' || echo '$(srcdir)/'`girepository/cmph/select.c
 
1555
 
 
1556
libcmph_la-vqueue.lo: girepository/cmph/vqueue.c
 
1557
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-vqueue.lo -MD -MP -MF $(DEPDIR)/libcmph_la-vqueue.Tpo -c -o libcmph_la-vqueue.lo `test -f 'girepository/cmph/vqueue.c' || echo '$(srcdir)/'`girepository/cmph/vqueue.c
 
1558
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-vqueue.Tpo $(DEPDIR)/libcmph_la-vqueue.Plo
 
1559
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1560
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/vqueue.c' object='libcmph_la-vqueue.lo' libtool=yes @AMDEPBACKSLASH@
 
1561
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1562
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-vqueue.lo `test -f 'girepository/cmph/vqueue.c' || echo '$(srcdir)/'`girepository/cmph/vqueue.c
 
1563
 
 
1564
libcmph_la-vstack.lo: girepository/cmph/vstack.c
 
1565
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libcmph_la-vstack.lo -MD -MP -MF $(DEPDIR)/libcmph_la-vstack.Tpo -c -o libcmph_la-vstack.lo `test -f 'girepository/cmph/vstack.c' || echo '$(srcdir)/'`girepository/cmph/vstack.c
 
1566
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libcmph_la-vstack.Tpo $(DEPDIR)/libcmph_la-vstack.Plo
 
1567
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1568
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph/vstack.c' object='libcmph_la-vstack.lo' libtool=yes @AMDEPBACKSLASH@
 
1569
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1570
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcmph_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libcmph_la-vstack.lo `test -f 'girepository/cmph/vstack.c' || echo '$(srcdir)/'`girepository/cmph/vstack.c
 
1571
 
 
1572
libgirepository_1_0_la-gdump.lo: girepository/gdump.c
 
1573
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-gdump.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-gdump.Tpo -c -o libgirepository_1_0_la-gdump.lo `test -f 'girepository/gdump.c' || echo '$(srcdir)/'`girepository/gdump.c
 
1574
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-gdump.Tpo $(DEPDIR)/libgirepository_1_0_la-gdump.Plo
 
1575
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1576
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gdump.c' object='libgirepository_1_0_la-gdump.lo' libtool=yes @AMDEPBACKSLASH@
 
1577
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1578
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-gdump.lo `test -f 'girepository/gdump.c' || echo '$(srcdir)/'`girepository/gdump.c
 
1579
 
 
1580
libgirepository_1_0_la-giarginfo.lo: girepository/giarginfo.c
 
1581
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-giarginfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-giarginfo.Tpo -c -o libgirepository_1_0_la-giarginfo.lo `test -f 'girepository/giarginfo.c' || echo '$(srcdir)/'`girepository/giarginfo.c
 
1582
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-giarginfo.Tpo $(DEPDIR)/libgirepository_1_0_la-giarginfo.Plo
 
1583
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1584
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/giarginfo.c' object='libgirepository_1_0_la-giarginfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1585
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1586
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-giarginfo.lo `test -f 'girepository/giarginfo.c' || echo '$(srcdir)/'`girepository/giarginfo.c
 
1587
 
 
1588
libgirepository_1_0_la-gibaseinfo.lo: girepository/gibaseinfo.c
 
1589
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-gibaseinfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-gibaseinfo.Tpo -c -o libgirepository_1_0_la-gibaseinfo.lo `test -f 'girepository/gibaseinfo.c' || echo '$(srcdir)/'`girepository/gibaseinfo.c
 
1590
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-gibaseinfo.Tpo $(DEPDIR)/libgirepository_1_0_la-gibaseinfo.Plo
 
1591
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1592
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gibaseinfo.c' object='libgirepository_1_0_la-gibaseinfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1593
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1594
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-gibaseinfo.lo `test -f 'girepository/gibaseinfo.c' || echo '$(srcdir)/'`girepository/gibaseinfo.c
 
1595
 
 
1596
libgirepository_1_0_la-gicallableinfo.lo: girepository/gicallableinfo.c
 
1597
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-gicallableinfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-gicallableinfo.Tpo -c -o libgirepository_1_0_la-gicallableinfo.lo `test -f 'girepository/gicallableinfo.c' || echo '$(srcdir)/'`girepository/gicallableinfo.c
 
1598
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-gicallableinfo.Tpo $(DEPDIR)/libgirepository_1_0_la-gicallableinfo.Plo
 
1599
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1600
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gicallableinfo.c' object='libgirepository_1_0_la-gicallableinfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1601
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1602
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-gicallableinfo.lo `test -f 'girepository/gicallableinfo.c' || echo '$(srcdir)/'`girepository/gicallableinfo.c
 
1603
 
 
1604
libgirepository_1_0_la-giconstantinfo.lo: girepository/giconstantinfo.c
 
1605
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-giconstantinfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-giconstantinfo.Tpo -c -o libgirepository_1_0_la-giconstantinfo.lo `test -f 'girepository/giconstantinfo.c' || echo '$(srcdir)/'`girepository/giconstantinfo.c
 
1606
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-giconstantinfo.Tpo $(DEPDIR)/libgirepository_1_0_la-giconstantinfo.Plo
 
1607
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1608
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/giconstantinfo.c' object='libgirepository_1_0_la-giconstantinfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1609
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1610
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-giconstantinfo.lo `test -f 'girepository/giconstantinfo.c' || echo '$(srcdir)/'`girepository/giconstantinfo.c
 
1611
 
 
1612
libgirepository_1_0_la-gienuminfo.lo: girepository/gienuminfo.c
 
1613
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-gienuminfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-gienuminfo.Tpo -c -o libgirepository_1_0_la-gienuminfo.lo `test -f 'girepository/gienuminfo.c' || echo '$(srcdir)/'`girepository/gienuminfo.c
 
1614
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-gienuminfo.Tpo $(DEPDIR)/libgirepository_1_0_la-gienuminfo.Plo
 
1615
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1616
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gienuminfo.c' object='libgirepository_1_0_la-gienuminfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1617
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1618
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-gienuminfo.lo `test -f 'girepository/gienuminfo.c' || echo '$(srcdir)/'`girepository/gienuminfo.c
 
1619
 
 
1620
libgirepository_1_0_la-gierrordomaininfo.lo: girepository/gierrordomaininfo.c
 
1621
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-gierrordomaininfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-gierrordomaininfo.Tpo -c -o libgirepository_1_0_la-gierrordomaininfo.lo `test -f 'girepository/gierrordomaininfo.c' || echo '$(srcdir)/'`girepository/gierrordomaininfo.c
 
1622
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-gierrordomaininfo.Tpo $(DEPDIR)/libgirepository_1_0_la-gierrordomaininfo.Plo
 
1623
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1624
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gierrordomaininfo.c' object='libgirepository_1_0_la-gierrordomaininfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1625
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1626
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-gierrordomaininfo.lo `test -f 'girepository/gierrordomaininfo.c' || echo '$(srcdir)/'`girepository/gierrordomaininfo.c
 
1627
 
 
1628
libgirepository_1_0_la-gifieldinfo.lo: girepository/gifieldinfo.c
 
1629
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-gifieldinfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-gifieldinfo.Tpo -c -o libgirepository_1_0_la-gifieldinfo.lo `test -f 'girepository/gifieldinfo.c' || echo '$(srcdir)/'`girepository/gifieldinfo.c
 
1630
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-gifieldinfo.Tpo $(DEPDIR)/libgirepository_1_0_la-gifieldinfo.Plo
 
1631
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1632
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gifieldinfo.c' object='libgirepository_1_0_la-gifieldinfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1633
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1634
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-gifieldinfo.lo `test -f 'girepository/gifieldinfo.c' || echo '$(srcdir)/'`girepository/gifieldinfo.c
 
1635
 
 
1636
libgirepository_1_0_la-gifunctioninfo.lo: girepository/gifunctioninfo.c
 
1637
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-gifunctioninfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-gifunctioninfo.Tpo -c -o libgirepository_1_0_la-gifunctioninfo.lo `test -f 'girepository/gifunctioninfo.c' || echo '$(srcdir)/'`girepository/gifunctioninfo.c
 
1638
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-gifunctioninfo.Tpo $(DEPDIR)/libgirepository_1_0_la-gifunctioninfo.Plo
 
1639
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1640
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gifunctioninfo.c' object='libgirepository_1_0_la-gifunctioninfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1641
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1642
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-gifunctioninfo.lo `test -f 'girepository/gifunctioninfo.c' || echo '$(srcdir)/'`girepository/gifunctioninfo.c
 
1643
 
 
1644
libgirepository_1_0_la-ginvoke.lo: girepository/ginvoke.c
 
1645
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-ginvoke.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-ginvoke.Tpo -c -o libgirepository_1_0_la-ginvoke.lo `test -f 'girepository/ginvoke.c' || echo '$(srcdir)/'`girepository/ginvoke.c
 
1646
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-ginvoke.Tpo $(DEPDIR)/libgirepository_1_0_la-ginvoke.Plo
 
1647
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1648
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/ginvoke.c' object='libgirepository_1_0_la-ginvoke.lo' libtool=yes @AMDEPBACKSLASH@
 
1649
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1650
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-ginvoke.lo `test -f 'girepository/ginvoke.c' || echo '$(srcdir)/'`girepository/ginvoke.c
 
1651
 
 
1652
libgirepository_1_0_la-giinterfaceinfo.lo: girepository/giinterfaceinfo.c
 
1653
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-giinterfaceinfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-giinterfaceinfo.Tpo -c -o libgirepository_1_0_la-giinterfaceinfo.lo `test -f 'girepository/giinterfaceinfo.c' || echo '$(srcdir)/'`girepository/giinterfaceinfo.c
 
1654
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-giinterfaceinfo.Tpo $(DEPDIR)/libgirepository_1_0_la-giinterfaceinfo.Plo
 
1655
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1656
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/giinterfaceinfo.c' object='libgirepository_1_0_la-giinterfaceinfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1657
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1658
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-giinterfaceinfo.lo `test -f 'girepository/giinterfaceinfo.c' || echo '$(srcdir)/'`girepository/giinterfaceinfo.c
 
1659
 
 
1660
libgirepository_1_0_la-giobjectinfo.lo: girepository/giobjectinfo.c
 
1661
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-giobjectinfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-giobjectinfo.Tpo -c -o libgirepository_1_0_la-giobjectinfo.lo `test -f 'girepository/giobjectinfo.c' || echo '$(srcdir)/'`girepository/giobjectinfo.c
 
1662
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-giobjectinfo.Tpo $(DEPDIR)/libgirepository_1_0_la-giobjectinfo.Plo
 
1663
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1664
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/giobjectinfo.c' object='libgirepository_1_0_la-giobjectinfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1665
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1666
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-giobjectinfo.lo `test -f 'girepository/giobjectinfo.c' || echo '$(srcdir)/'`girepository/giobjectinfo.c
 
1667
 
 
1668
libgirepository_1_0_la-gipropertyinfo.lo: girepository/gipropertyinfo.c
 
1669
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-gipropertyinfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-gipropertyinfo.Tpo -c -o libgirepository_1_0_la-gipropertyinfo.lo `test -f 'girepository/gipropertyinfo.c' || echo '$(srcdir)/'`girepository/gipropertyinfo.c
 
1670
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-gipropertyinfo.Tpo $(DEPDIR)/libgirepository_1_0_la-gipropertyinfo.Plo
 
1671
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1672
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gipropertyinfo.c' object='libgirepository_1_0_la-gipropertyinfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1673
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1674
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-gipropertyinfo.lo `test -f 'girepository/gipropertyinfo.c' || echo '$(srcdir)/'`girepository/gipropertyinfo.c
 
1675
 
 
1676
libgirepository_1_0_la-giregisteredtypeinfo.lo: girepository/giregisteredtypeinfo.c
 
1677
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-giregisteredtypeinfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-giregisteredtypeinfo.Tpo -c -o libgirepository_1_0_la-giregisteredtypeinfo.lo `test -f 'girepository/giregisteredtypeinfo.c' || echo '$(srcdir)/'`girepository/giregisteredtypeinfo.c
 
1678
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-giregisteredtypeinfo.Tpo $(DEPDIR)/libgirepository_1_0_la-giregisteredtypeinfo.Plo
 
1679
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1680
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/giregisteredtypeinfo.c' object='libgirepository_1_0_la-giregisteredtypeinfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1681
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1682
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-giregisteredtypeinfo.lo `test -f 'girepository/giregisteredtypeinfo.c' || echo '$(srcdir)/'`girepository/giregisteredtypeinfo.c
 
1683
 
 
1684
libgirepository_1_0_la-girepository.lo: girepository/girepository.c
 
1685
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-girepository.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-girepository.Tpo -c -o libgirepository_1_0_la-girepository.lo `test -f 'girepository/girepository.c' || echo '$(srcdir)/'`girepository/girepository.c
 
1686
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-girepository.Tpo $(DEPDIR)/libgirepository_1_0_la-girepository.Plo
 
1687
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1688
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/girepository.c' object='libgirepository_1_0_la-girepository.lo' libtool=yes @AMDEPBACKSLASH@
 
1689
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1690
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-girepository.lo `test -f 'girepository/girepository.c' || echo '$(srcdir)/'`girepository/girepository.c
 
1691
 
 
1692
libgirepository_1_0_la-girffi.lo: girepository/girffi.c
 
1693
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-girffi.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-girffi.Tpo -c -o libgirepository_1_0_la-girffi.lo `test -f 'girepository/girffi.c' || echo '$(srcdir)/'`girepository/girffi.c
 
1694
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-girffi.Tpo $(DEPDIR)/libgirepository_1_0_la-girffi.Plo
 
1695
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1696
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/girffi.c' object='libgirepository_1_0_la-girffi.lo' libtool=yes @AMDEPBACKSLASH@
 
1697
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1698
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-girffi.lo `test -f 'girepository/girffi.c' || echo '$(srcdir)/'`girepository/girffi.c
 
1699
 
 
1700
libgirepository_1_0_la-gisignalinfo.lo: girepository/gisignalinfo.c
 
1701
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-gisignalinfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-gisignalinfo.Tpo -c -o libgirepository_1_0_la-gisignalinfo.lo `test -f 'girepository/gisignalinfo.c' || echo '$(srcdir)/'`girepository/gisignalinfo.c
 
1702
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-gisignalinfo.Tpo $(DEPDIR)/libgirepository_1_0_la-gisignalinfo.Plo
 
1703
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1704
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gisignalinfo.c' object='libgirepository_1_0_la-gisignalinfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1705
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1706
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-gisignalinfo.lo `test -f 'girepository/gisignalinfo.c' || echo '$(srcdir)/'`girepository/gisignalinfo.c
 
1707
 
 
1708
libgirepository_1_0_la-gistructinfo.lo: girepository/gistructinfo.c
 
1709
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-gistructinfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-gistructinfo.Tpo -c -o libgirepository_1_0_la-gistructinfo.lo `test -f 'girepository/gistructinfo.c' || echo '$(srcdir)/'`girepository/gistructinfo.c
 
1710
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-gistructinfo.Tpo $(DEPDIR)/libgirepository_1_0_la-gistructinfo.Plo
 
1711
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1712
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gistructinfo.c' object='libgirepository_1_0_la-gistructinfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1713
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1714
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-gistructinfo.lo `test -f 'girepository/gistructinfo.c' || echo '$(srcdir)/'`girepository/gistructinfo.c
 
1715
 
 
1716
libgirepository_1_0_la-gitypeinfo.lo: girepository/gitypeinfo.c
 
1717
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-gitypeinfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-gitypeinfo.Tpo -c -o libgirepository_1_0_la-gitypeinfo.lo `test -f 'girepository/gitypeinfo.c' || echo '$(srcdir)/'`girepository/gitypeinfo.c
 
1718
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-gitypeinfo.Tpo $(DEPDIR)/libgirepository_1_0_la-gitypeinfo.Plo
 
1719
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1720
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gitypeinfo.c' object='libgirepository_1_0_la-gitypeinfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1721
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1722
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-gitypeinfo.lo `test -f 'girepository/gitypeinfo.c' || echo '$(srcdir)/'`girepository/gitypeinfo.c
 
1723
 
 
1724
libgirepository_1_0_la-gitypelib.lo: girepository/gitypelib.c
 
1725
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-gitypelib.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-gitypelib.Tpo -c -o libgirepository_1_0_la-gitypelib.lo `test -f 'girepository/gitypelib.c' || echo '$(srcdir)/'`girepository/gitypelib.c
 
1726
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-gitypelib.Tpo $(DEPDIR)/libgirepository_1_0_la-gitypelib.Plo
 
1727
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1728
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gitypelib.c' object='libgirepository_1_0_la-gitypelib.lo' libtool=yes @AMDEPBACKSLASH@
 
1729
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1730
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-gitypelib.lo `test -f 'girepository/gitypelib.c' || echo '$(srcdir)/'`girepository/gitypelib.c
 
1731
 
 
1732
libgirepository_1_0_la-giunioninfo.lo: girepository/giunioninfo.c
 
1733
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-giunioninfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-giunioninfo.Tpo -c -o libgirepository_1_0_la-giunioninfo.lo `test -f 'girepository/giunioninfo.c' || echo '$(srcdir)/'`girepository/giunioninfo.c
 
1734
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-giunioninfo.Tpo $(DEPDIR)/libgirepository_1_0_la-giunioninfo.Plo
 
1735
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1736
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/giunioninfo.c' object='libgirepository_1_0_la-giunioninfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1737
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1738
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-giunioninfo.lo `test -f 'girepository/giunioninfo.c' || echo '$(srcdir)/'`girepository/giunioninfo.c
 
1739
 
 
1740
libgirepository_1_0_la-givfuncinfo.lo: girepository/givfuncinfo.c
 
1741
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgirepository_1_0_la-givfuncinfo.lo -MD -MP -MF $(DEPDIR)/libgirepository_1_0_la-givfuncinfo.Tpo -c -o libgirepository_1_0_la-givfuncinfo.lo `test -f 'girepository/givfuncinfo.c' || echo '$(srcdir)/'`girepository/givfuncinfo.c
 
1742
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_1_0_la-givfuncinfo.Tpo $(DEPDIR)/libgirepository_1_0_la-givfuncinfo.Plo
 
1743
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1744
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/givfuncinfo.c' object='libgirepository_1_0_la-givfuncinfo.lo' libtool=yes @AMDEPBACKSLASH@
 
1745
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1746
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgirepository_1_0_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgirepository_1_0_la-givfuncinfo.lo `test -f 'girepository/givfuncinfo.c' || echo '$(srcdir)/'`girepository/givfuncinfo.c
 
1747
 
 
1748
libgirepository_gthash_la-gthash.lo: girepository/gthash.c
 
1749
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgirepository_gthash_la_CFLAGS) $(CFLAGS) -MT libgirepository_gthash_la-gthash.lo -MD -MP -MF $(DEPDIR)/libgirepository_gthash_la-gthash.Tpo -c -o libgirepository_gthash_la-gthash.lo `test -f 'girepository/gthash.c' || echo '$(srcdir)/'`girepository/gthash.c
 
1750
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_gthash_la-gthash.Tpo $(DEPDIR)/libgirepository_gthash_la-gthash.Plo
 
1751
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1752
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gthash.c' object='libgirepository_gthash_la-gthash.lo' libtool=yes @AMDEPBACKSLASH@
 
1753
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1754
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgirepository_gthash_la_CFLAGS) $(CFLAGS) -c -o libgirepository_gthash_la-gthash.lo `test -f 'girepository/gthash.c' || echo '$(srcdir)/'`girepository/gthash.c
 
1755
 
 
1756
libgirepository_internals_la-girmodule.lo: girepository/girmodule.c
 
1757
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgirepository_internals_la_CFLAGS) $(CFLAGS) -MT libgirepository_internals_la-girmodule.lo -MD -MP -MF $(DEPDIR)/libgirepository_internals_la-girmodule.Tpo -c -o libgirepository_internals_la-girmodule.lo `test -f 'girepository/girmodule.c' || echo '$(srcdir)/'`girepository/girmodule.c
 
1758
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_internals_la-girmodule.Tpo $(DEPDIR)/libgirepository_internals_la-girmodule.Plo
 
1759
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1760
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/girmodule.c' object='libgirepository_internals_la-girmodule.lo' libtool=yes @AMDEPBACKSLASH@
 
1761
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1762
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgirepository_internals_la_CFLAGS) $(CFLAGS) -c -o libgirepository_internals_la-girmodule.lo `test -f 'girepository/girmodule.c' || echo '$(srcdir)/'`girepository/girmodule.c
 
1763
 
 
1764
libgirepository_internals_la-girnode.lo: girepository/girnode.c
 
1765
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgirepository_internals_la_CFLAGS) $(CFLAGS) -MT libgirepository_internals_la-girnode.lo -MD -MP -MF $(DEPDIR)/libgirepository_internals_la-girnode.Tpo -c -o libgirepository_internals_la-girnode.lo `test -f 'girepository/girnode.c' || echo '$(srcdir)/'`girepository/girnode.c
 
1766
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_internals_la-girnode.Tpo $(DEPDIR)/libgirepository_internals_la-girnode.Plo
 
1767
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1768
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/girnode.c' object='libgirepository_internals_la-girnode.lo' libtool=yes @AMDEPBACKSLASH@
 
1769
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1770
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgirepository_internals_la_CFLAGS) $(CFLAGS) -c -o libgirepository_internals_la-girnode.lo `test -f 'girepository/girnode.c' || echo '$(srcdir)/'`girepository/girnode.c
 
1771
 
 
1772
libgirepository_internals_la-giroffsets.lo: girepository/giroffsets.c
 
1773
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgirepository_internals_la_CFLAGS) $(CFLAGS) -MT libgirepository_internals_la-giroffsets.lo -MD -MP -MF $(DEPDIR)/libgirepository_internals_la-giroffsets.Tpo -c -o libgirepository_internals_la-giroffsets.lo `test -f 'girepository/giroffsets.c' || echo '$(srcdir)/'`girepository/giroffsets.c
 
1774
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_internals_la-giroffsets.Tpo $(DEPDIR)/libgirepository_internals_la-giroffsets.Plo
 
1775
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1776
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/giroffsets.c' object='libgirepository_internals_la-giroffsets.lo' libtool=yes @AMDEPBACKSLASH@
 
1777
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1778
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgirepository_internals_la_CFLAGS) $(CFLAGS) -c -o libgirepository_internals_la-giroffsets.lo `test -f 'girepository/giroffsets.c' || echo '$(srcdir)/'`girepository/giroffsets.c
 
1779
 
 
1780
libgirepository_internals_la-girparser.lo: girepository/girparser.c
 
1781
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgirepository_internals_la_CFLAGS) $(CFLAGS) -MT libgirepository_internals_la-girparser.lo -MD -MP -MF $(DEPDIR)/libgirepository_internals_la-girparser.Tpo -c -o libgirepository_internals_la-girparser.lo `test -f 'girepository/girparser.c' || echo '$(srcdir)/'`girepository/girparser.c
 
1782
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_internals_la-girparser.Tpo $(DEPDIR)/libgirepository_internals_la-girparser.Plo
 
1783
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1784
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/girparser.c' object='libgirepository_internals_la-girparser.lo' libtool=yes @AMDEPBACKSLASH@
 
1785
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1786
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgirepository_internals_la_CFLAGS) $(CFLAGS) -c -o libgirepository_internals_la-girparser.lo `test -f 'girepository/girparser.c' || echo '$(srcdir)/'`girepository/girparser.c
 
1787
 
 
1788
libgirepository_internals_la-girwriter.lo: girepository/girwriter.c
 
1789
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgirepository_internals_la_CFLAGS) $(CFLAGS) -MT libgirepository_internals_la-girwriter.lo -MD -MP -MF $(DEPDIR)/libgirepository_internals_la-girwriter.Tpo -c -o libgirepository_internals_la-girwriter.lo `test -f 'girepository/girwriter.c' || echo '$(srcdir)/'`girepository/girwriter.c
 
1790
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgirepository_internals_la-girwriter.Tpo $(DEPDIR)/libgirepository_internals_la-girwriter.Plo
 
1791
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1792
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/girwriter.c' object='libgirepository_internals_la-girwriter.lo' libtool=yes @AMDEPBACKSLASH@
 
1793
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1794
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgirepository_internals_la_CFLAGS) $(CFLAGS) -c -o libgirepository_internals_la-girwriter.lo `test -f 'girepository/girwriter.c' || echo '$(srcdir)/'`girepository/girwriter.c
 
1795
 
 
1796
libgiscanner_la-sourcescanner.lo: giscanner/sourcescanner.c
 
1797
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgiscanner_la_CPPFLAGS) $(CPPFLAGS) $(libgiscanner_la_CFLAGS) $(CFLAGS) -MT libgiscanner_la-sourcescanner.lo -MD -MP -MF $(DEPDIR)/libgiscanner_la-sourcescanner.Tpo -c -o libgiscanner_la-sourcescanner.lo `test -f 'giscanner/sourcescanner.c' || echo '$(srcdir)/'`giscanner/sourcescanner.c
 
1798
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgiscanner_la-sourcescanner.Tpo $(DEPDIR)/libgiscanner_la-sourcescanner.Plo
 
1799
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1800
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='giscanner/sourcescanner.c' object='libgiscanner_la-sourcescanner.lo' libtool=yes @AMDEPBACKSLASH@
 
1801
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1802
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgiscanner_la_CPPFLAGS) $(CPPFLAGS) $(libgiscanner_la_CFLAGS) $(CFLAGS) -c -o libgiscanner_la-sourcescanner.lo `test -f 'giscanner/sourcescanner.c' || echo '$(srcdir)/'`giscanner/sourcescanner.c
 
1803
 
 
1804
libgiscanner_la-scannerlexer.lo: scannerlexer.c
 
1805
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgiscanner_la_CPPFLAGS) $(CPPFLAGS) $(libgiscanner_la_CFLAGS) $(CFLAGS) -MT libgiscanner_la-scannerlexer.lo -MD -MP -MF $(DEPDIR)/libgiscanner_la-scannerlexer.Tpo -c -o libgiscanner_la-scannerlexer.lo `test -f 'scannerlexer.c' || echo '$(srcdir)/'`scannerlexer.c
 
1806
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgiscanner_la-scannerlexer.Tpo $(DEPDIR)/libgiscanner_la-scannerlexer.Plo
 
1807
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1808
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='scannerlexer.c' object='libgiscanner_la-scannerlexer.lo' libtool=yes @AMDEPBACKSLASH@
 
1809
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1810
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgiscanner_la_CPPFLAGS) $(CPPFLAGS) $(libgiscanner_la_CFLAGS) $(CFLAGS) -c -o libgiscanner_la-scannerlexer.lo `test -f 'scannerlexer.c' || echo '$(srcdir)/'`scannerlexer.c
 
1811
 
 
1812
libgiscanner_la-scannerparser.lo: scannerparser.c
 
1813
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgiscanner_la_CPPFLAGS) $(CPPFLAGS) $(libgiscanner_la_CFLAGS) $(CFLAGS) -MT libgiscanner_la-scannerparser.lo -MD -MP -MF $(DEPDIR)/libgiscanner_la-scannerparser.Tpo -c -o libgiscanner_la-scannerparser.lo `test -f 'scannerparser.c' || echo '$(srcdir)/'`scannerparser.c
 
1814
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgiscanner_la-scannerparser.Tpo $(DEPDIR)/libgiscanner_la-scannerparser.Plo
 
1815
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1816
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='scannerparser.c' object='libgiscanner_la-scannerparser.lo' libtool=yes @AMDEPBACKSLASH@
 
1817
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1818
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgiscanner_la_CPPFLAGS) $(CPPFLAGS) $(libgiscanner_la_CFLAGS) $(CFLAGS) -c -o libgiscanner_la-scannerparser.lo `test -f 'scannerparser.c' || echo '$(srcdir)/'`scannerparser.c
 
1819
 
 
1820
cmph_bdz_test-cmph-bdz-test.o: girepository/cmph-bdz-test.c
 
1821
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cmph_bdz_test_CFLAGS) $(CFLAGS) -MT cmph_bdz_test-cmph-bdz-test.o -MD -MP -MF $(DEPDIR)/cmph_bdz_test-cmph-bdz-test.Tpo -c -o cmph_bdz_test-cmph-bdz-test.o `test -f 'girepository/cmph-bdz-test.c' || echo '$(srcdir)/'`girepository/cmph-bdz-test.c
 
1822
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/cmph_bdz_test-cmph-bdz-test.Tpo $(DEPDIR)/cmph_bdz_test-cmph-bdz-test.Po
 
1823
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1824
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph-bdz-test.c' object='cmph_bdz_test-cmph-bdz-test.o' libtool=no @AMDEPBACKSLASH@
 
1825
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1826
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cmph_bdz_test_CFLAGS) $(CFLAGS) -c -o cmph_bdz_test-cmph-bdz-test.o `test -f 'girepository/cmph-bdz-test.c' || echo '$(srcdir)/'`girepository/cmph-bdz-test.c
 
1827
 
 
1828
cmph_bdz_test-cmph-bdz-test.obj: girepository/cmph-bdz-test.c
 
1829
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cmph_bdz_test_CFLAGS) $(CFLAGS) -MT cmph_bdz_test-cmph-bdz-test.obj -MD -MP -MF $(DEPDIR)/cmph_bdz_test-cmph-bdz-test.Tpo -c -o cmph_bdz_test-cmph-bdz-test.obj `if test -f 'girepository/cmph-bdz-test.c'; then $(CYGPATH_W) 'girepository/cmph-bdz-test.c'; else $(CYGPATH_W) '$(srcdir)/girepository/cmph-bdz-test.c'; fi`
 
1830
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/cmph_bdz_test-cmph-bdz-test.Tpo $(DEPDIR)/cmph_bdz_test-cmph-bdz-test.Po
 
1831
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1832
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/cmph-bdz-test.c' object='cmph_bdz_test-cmph-bdz-test.obj' libtool=no @AMDEPBACKSLASH@
 
1833
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1834
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cmph_bdz_test_CFLAGS) $(CFLAGS) -c -o cmph_bdz_test-cmph-bdz-test.obj `if test -f 'girepository/cmph-bdz-test.c'; then $(CYGPATH_W) 'girepository/cmph-bdz-test.c'; else $(CYGPATH_W) '$(srcdir)/girepository/cmph-bdz-test.c'; fi`
 
1835
 
 
1836
g_ir_compiler-compiler.o: tools/compiler.c
 
1837
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(g_ir_compiler_CPPFLAGS) $(CPPFLAGS) $(g_ir_compiler_CFLAGS) $(CFLAGS) -MT g_ir_compiler-compiler.o -MD -MP -MF $(DEPDIR)/g_ir_compiler-compiler.Tpo -c -o g_ir_compiler-compiler.o `test -f 'tools/compiler.c' || echo '$(srcdir)/'`tools/compiler.c
 
1838
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/g_ir_compiler-compiler.Tpo $(DEPDIR)/g_ir_compiler-compiler.Po
 
1839
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1840
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='tools/compiler.c' object='g_ir_compiler-compiler.o' libtool=no @AMDEPBACKSLASH@
 
1841
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1842
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(g_ir_compiler_CPPFLAGS) $(CPPFLAGS) $(g_ir_compiler_CFLAGS) $(CFLAGS) -c -o g_ir_compiler-compiler.o `test -f 'tools/compiler.c' || echo '$(srcdir)/'`tools/compiler.c
 
1843
 
 
1844
g_ir_compiler-compiler.obj: tools/compiler.c
 
1845
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(g_ir_compiler_CPPFLAGS) $(CPPFLAGS) $(g_ir_compiler_CFLAGS) $(CFLAGS) -MT g_ir_compiler-compiler.obj -MD -MP -MF $(DEPDIR)/g_ir_compiler-compiler.Tpo -c -o g_ir_compiler-compiler.obj `if test -f 'tools/compiler.c'; then $(CYGPATH_W) 'tools/compiler.c'; else $(CYGPATH_W) '$(srcdir)/tools/compiler.c'; fi`
 
1846
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/g_ir_compiler-compiler.Tpo $(DEPDIR)/g_ir_compiler-compiler.Po
 
1847
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1848
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='tools/compiler.c' object='g_ir_compiler-compiler.obj' libtool=no @AMDEPBACKSLASH@
 
1849
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1850
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(g_ir_compiler_CPPFLAGS) $(CPPFLAGS) $(g_ir_compiler_CFLAGS) $(CFLAGS) -c -o g_ir_compiler-compiler.obj `if test -f 'tools/compiler.c'; then $(CYGPATH_W) 'tools/compiler.c'; else $(CYGPATH_W) '$(srcdir)/tools/compiler.c'; fi`
 
1851
 
 
1852
g_ir_generate-generate.o: tools/generate.c
 
1853
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(g_ir_generate_CPPFLAGS) $(CPPFLAGS) $(g_ir_generate_CFLAGS) $(CFLAGS) -MT g_ir_generate-generate.o -MD -MP -MF $(DEPDIR)/g_ir_generate-generate.Tpo -c -o g_ir_generate-generate.o `test -f 'tools/generate.c' || echo '$(srcdir)/'`tools/generate.c
 
1854
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/g_ir_generate-generate.Tpo $(DEPDIR)/g_ir_generate-generate.Po
 
1855
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1856
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='tools/generate.c' object='g_ir_generate-generate.o' libtool=no @AMDEPBACKSLASH@
 
1857
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1858
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(g_ir_generate_CPPFLAGS) $(CPPFLAGS) $(g_ir_generate_CFLAGS) $(CFLAGS) -c -o g_ir_generate-generate.o `test -f 'tools/generate.c' || echo '$(srcdir)/'`tools/generate.c
 
1859
 
 
1860
g_ir_generate-generate.obj: tools/generate.c
 
1861
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(g_ir_generate_CPPFLAGS) $(CPPFLAGS) $(g_ir_generate_CFLAGS) $(CFLAGS) -MT g_ir_generate-generate.obj -MD -MP -MF $(DEPDIR)/g_ir_generate-generate.Tpo -c -o g_ir_generate-generate.obj `if test -f 'tools/generate.c'; then $(CYGPATH_W) 'tools/generate.c'; else $(CYGPATH_W) '$(srcdir)/tools/generate.c'; fi`
 
1862
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/g_ir_generate-generate.Tpo $(DEPDIR)/g_ir_generate-generate.Po
 
1863
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1864
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='tools/generate.c' object='g_ir_generate-generate.obj' libtool=no @AMDEPBACKSLASH@
 
1865
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1866
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(g_ir_generate_CPPFLAGS) $(CPPFLAGS) $(g_ir_generate_CFLAGS) $(CFLAGS) -c -o g_ir_generate-generate.obj `if test -f 'tools/generate.c'; then $(CYGPATH_W) 'tools/generate.c'; else $(CYGPATH_W) '$(srcdir)/tools/generate.c'; fi`
 
1867
 
 
1868
glib_print-glib-print.o: examples/glib-print.c
 
1869
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(glib_print_CFLAGS) $(CFLAGS) -MT glib_print-glib-print.o -MD -MP -MF $(DEPDIR)/glib_print-glib-print.Tpo -c -o glib_print-glib-print.o `test -f 'examples/glib-print.c' || echo '$(srcdir)/'`examples/glib-print.c
 
1870
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/glib_print-glib-print.Tpo $(DEPDIR)/glib_print-glib-print.Po
 
1871
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1872
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='examples/glib-print.c' object='glib_print-glib-print.o' libtool=no @AMDEPBACKSLASH@
 
1873
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1874
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(glib_print_CFLAGS) $(CFLAGS) -c -o glib_print-glib-print.o `test -f 'examples/glib-print.c' || echo '$(srcdir)/'`examples/glib-print.c
 
1875
 
 
1876
glib_print-glib-print.obj: examples/glib-print.c
 
1877
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(glib_print_CFLAGS) $(CFLAGS) -MT glib_print-glib-print.obj -MD -MP -MF $(DEPDIR)/glib_print-glib-print.Tpo -c -o glib_print-glib-print.obj `if test -f 'examples/glib-print.c'; then $(CYGPATH_W) 'examples/glib-print.c'; else $(CYGPATH_W) '$(srcdir)/examples/glib-print.c'; fi`
 
1878
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/glib_print-glib-print.Tpo $(DEPDIR)/glib_print-glib-print.Po
 
1879
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1880
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='examples/glib-print.c' object='glib_print-glib-print.obj' libtool=no @AMDEPBACKSLASH@
 
1881
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1882
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(glib_print_CFLAGS) $(CFLAGS) -c -o glib_print-glib-print.obj `if test -f 'examples/glib-print.c'; then $(CYGPATH_W) 'examples/glib-print.c'; else $(CYGPATH_W) '$(srcdir)/examples/glib-print.c'; fi`
 
1883
 
 
1884
gthash_test-gthash.o: girepository/gthash.c
 
1885
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gthash_test_CFLAGS) $(CFLAGS) -MT gthash_test-gthash.o -MD -MP -MF $(DEPDIR)/gthash_test-gthash.Tpo -c -o gthash_test-gthash.o `test -f 'girepository/gthash.c' || echo '$(srcdir)/'`girepository/gthash.c
 
1886
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/gthash_test-gthash.Tpo $(DEPDIR)/gthash_test-gthash.Po
 
1887
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1888
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gthash.c' object='gthash_test-gthash.o' libtool=no @AMDEPBACKSLASH@
 
1889
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1890
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gthash_test_CFLAGS) $(CFLAGS) -c -o gthash_test-gthash.o `test -f 'girepository/gthash.c' || echo '$(srcdir)/'`girepository/gthash.c
 
1891
 
 
1892
gthash_test-gthash.obj: girepository/gthash.c
 
1893
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gthash_test_CFLAGS) $(CFLAGS) -MT gthash_test-gthash.obj -MD -MP -MF $(DEPDIR)/gthash_test-gthash.Tpo -c -o gthash_test-gthash.obj `if test -f 'girepository/gthash.c'; then $(CYGPATH_W) 'girepository/gthash.c'; else $(CYGPATH_W) '$(srcdir)/girepository/gthash.c'; fi`
 
1894
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/gthash_test-gthash.Tpo $(DEPDIR)/gthash_test-gthash.Po
 
1895
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1896
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gthash.c' object='gthash_test-gthash.obj' libtool=no @AMDEPBACKSLASH@
 
1897
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1898
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gthash_test_CFLAGS) $(CFLAGS) -c -o gthash_test-gthash.obj `if test -f 'girepository/gthash.c'; then $(CYGPATH_W) 'girepository/gthash.c'; else $(CYGPATH_W) '$(srcdir)/girepository/gthash.c'; fi`
 
1899
 
 
1900
gthash_test-gthash-test.o: girepository/gthash-test.c
 
1901
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gthash_test_CFLAGS) $(CFLAGS) -MT gthash_test-gthash-test.o -MD -MP -MF $(DEPDIR)/gthash_test-gthash-test.Tpo -c -o gthash_test-gthash-test.o `test -f 'girepository/gthash-test.c' || echo '$(srcdir)/'`girepository/gthash-test.c
 
1902
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/gthash_test-gthash-test.Tpo $(DEPDIR)/gthash_test-gthash-test.Po
 
1903
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1904
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gthash-test.c' object='gthash_test-gthash-test.o' libtool=no @AMDEPBACKSLASH@
 
1905
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1906
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gthash_test_CFLAGS) $(CFLAGS) -c -o gthash_test-gthash-test.o `test -f 'girepository/gthash-test.c' || echo '$(srcdir)/'`girepository/gthash-test.c
 
1907
 
 
1908
gthash_test-gthash-test.obj: girepository/gthash-test.c
 
1909
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gthash_test_CFLAGS) $(CFLAGS) -MT gthash_test-gthash-test.obj -MD -MP -MF $(DEPDIR)/gthash_test-gthash-test.Tpo -c -o gthash_test-gthash-test.obj `if test -f 'girepository/gthash-test.c'; then $(CYGPATH_W) 'girepository/gthash-test.c'; else $(CYGPATH_W) '$(srcdir)/girepository/gthash-test.c'; fi`
 
1910
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/gthash_test-gthash-test.Tpo $(DEPDIR)/gthash_test-gthash-test.Po
 
1911
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
1912
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='girepository/gthash-test.c' object='gthash_test-gthash-test.obj' libtool=no @AMDEPBACKSLASH@
 
1913
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1914
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gthash_test_CFLAGS) $(CFLAGS) -c -o gthash_test-gthash-test.obj `if test -f 'girepository/gthash-test.c'; then $(CYGPATH_W) 'girepository/gthash-test.c'; else $(CYGPATH_W) '$(srcdir)/girepository/gthash-test.c'; fi`
 
1915
 
 
1916
.l.c:
 
1917
        $(AM_V_LEX)$(am__skiplex) $(SHELL) $(YLWRAP) $< $(LEX_OUTPUT_ROOT).c $@ -- $(LEXCOMPILE)
 
1918
 
 
1919
scannerlexer.c: giscanner/scannerlexer.l
 
1920
        $(AM_V_LEX) \
 
1921
        $(am__skiplex) \
 
1922
        $(SHELL) $(YLWRAP) `test -f 'giscanner/scannerlexer.l' || echo '$(srcdir)/'`giscanner/scannerlexer.l $(LEX_OUTPUT_ROOT).c scannerlexer.c -- $(LEX) $(LFLAGS) $(AM_LFLAGS)
 
1923
 
 
1924
.y.c:
 
1925
        $(AM_V_YACC)$(am__skipyacc) $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h $*.h y.output $*.output -- $(YACCCOMPILE)
 
1926
 
 
1927
scannerparser.c: giscanner/scannerparser.y
 
1928
        $(AM_V_YACC) \
 
1929
        $(am__skipyacc) \
 
1930
        $(SHELL) $(YLWRAP) `test -f 'giscanner/scannerparser.y' || echo '$(srcdir)/'`giscanner/scannerparser.y y.tab.c scannerparser.c y.tab.h scannerparser.h y.output scannerparser.output -- $(YACC) $(YFLAGS) $(AM_YFLAGS)
 
1931
 
390
1932
mostlyclean-libtool:
391
1933
        -rm -f *.lo
392
1934
 
395
1937
 
396
1938
distclean-libtool:
397
1939
        -rm -f libtool config.lt
 
1940
install-pkgpyexecPYTHON: $(pkgpyexec_PYTHON)
 
1941
        @$(NORMAL_INSTALL)
 
1942
        test -z "$(pkgpyexecdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgpyexecdir)"
 
1943
        @list='$(pkgpyexec_PYTHON)'; dlist=; list2=; test -n "$(pkgpyexecdir)" || list=; \
 
1944
        for p in $$list; do \
 
1945
          if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \
 
1946
          if test -f $$b$$p; then \
 
1947
            $(am__strip_dir) \
 
1948
            dlist="$$dlist $$f"; \
 
1949
            list2="$$list2 $$b$$p"; \
 
1950
          else :; fi; \
 
1951
        done; \
 
1952
        for file in $$list2; do echo $$file; done | $(am__base_list) | \
 
1953
        while read files; do \
 
1954
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgpyexecdir)'"; \
 
1955
          $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgpyexecdir)" || exit $$?; \
 
1956
        done || exit $$?; \
 
1957
        if test -n "$$dlist"; then \
 
1958
          if test -z "$(DESTDIR)"; then \
 
1959
            PYTHON=$(PYTHON) $(py_compile) --basedir "$(pkgpyexecdir)" $$dlist; \
 
1960
          else \
 
1961
            PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(pkgpyexecdir)" $$dlist; \
 
1962
          fi; \
 
1963
        else :; fi
 
1964
 
 
1965
uninstall-pkgpyexecPYTHON:
 
1966
        @$(NORMAL_UNINSTALL)
 
1967
        @list='$(pkgpyexec_PYTHON)'; test -n "$(pkgpyexecdir)" || list=; \
 
1968
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 
1969
        test -n "$$files" || exit 0; \
 
1970
        filesc=`echo "$$files" | sed 's|$$|c|'`; \
 
1971
        fileso=`echo "$$files" | sed 's|$$|o|'`; \
 
1972
        echo " ( cd '$(DESTDIR)$(pkgpyexecdir)' && rm -f" $$files ")"; \
 
1973
        cd "$(DESTDIR)$(pkgpyexecdir)" && rm -f $$files || exit $$?; \
 
1974
        echo " ( cd '$(DESTDIR)$(pkgpyexecdir)' && rm -f" $$filesc ")"; \
 
1975
        cd "$(DESTDIR)$(pkgpyexecdir)" && rm -f $$filesc || exit $$?; \
 
1976
        echo " ( cd '$(DESTDIR)$(pkgpyexecdir)' && rm -f" $$fileso ")"; \
 
1977
        cd "$(DESTDIR)$(pkgpyexecdir)" && rm -f $$fileso
398
1978
install-man1: $(man_MANS)
399
1979
        @$(NORMAL_INSTALL)
400
1980
        test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)"
453
2033
        test -n "$$files" || exit 0; \
454
2034
        echo " ( cd '$(DESTDIR)$(makedir)' && rm -f" $$files ")"; \
455
2035
        cd "$(DESTDIR)$(makedir)" && rm -f $$files
 
2036
install-gdumpDATA: $(gdump_DATA)
 
2037
        @$(NORMAL_INSTALL)
 
2038
        test -z "$(gdumpdir)" || $(MKDIR_P) "$(DESTDIR)$(gdumpdir)"
 
2039
        @list='$(gdump_DATA)'; test -n "$(gdumpdir)" || list=; \
 
2040
        for p in $$list; do \
 
2041
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
2042
          echo "$$d$$p"; \
 
2043
        done | $(am__base_list) | \
 
2044
        while read files; do \
 
2045
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(gdumpdir)'"; \
 
2046
          $(INSTALL_DATA) $$files "$(DESTDIR)$(gdumpdir)" || exit $$?; \
 
2047
        done
 
2048
 
 
2049
uninstall-gdumpDATA:
 
2050
        @$(NORMAL_UNINSTALL)
 
2051
        @list='$(gdump_DATA)'; test -n "$(gdumpdir)" || list=; \
 
2052
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 
2053
        test -n "$$files" || exit 0; \
 
2054
        echo " ( cd '$(DESTDIR)$(gdumpdir)' && rm -f" $$files ")"; \
 
2055
        cd "$(DESTDIR)$(gdumpdir)" && rm -f $$files
 
2056
install-girDATA: $(gir_DATA)
 
2057
        @$(NORMAL_INSTALL)
 
2058
        test -z "$(girdir)" || $(MKDIR_P) "$(DESTDIR)$(girdir)"
 
2059
        @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
 
2060
        for p in $$list; do \
 
2061
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
2062
          echo "$$d$$p"; \
 
2063
        done | $(am__base_list) | \
 
2064
        while read files; do \
 
2065
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(girdir)'"; \
 
2066
          $(INSTALL_DATA) $$files "$(DESTDIR)$(girdir)" || exit $$?; \
 
2067
        done
 
2068
 
 
2069
uninstall-girDATA:
 
2070
        @$(NORMAL_UNINSTALL)
 
2071
        @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
 
2072
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 
2073
        test -n "$$files" || exit 0; \
 
2074
        echo " ( cd '$(DESTDIR)$(girdir)' && rm -f" $$files ")"; \
 
2075
        cd "$(DESTDIR)$(girdir)" && rm -f $$files
456
2076
install-m4DATA: $(m4_DATA)
457
2077
        @$(NORMAL_INSTALL)
458
2078
        test -z "$(m4dir)" || $(MKDIR_P) "$(DESTDIR)$(m4dir)"
493
2113
        test -n "$$files" || exit 0; \
494
2114
        echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
495
2115
        cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
 
2116
install-typelibsDATA: $(typelibs_DATA)
 
2117
        @$(NORMAL_INSTALL)
 
2118
        test -z "$(typelibsdir)" || $(MKDIR_P) "$(DESTDIR)$(typelibsdir)"
 
2119
        @list='$(typelibs_DATA)'; test -n "$(typelibsdir)" || list=; \
 
2120
        for p in $$list; do \
 
2121
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
2122
          echo "$$d$$p"; \
 
2123
        done | $(am__base_list) | \
 
2124
        while read files; do \
 
2125
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(typelibsdir)'"; \
 
2126
          $(INSTALL_DATA) $$files "$(DESTDIR)$(typelibsdir)" || exit $$?; \
 
2127
        done
 
2128
 
 
2129
uninstall-typelibsDATA:
 
2130
        @$(NORMAL_UNINSTALL)
 
2131
        @list='$(typelibs_DATA)'; test -n "$(typelibsdir)" || list=; \
 
2132
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 
2133
        test -n "$$files" || exit 0; \
 
2134
        echo " ( cd '$(DESTDIR)$(typelibsdir)' && rm -f" $$files ")"; \
 
2135
        cd "$(DESTDIR)$(typelibsdir)" && rm -f $$files
 
2136
install-girepoHEADERS: $(girepo_HEADERS)
 
2137
        @$(NORMAL_INSTALL)
 
2138
        test -z "$(girepodir)" || $(MKDIR_P) "$(DESTDIR)$(girepodir)"
 
2139
        @list='$(girepo_HEADERS)'; test -n "$(girepodir)" || list=; \
 
2140
        for p in $$list; do \
 
2141
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
2142
          echo "$$d$$p"; \
 
2143
        done | $(am__base_list) | \
 
2144
        while read files; do \
 
2145
          echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(girepodir)'"; \
 
2146
          $(INSTALL_HEADER) $$files "$(DESTDIR)$(girepodir)" || exit $$?; \
 
2147
        done
 
2148
 
 
2149
uninstall-girepoHEADERS:
 
2150
        @$(NORMAL_UNINSTALL)
 
2151
        @list='$(girepo_HEADERS)'; test -n "$(girepodir)" || list=; \
 
2152
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 
2153
        test -n "$$files" || exit 0; \
 
2154
        echo " ( cd '$(DESTDIR)$(girepodir)' && rm -f" $$files ")"; \
 
2155
        cd "$(DESTDIR)$(girepodir)" && rm -f $$files
496
2156
 
497
2157
# This directory's subdirectories are mostly independent; you can cd
498
2158
# into them and run `make' without going through this Makefile.
712
2372
dist-gzip: distdir
713
2373
        tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
714
2374
        $(am__remove_distdir)
715
 
 
716
2375
dist-bzip2: distdir
717
2376
        tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
718
2377
        $(am__remove_distdir)
739
2398
        $(am__remove_distdir)
740
2399
 
741
2400
dist dist-all: distdir
742
 
        tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
 
2401
        tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
743
2402
        $(am__remove_distdir)
744
2403
 
745
2404
# This target untars the dist file and tries a VPATH configuration.  Then
818
2477
               $(distcleancheck_listfiles) ; \
819
2478
               exit 1; } >&2
820
2479
check-am: all-am
 
2480
        $(MAKE) $(AM_MAKEFLAGS) $(check_LTLIBRARIES) $(check_PROGRAMS)
821
2481
        $(MAKE) $(AM_MAKEFLAGS) check-local
822
 
check: check-recursive
823
 
all-am: Makefile $(MANS) $(DATA) config.h
 
2482
check: $(BUILT_SOURCES)
 
2483
        $(MAKE) $(AM_MAKEFLAGS) check-recursive
 
2484
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(MANS) $(DATA) \
 
2485
                $(HEADERS) config.h
 
2486
install-binPROGRAMS: install-libLTLIBRARIES
 
2487
 
824
2488
installdirs: installdirs-recursive
825
2489
installdirs-am:
826
 
        for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(makedir)" "$(DESTDIR)$(m4dir)" "$(DESTDIR)$(pkgconfigdir)"; do \
 
2490
        for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgpyexecdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgpyexecdir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(makedir)" "$(DESTDIR)$(gdumpdir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(m4dir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(typelibsdir)" "$(DESTDIR)$(girepodir)"; do \
827
2491
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
828
2492
        done
829
 
install: install-recursive
 
2493
install: $(BUILT_SOURCES)
 
2494
        $(MAKE) $(AM_MAKEFLAGS) install-recursive
830
2495
install-exec: install-exec-recursive
831
2496
install-data: install-data-recursive
832
2497
uninstall: uninstall-recursive
843
2508
mostlyclean-generic:
844
2509
 
845
2510
clean-generic:
 
2511
        -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
846
2512
 
847
2513
distclean-generic:
848
2514
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
851
2517
maintainer-clean-generic:
852
2518
        @echo "This command is intended for maintainers to use"
853
2519
        @echo "it deletes files that may require special tools to rebuild."
 
2520
        -rm -f scannerlexer.c
 
2521
        -rm -f scannerparser.c
 
2522
        -rm -f scannerparser.h
 
2523
        -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
 
2524
@OS_WIN32_FALSE@install-exec-hook:
854
2525
clean: clean-recursive
855
2526
 
856
 
clean-am: clean-generic clean-libtool mostlyclean-am
 
2527
clean-am: clean-binPROGRAMS clean-checkLTLIBRARIES clean-checkPROGRAMS \
 
2528
        clean-generic clean-libLTLIBRARIES clean-libtool \
 
2529
        clean-noinstLTLIBRARIES clean-noinstPROGRAMS \
 
2530
        clean-pkgpyexecLTLIBRARIES mostlyclean-am
857
2531
 
858
2532
distclean: distclean-recursive
859
2533
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
 
2534
        -rm -rf ./$(DEPDIR)
860
2535
        -rm -f Makefile
861
 
distclean-am: clean-am distclean-generic distclean-hdr \
862
 
        distclean-libtool distclean-tags
 
2536
distclean-am: clean-am distclean-compile distclean-generic \
 
2537
        distclean-hdr distclean-libtool distclean-tags
863
2538
 
864
2539
dvi: dvi-recursive
865
2540
 
873
2548
 
874
2549
info-am:
875
2550
 
876
 
install-data-am: install-dist_makeDATA install-m4DATA install-man \
877
 
        install-pkgconfigDATA
 
2551
install-data-am: install-dist_makeDATA install-gdumpDATA \
 
2552
        install-girDATA install-girepoHEADERS install-m4DATA \
 
2553
        install-man install-pkgconfigDATA install-typelibsDATA
878
2554
 
879
2555
install-dvi: install-dvi-recursive
880
2556
 
881
2557
install-dvi-am:
882
2558
 
883
 
install-exec-am:
884
 
 
 
2559
install-exec-am: install-binPROGRAMS install-binSCRIPTS \
 
2560
        install-libLTLIBRARIES install-pkgpyexecLTLIBRARIES \
 
2561
        install-pkgpyexecPYTHON
 
2562
        @$(NORMAL_INSTALL)
 
2563
        $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
885
2564
install-html: install-html-recursive
886
2565
 
887
2566
install-html-am:
905
2584
maintainer-clean: maintainer-clean-recursive
906
2585
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
907
2586
        -rm -rf $(top_srcdir)/autom4te.cache
 
2587
        -rm -rf ./$(DEPDIR)
908
2588
        -rm -f Makefile
909
2589
maintainer-clean-am: distclean-am maintainer-clean-generic
910
2590
 
911
2591
mostlyclean: mostlyclean-recursive
912
2592
 
913
 
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 
2593
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
 
2594
        mostlyclean-libtool
914
2595
 
915
2596
pdf: pdf-recursive
916
2597
 
920
2601
 
921
2602
ps-am:
922
2603
 
923
 
uninstall-am: uninstall-dist_makeDATA uninstall-m4DATA uninstall-man \
924
 
        uninstall-pkgconfigDATA
 
2604
uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \
 
2605
        uninstall-dist_makeDATA uninstall-gdumpDATA uninstall-girDATA \
 
2606
        uninstall-girepoHEADERS uninstall-libLTLIBRARIES \
 
2607
        uninstall-m4DATA uninstall-man uninstall-pkgconfigDATA \
 
2608
        uninstall-pkgpyexecLTLIBRARIES uninstall-pkgpyexecPYTHON \
 
2609
        uninstall-typelibsDATA
925
2610
 
926
2611
uninstall-man: uninstall-man1
927
2612
 
928
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check-am \
929
 
        ctags-recursive install-am install-strip tags-recursive
 
2613
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \
 
2614
        check-am ctags-recursive install install-am install-exec-am \
 
2615
        install-strip tags-recursive
930
2616
 
931
2617
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
932
2618
        all all-am am--refresh check check-am check-local clean \
933
 
        clean-generic clean-libtool ctags ctags-recursive dist \
934
 
        dist-all dist-bzip2 dist-gzip dist-lzma dist-shar dist-tarZ \
935
 
        dist-xz dist-zip distcheck distclean distclean-generic \
936
 
        distclean-hdr distclean-libtool distclean-tags distcleancheck \
937
 
        distdir distuninstallcheck dvi dvi-am html html-am info \
938
 
        info-am install install-am install-data install-data-am \
939
 
        install-dist_makeDATA install-dvi install-dvi-am install-exec \
940
 
        install-exec-am install-html install-html-am install-info \
941
 
        install-info-am install-m4DATA install-man install-man1 \
942
 
        install-pdf install-pdf-am install-pkgconfigDATA install-ps \
943
 
        install-ps-am install-strip installcheck installcheck-am \
944
 
        installdirs installdirs-am maintainer-clean \
945
 
        maintainer-clean-generic mostlyclean mostlyclean-generic \
946
 
        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
947
 
        uninstall uninstall-am uninstall-dist_makeDATA \
 
2619
        clean-binPROGRAMS clean-checkLTLIBRARIES clean-checkPROGRAMS \
 
2620
        clean-generic clean-libLTLIBRARIES clean-libtool \
 
2621
        clean-noinstLTLIBRARIES clean-noinstPROGRAMS \
 
2622
        clean-pkgpyexecLTLIBRARIES ctags ctags-recursive dist dist-all \
 
2623
        dist-bzip2 dist-gzip dist-lzma dist-shar dist-tarZ dist-xz \
 
2624
        dist-zip distcheck distclean distclean-compile \
 
2625
        distclean-generic distclean-hdr distclean-libtool \
 
2626
        distclean-tags distcleancheck distdir distuninstallcheck dvi \
 
2627
        dvi-am html html-am info info-am install install-am \
 
2628
        install-binPROGRAMS install-binSCRIPTS install-data \
 
2629
        install-data-am install-dist_makeDATA install-dvi \
 
2630
        install-dvi-am install-exec install-exec-am install-exec-hook \
 
2631
        install-gdumpDATA install-girDATA install-girepoHEADERS \
 
2632
        install-html install-html-am install-info install-info-am \
 
2633
        install-libLTLIBRARIES install-m4DATA install-man install-man1 \
 
2634
        install-pdf install-pdf-am install-pkgconfigDATA \
 
2635
        install-pkgpyexecLTLIBRARIES install-pkgpyexecPYTHON \
 
2636
        install-ps install-ps-am install-strip install-typelibsDATA \
 
2637
        installcheck installcheck-am installdirs installdirs-am \
 
2638
        maintainer-clean maintainer-clean-generic mostlyclean \
 
2639
        mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
 
2640
        pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
 
2641
        uninstall-binPROGRAMS uninstall-binSCRIPTS \
 
2642
        uninstall-dist_makeDATA uninstall-gdumpDATA uninstall-girDATA \
 
2643
        uninstall-girepoHEADERS uninstall-libLTLIBRARIES \
948
2644
        uninstall-m4DATA uninstall-man uninstall-man1 \
949
 
        uninstall-pkgconfigDATA
950
 
 
951
 
 
952
 
release-tag:
953
 
        @TAG=`echo $(VERSION)|sed s/\\\./_/g`;\
954
 
          echo "* Tagging $(VERSION)"; \
955
 
          git tag -s -m "Tag $$VERSION" -a \
956
 
              GOBJECT_INTROSPECTION_$$TAG && \
957
 
              git push --tags ssh://git.gnome.org/git/gobject-introspection
958
 
 
959
 
upload-release: $(distdir).tar.gz
960
 
        scp $(distdir).tar.gz gnome.org:
961
 
        ssh gnome.org install-module $(distdir).tar.gz
 
2645
        uninstall-pkgconfigDATA uninstall-pkgpyexecLTLIBRARIES \
 
2646
        uninstall-pkgpyexecPYTHON uninstall-typelibsDATA
 
2647
 
 
2648
 
 
2649
# Make sure the required variables are set, these should under normal
 
2650
# circumstances come from introspection.m4
 
2651
$(if $(INTROSPECTION_SCANNER),,$(error Need to define INTROSPECTION_SCANNER))
 
2652
$(if $(INTROSPECTION_COMPILER),,$(error Need to define INTROSPECTION_COMPILER))
 
2653
 
 
2654
#
 
2655
# Creates a GIR by scanning C headers/sources
 
2656
# $(1) - Name of the gir file (output)
 
2657
#
 
2658
# If output is Gtk-2.0.gir then you should name the variables like
 
2659
# Gtk_2_0_gir_NAMESPACE, Gtk_2_0_gir_VERSION etc.
 
2660
# Required variables:
 
2661
# FILES - C sources and headers which should be scanned
 
2662
#
 
2663
# One of these variables are required:
 
2664
# LIBS - Library where the symbol represented in the gir can be found
 
2665
# PROGRAM - Program where the symbol represented in the gir can be found
 
2666
#
 
2667
# Optional variables
 
2668
# NAMESPACE - Namespace of the gir, first letter capital,
 
2669
#   rest should be lower case, for instance: 'Gtk', 'Clutter', 'ClutterGtk'.
 
2670
#   If not present the namespace will be fetched from the gir filename,
 
2671
#   the part before the first dash. For 'Gtk-2.0', namespace will be 'Gtk'.
 
2672
# VERSION - Version of the gir, if not present, will be fetched from gir
 
2673
# filename, the part after the first dash. For 'Gtk-2.0', version will be '2.0'.
 
2674
# LIBTOOL - Command to invoke libtool, usually set by automake
 
2675
# SCANNERFLAGS - Flags to pass in to the scanner, see g-ir-scanner(1) for a list
 
2676
# CFLAGS - Flags to pass in to the parser when scanning headers
 
2677
# LDFLAGS - Linker flags used by the scanner
 
2678
# PACKAGES - list of pkg-config names which cflags are required to parse
 
2679
#   the headers of this gir
 
2680
# INCLUDES - Gir files to include without the .gir suffix, for instance
 
2681
#   GLib-2.0, Gtk-2.0. This is needed for all libraries which you depend on that
 
2682
#   provides introspection information.
 
2683
# EXPORT_PACKAGES - list of pkg-config names that are provided by this gir.
 
2684
#   By default the names in the PACKAGES variable will be used.
 
2685
#
 
2686
 
 
2687
define introspection-scanner
 
2688
 
 
2689
# Basic sanity check, to make sure required variables are set
 
2690
$(if $($(_gir_name)_FILES),,$(error Need to define $(_gir_name)_FILES))
 
2691
$(if $(or $($(_gir_name)_LIBS),
 
2692
          $($(_gir_name)_PROGRAM)),,
 
2693
    $(error Need to define $(_gir_name)_LIBS or $(_gir_name)_PROGRAM))
 
2694
 
 
2695
# Only dependencies we know are actually filenames goes into _FILES, make
 
2696
# sure these are built before running the scanner. Libraries and programs
 
2697
# needs to be added manually.
 
2698
$(1): $$($(_gir_name)_FILES)
 
2699
        $(_gir_silent_scanner_prefix) $(INTROSPECTION_SCANNER) $(_gir_silent_scanner_opts) \
 
2700
        $(INTROSPECTION_SCANNER_ARGS) \
 
2701
          --namespace=$(_gir_namespace) \
 
2702
          --nsversion=$(_gir_version) \
 
2703
          $(_gir_libtool) \
 
2704
          $(_gir_packages) \
 
2705
          $(_gir_includes) \
 
2706
          $(_gir_export_packages) \
 
2707
          $(_gir_program) \
 
2708
          $(_gir_libraries) \
 
2709
          $($(_gir_name)_SCANNERFLAGS) \
 
2710
          $($(_gir_name)_CFLAGS) \
 
2711
          $($(_gir_name)_LDFLAGS) \
 
2712
          $$^ \
 
2713
          --output $(1)
 
2714
endef
 
2715
 
 
2716
$(foreach gir,$(INTROSPECTION_GIRS),$(eval $(call introspection-scanner,$(gir))))
 
2717
 
 
2718
#
 
2719
# Compiles a gir into a typelib
 
2720
# $(1): gir filename (input)
 
2721
# $(2): typelib filename (output)
 
2722
#
 
2723
define introspection-compiler
 
2724
$(_gir_silent_compiler) $(INTROSPECTION_COMPILER) $(INTROSPECTION_COMPILER_ARGS) --includedir=. $(1) -o $(2)
 
2725
endef
 
2726
 
 
2727
# Simple rule to compile a typelib.
 
2728
%.typelib: %.gir
 
2729
        $(call introspection-compiler,$<,$@)
 
2730
 
 
2731
# Why do I have to do this automake?
 
2732
scannerlexer.h: giscanner/scannerlexer.c
 
2733
 
 
2734
@OS_WIN32_TRUE@_giscanner.pyd: _giscanner.la
 
2735
@OS_WIN32_TRUE@ cp .libs/_giscanner.dll $@
 
2736
 
 
2737
@OS_WIN32_TRUE@install-exec-hook:
 
2738
@OS_WIN32_TRUE@ mv $(pkgpyexecdir)/_giscanner.dll $(pkgpyexecdir)/_giscanner.pyd
 
2739
@OS_WIN32_TRUE@ rm $(pkgpyexecdir)/_giscanner.dll.a
 
2740
@OS_WIN32_TRUE@ rm $(pkgpyexecdir)/_giscanner.la
 
2741
 
 
2742
# Doesn't seem to work to do gir/%.typelib =(
 
2743
gir/cairo-1.0.typelib: g-ir-compiler
 
2744
gir/DBus-1.0.typelib: g-ir-compiler
 
2745
gir/DBusGLib-1.0.typelib: g-ir-compiler
 
2746
gir/fontconfig-2.0.typelib: g-ir-compiler
 
2747
gir/freetype2-2.0.typelib: g-ir-compiler
 
2748
gir/GL-1.0.typelib: g-ir-compiler
 
2749
gir/libxml2-2.0.typelib: g-ir-compiler
 
2750
gir/xft-2.0.typelib: g-ir-compiler
 
2751
gir/xlib-2.0.typelib: g-ir-compiler
 
2752
gir/xfixes-4.0.typelib: g-ir-compiler
 
2753
gir/xrandr-1.3.typelib: g-ir-compiler
 
2754
 
 
2755
GLib-2.0.gir: g-ir-scanner g-ir-compiler
 
2756
 
 
2757
gir/DBusGLib-1.0.typelib: GObject-2.0.gir
 
2758
 
 
2759
GObject-2.0.gir: GLib-2.0.gir
 
2760
 
 
2761
GModule-2.0.gir: GLib-2.0.gir
 
2762
 
 
2763
Gio-2.0.gir: GObject-2.0.gir
 
2764
 
 
2765
# girepository
 
2766
GIRepository-2.0.gir: GObject-2.0.gir libgirepository-1.0.la
 
2767
 
 
2768
g-ir-scanner: tools/g-ir-scanner.in _giscanner.la Makefile
 
2769
        $(AM_V_GEN) sed -e s,@libdir\@,$(libdir), -e s,@PYTHON\@,$(PYTHON), $< > $@.tmp && mv $@.tmp $@
 
2770
        @chmod a+x $@
 
2771
 
 
2772
g-ir-annotation-tool: tools/g-ir-annotation-tool.in _giscanner.la Makefile
 
2773
        $(AM_V_GEN) sed -e s,@libdir\@,$(libdir), -e s,@PYTHON\@,$(PYTHON), $< > $@.tmp && mv $@.tmp $@
 
2774
        @chmod a+x $@
 
2775
 
 
2776
release: $(distdir).tar.bz2
 
2777
        @python <<EOF \
 
2778
import re; import os; \
 
2779
f = open('configure.ac'); \
 
2780
newf = open('configure.ac.new', 'w') \
 
2781
r = re.compile('(m4_define.*gi_micro_version, ([0-9]+)') \
 
2782
for line in f: \
 
2783
  m = r.match(line) \
 
2784
  if not m: \
 
2785
    newf.write(line) \
 
2786
  v = m.group(1); \
 
2787
  newv = v+1; \
 
2788
  print \"Updating micro version from %s to %s\" % (v, newv); \
 
2789
  newf.write('m4_define(gi_micro_version, %d)\n' % (newv, )); \
 
2790
newf.close(); \
 
2791
os.rename('configure.ac.new', 'configure.ac'); \
 
2792
print "Successfully wrote new 'configure.ac'" \
 
2793
EOF
 
2794
        TAG=`echo $(VERSION)|sed s/\\\./_/g`;\
 
2795
        git tag -m "Tag $$VERSION" -a GOBJECT_INTROSPECTION_$$TAG HEAD
 
2796
 
 
2797
release-push: $(distdir).tar.bz2
 
2798
        @echo "Will push the following:"
 
2799
        git log origin/master..
 
2800
        @echo -n "Ok? [y/N] "
 
2801
        @read answer ; test answer == 'y' || exit 1
 
2802
        git push --tags origin master
 
2803
        scp $(distdir).tar.bz2 gnome.org:
 
2804
        ssh gnome.org install-module $(distdir).tar.bz2
962
2805
 
963
2806
check-local:
 
2807
        gtester --verbose $(GTESTER_PROGS)
 
2808
        @test ! -d $(top_srcdir)/.git || (test -f .git/hooks/pre-commit || (echo -e "ERROR: missing \
 
2809
        pre-commit hook.\n\ncopy misc/pre-commit to .git/hooks"; false))
 
2810
        @test ! -d $(top_srcdir)/.git || (test -x .git/hooks/pre-commit || (echo -e "ERROR: pre-commit \
 
2811
        is not executable\n\nrun chmod +x .git/hooks/pre-commit"; false))
964
2812
        @echo "  PEP-8 INQUISITION"
965
2813
        @find $(top_srcdir)/giscanner -name \*.py | sort | uniq | xargs $(PYTHON) $(top_srcdir)/misc/pep8.py --repeat --exclude=config.py
 
2814
 
 
2815
check-pyflakes:
966
2816
        @echo "  CHECK Pyflakes"
967
2817
        @find $(top_srcdir)/giscanner -name \*.py | sort | uniq | xargs $(PYTHON) $(top_srcdir)/misc/pyflakes.py
968
2818