Replace generate-constants which runs on the host and will generate wrong
[openwrt/svn-archive/archive.git] / lang / pygobject / patches / 010-binary-constants-module.patch
1 diff --git a/gobject/Makefile.am b/gobject/Makefile.am
2 index 94cafc7..96e16e8 100644
3 --- a/gobject/Makefile.am
4 +++ b/gobject/Makefile.am
5 @@ -13,7 +13,7 @@ pygobject_PYTHON = \
6 __init__.py \
7 option.py \
8 propertyhelper.py
9 -pygobject_LTLIBRARIES = _gobject.la
10 +pygobject_LTLIBRARIES = _constants.la _gobject.la
11 nodist_pygobject_PYTHON = constants.py
12
13 common_ldflags = -module -avoid-version
14 @@ -21,18 +21,13 @@ if PLATFORM_WIN32
15 common_ldflags += -no-undefined
16 endif
17
18 -constants.py: generate-constants$(EXEEXT) constants.py.in
19 - rm -f constants.py
20 - cp $(srcdir)/constants.py.in constants.py
21 - chmod 644 constants.py
22 - $(top_builddir)/gobject/generate-constants$(EXEEXT) >> constants.py
23 - chmod 444 constants.py
24 -
25 -generate_constants_CFLAGS = $(GLIB_CFLAGS)
26 -noinst_PROGRAMS = generate-constants
27 CLEANFILES = constants.py
28 EXTRA_DIST = constants.py.in
29
30 +_constants_la_CFLAGS = $(GLIB_CFLAGS)
31 +_constants_la_LDFLAGS = $(common_ldflags) -export-symbols-regex init_constants
32 +_constants_la_SOURCES = _constants.c
33 +
34 _gobject_la_CFLAGS = $(GLIB_CFLAGS)
35 _gobject_la_LDFLAGS = $(common_ldflags) -export-symbols-regex init_gobject
36 _gobject_la_LIBADD = $(GLIB_LIBS) $(FFI_LIBS)
37 diff --git a/gobject/Makefile.in b/gobject/Makefile.in
38 index 55899a3..c2dd358 100644
39 --- a/gobject/Makefile.in
40 +++ b/gobject/Makefile.in
41 @@ -1,8 +1,8 @@
42 -# Makefile.in generated by automake 1.10.1 from Makefile.am.
43 +# Makefile.in generated by automake 1.9.6 from Makefile.am.
44 # @configure_input@
45
46 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
47 -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
48 +# 2003, 2004, 2005 Free Software Foundation, Inc.
49 # This Makefile.in is free software; the Free Software Foundation
50 # gives unlimited permission to copy and/or distribute it,
51 # with or without modifications, as long as this notice is preserved.
52 @@ -15,11 +15,14 @@
53 @SET_MAKE@
54
55
56 -
57 +srcdir = @srcdir@
58 +top_srcdir = @top_srcdir@
59 VPATH = @srcdir@
60 pkgdatadir = $(datadir)/@PACKAGE@
61 pkglibdir = $(libdir)/@PACKAGE@
62 +top_builddir = ..
63 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
64 +INSTALL = @INSTALL@
65 install_sh_DATA = $(install_sh) -c -m 644
66 install_sh_PROGRAM = $(install_sh) -c
67 install_sh_SCRIPT = $(install_sh) -c
68 @@ -34,7 +37,6 @@ POST_UNINSTALL = :
69 build_triplet = @build@
70 host_triplet = @host@
71 @PLATFORM_WIN32_TRUE@am__append_1 = -no-undefined
72 -noinst_PROGRAMS = generate-constants$(EXEEXT)
73 @HAVE_LIBFFI_TRUE@am__append_2 = ffi-marshaller.c ffi-marshaller.h
74 @PLATFORM_WIN32_TRUE@am__append_3 = -DPLATFORM_WIN32
75 subdir = gobject
76 @@ -60,6 +62,9 @@ am__installdirs = "$(DESTDIR)$(pygobjectdir)" \
77 "$(DESTDIR)$(pkgincludedir)"
78 pygobjectLTLIBRARIES_INSTALL = $(INSTALL)
79 LTLIBRARIES = $(pygobject_LTLIBRARIES)
80 +_constants_la_LIBADD =
81 +am__constants_la_OBJECTS = _constants_la-_constants.lo
82 +_constants_la_OBJECTS = $(am__constants_la_OBJECTS)
83 am__DEPENDENCIES_1 =
84 am___gobject_la_SOURCES_DIST = gobjectmodule.c pygboxed.c pygenum.c \
85 pygflags.c pygobject.c pygobject.h pygobject-private.h \
86 @@ -76,32 +81,20 @@ am__gobject_la_OBJECTS = _gobject_la-gobjectmodule.lo \
87 _gobject_la-pygtype.lo _gobject_la-pygoptioncontext.lo \
88 _gobject_la-pygoptiongroup.lo $(am__objects_1)
89 _gobject_la_OBJECTS = $(am__gobject_la_OBJECTS)
90 -_gobject_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
91 - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(_gobject_la_CFLAGS) \
92 - $(CFLAGS) $(_gobject_la_LDFLAGS) $(LDFLAGS) -o $@
93 -PROGRAMS = $(noinst_PROGRAMS)
94 -generate_constants_SOURCES = generate-constants.c
95 -generate_constants_OBJECTS = \
96 - generate_constants-generate-constants.$(OBJEXT)
97 -generate_constants_LDADD = $(LDADD)
98 -generate_constants_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
99 - $(LIBTOOLFLAGS) --mode=link $(CCLD) \
100 - $(generate_constants_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
101 - $(LDFLAGS) -o $@
102 -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
103 +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
104 depcomp = $(SHELL) $(top_srcdir)/depcomp
105 am__depfiles_maybe = depfiles
106 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
107 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
108 -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
109 - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
110 - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
111 +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
112 + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
113 + $(AM_CFLAGS) $(CFLAGS)
114 CCLD = $(CC)
115 -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
116 - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
117 - $(LDFLAGS) -o $@
118 -SOURCES = $(_gobject_la_SOURCES) generate-constants.c
119 -DIST_SOURCES = $(am___gobject_la_SOURCES_DIST) generate-constants.c
120 +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
121 + $(AM_LDFLAGS) $(LDFLAGS) -o $@
122 +SOURCES = $(_constants_la_SOURCES) $(_gobject_la_SOURCES)
123 +DIST_SOURCES = $(_constants_la_SOURCES) \
124 + $(am___gobject_la_SOURCES_DIST)
125 nodist_pygobjectPYTHON_INSTALL = $(INSTALL_DATA)
126 pygobjectPYTHON_INSTALL = $(INSTALL_DATA)
127 py_compile = $(top_srcdir)/py-compile
128 @@ -113,6 +106,8 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
129 pkgincludedir = $(includedir)/pygtk-$(PLATFORM_VERSION)
130 ACLOCAL = @ACLOCAL@
131 ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@
132 +AMDEP_FALSE = @AMDEP_FALSE@
133 +AMDEP_TRUE = @AMDEP_TRUE@
134 AMTAR = @AMTAR@
135 AR = @AR@
136 AS = @AS@
137 @@ -120,6 +115,10 @@ AUTOCONF = @AUTOCONF@
138 AUTOHEADER = @AUTOHEADER@
139 AUTOMAKE = @AUTOMAKE@
140 AWK = @AWK@
141 +BUILD_GIOUNIX_FALSE = @BUILD_GIOUNIX_FALSE@
142 +BUILD_GIOUNIX_TRUE = @BUILD_GIOUNIX_TRUE@
143 +BUILD_GIO_FALSE = @BUILD_GIO_FALSE@
144 +BUILD_GIO_TRUE = @BUILD_GIO_TRUE@
145 CC = @CC@
146 CCDEPMODE = @CCDEPMODE@
147 CFLAGS = @CFLAGS@
148 @@ -130,11 +129,14 @@ DATADIR = @DATADIR@
149 DEFS = @DEFS@
150 DEPDIR = @DEPDIR@
151 DLLTOOL = @DLLTOOL@
152 +DSYMUTIL = @DSYMUTIL@
153 ECHO = @ECHO@
154 ECHO_C = @ECHO_C@
155 ECHO_N = @ECHO_N@
156 ECHO_T = @ECHO_T@
157 EGREP = @EGREP@
158 +ENABLE_DOCS_FALSE = @ENABLE_DOCS_FALSE@
159 +ENABLE_DOCS_TRUE = @ENABLE_DOCS_TRUE@
160 EXEEXT = @EXEEXT@
161 FFI_LIBS = @FFI_LIBS@
162 GIOUNIX_CFLAGS = @GIOUNIX_CFLAGS@
163 @@ -147,7 +149,8 @@ GLIB_LIBS = @GLIB_LIBS@
164 GLIB_MKENUMS = @GLIB_MKENUMS@
165 GOBJECT_QUERY = @GOBJECT_QUERY@
166 GREP = @GREP@
167 -INSTALL = @INSTALL@
168 +HAVE_LIBFFI_FALSE = @HAVE_LIBFFI_FALSE@
169 +HAVE_LIBFFI_TRUE = @HAVE_LIBFFI_TRUE@
170 INSTALL_DATA = @INSTALL_DATA@
171 INSTALL_PROGRAM = @INSTALL_PROGRAM@
172 INSTALL_SCRIPT = @INSTALL_SCRIPT@
173 @@ -159,9 +162,11 @@ LIBTOOL = @LIBTOOL@
174 LN_S = @LN_S@
175 LTLIBOBJS = @LTLIBOBJS@
176 MAKEINFO = @MAKEINFO@
177 -MKDIR_P = @MKDIR_P@
178 +NMEDIT = @NMEDIT@
179 OBJDUMP = @OBJDUMP@
180 OBJEXT = @OBJEXT@
181 +OS_WIN32_FALSE = @OS_WIN32_FALSE@
182 +OS_WIN32_TRUE = @OS_WIN32_TRUE@
183 PACKAGE = @PACKAGE@
184 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
185 PACKAGE_NAME = @PACKAGE_NAME@
186 @@ -171,6 +176,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
187 PATH_SEPARATOR = @PATH_SEPARATOR@
188 PKG_CONFIG = @PKG_CONFIG@
189 PLATFORM = @PLATFORM@
190 +PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@
191 +PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@
192 PYGOBJECT_MAJOR_VERSION = @PYGOBJECT_MAJOR_VERSION@
193 PYGOBJECT_MICRO_VERSION = @PYGOBJECT_MICRO_VERSION@
194 PYGOBJECT_MINOR_VERSION = @PYGOBJECT_MINOR_VERSION@
195 @@ -188,11 +195,9 @@ STRIP = @STRIP@
196 THREADING_CFLAGS = @THREADING_CFLAGS@
197 VERSION = @VERSION@
198 XSLTPROC = @XSLTPROC@
199 -abs_builddir = @abs_builddir@
200 -abs_srcdir = @abs_srcdir@
201 -abs_top_builddir = @abs_top_builddir@
202 -abs_top_srcdir = @abs_top_srcdir@
203 ac_ct_CC = @ac_ct_CC@
204 +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
205 +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
206 am__include = @am__include@
207 am__leading_dot = @am__leading_dot@
208 am__quote = @am__quote@
209 @@ -204,7 +209,6 @@ build_alias = @build_alias@
210 build_cpu = @build_cpu@
211 build_os = @build_os@
212 build_vendor = @build_vendor@
213 -builddir = @builddir@
214 datadir = @datadir@
215 datarootdir = @datarootdir@
216 docdir = @docdir@
217 @@ -237,11 +241,8 @@ pygobject_CODEGEN_DEFINES = @pygobject_CODEGEN_DEFINES@
218 pythondir = @pythondir@
219 sbindir = @sbindir@
220 sharedstatedir = @sharedstatedir@
221 -srcdir = @srcdir@
222 sysconfdir = @sysconfdir@
223 target_alias = @target_alias@
224 -top_builddir = @top_builddir@
225 -top_srcdir = @top_srcdir@
226 AUTOMAKE_OPTIONS = 1.7
227 PLATFORM_VERSION = 2.0
228 INCLUDES = $(PYTHON_INCLUDES) $(GLIB_CFLAGS) -DPY_SSIZE_T_CLEAN
229 @@ -254,12 +255,14 @@ pygobject_PYTHON = \
230 option.py \
231 propertyhelper.py
232
233 -pygobject_LTLIBRARIES = _gobject.la
234 +pygobject_LTLIBRARIES = _constants.la _gobject.la
235 nodist_pygobject_PYTHON = constants.py
236 common_ldflags = -module -avoid-version $(am__append_1)
237 -generate_constants_CFLAGS = $(GLIB_CFLAGS)
238 CLEANFILES = constants.py
239 EXTRA_DIST = constants.py.in
240 +_constants_la_CFLAGS = $(GLIB_CFLAGS)
241 +_constants_la_LDFLAGS = $(common_ldflags) -export-symbols-regex init_constants
242 +_constants_la_SOURCES = _constants.c
243 _gobject_la_CFLAGS = $(GLIB_CFLAGS) $(am__append_3)
244 _gobject_la_LDFLAGS = $(common_ldflags) -export-symbols-regex init_gobject
245 _gobject_la_LIBADD = $(GLIB_LIBS) $(FFI_LIBS)
246 @@ -304,21 +307,21 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
247 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
248 install-pygobjectLTLIBRARIES: $(pygobject_LTLIBRARIES)
249 @$(NORMAL_INSTALL)
250 - test -z "$(pygobjectdir)" || $(MKDIR_P) "$(DESTDIR)$(pygobjectdir)"
251 + test -z "$(pygobjectdir)" || $(mkdir_p) "$(DESTDIR)$(pygobjectdir)"
252 @list='$(pygobject_LTLIBRARIES)'; for p in $$list; do \
253 if test -f $$p; then \
254 f=$(am__strip_dir) \
255 - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(pygobjectLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(pygobjectdir)/$$f'"; \
256 - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(pygobjectLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(pygobjectdir)/$$f"; \
257 + echo " $(LIBTOOL) --mode=install $(pygobjectLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(pygobjectdir)/$$f'"; \
258 + $(LIBTOOL) --mode=install $(pygobjectLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(pygobjectdir)/$$f"; \
259 else :; fi; \
260 done
261
262 uninstall-pygobjectLTLIBRARIES:
263 @$(NORMAL_UNINSTALL)
264 - @list='$(pygobject_LTLIBRARIES)'; for p in $$list; do \
265 + @set -x; list='$(pygobject_LTLIBRARIES)'; for p in $$list; do \
266 p=$(am__strip_dir) \
267 - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pygobjectdir)/$$p'"; \
268 - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pygobjectdir)/$$p"; \
269 + echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(pygobjectdir)/$$p'"; \
270 + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(pygobjectdir)/$$p"; \
271 done
272
273 clean-pygobjectLTLIBRARIES:
274 @@ -329,18 +332,10 @@ clean-pygobjectLTLIBRARIES:
275 echo "rm -f \"$${dir}/so_locations\""; \
276 rm -f "$${dir}/so_locations"; \
277 done
278 +_constants.la: $(_constants_la_OBJECTS) $(_constants_la_DEPENDENCIES)
279 + $(LINK) -rpath $(pygobjectdir) $(_constants_la_LDFLAGS) $(_constants_la_OBJECTS) $(_constants_la_LIBADD) $(LIBS)
280 _gobject.la: $(_gobject_la_OBJECTS) $(_gobject_la_DEPENDENCIES)
281 - $(_gobject_la_LINK) -rpath $(pygobjectdir) $(_gobject_la_OBJECTS) $(_gobject_la_LIBADD) $(LIBS)
282 -
283 -clean-noinstPROGRAMS:
284 - @list='$(noinst_PROGRAMS)'; for p in $$list; do \
285 - f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
286 - echo " rm -f $$p $$f"; \
287 - rm -f $$p $$f ; \
288 - done
289 -generate-constants$(EXEEXT): $(generate_constants_OBJECTS) $(generate_constants_DEPENDENCIES)
290 - @rm -f generate-constants$(EXEEXT)
291 - $(generate_constants_LINK) $(generate_constants_OBJECTS) $(generate_constants_LDADD) $(LIBS)
292 + $(LINK) -rpath $(pygobjectdir) $(_gobject_la_LDFLAGS) $(_gobject_la_OBJECTS) $(_gobject_la_LIBADD) $(LIBS)
293
294 mostlyclean-compile:
295 -rm -f *.$(OBJEXT)
296 @@ -348,6 +343,7 @@ mostlyclean-compile:
297 distclean-compile:
298 -rm -f *.tab.c
299
300 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_constants_la-_constants.Plo@am__quote@
301 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-ffi-marshaller.Plo@am__quote@
302 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-gobjectmodule.Plo@am__quote@
303 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-pygboxed.Plo@am__quote@
304 @@ -363,156 +359,152 @@ distclean-compile:
305 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-pygpointer.Plo@am__quote@
306 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-pygsource.Plo@am__quote@
307 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-pygtype.Plo@am__quote@
308 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/generate_constants-generate-constants.Po@am__quote@
309
310 .c.o:
311 -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
312 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
313 +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
314 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
315 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
316 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
317 @am__fastdepCC_FALSE@ $(COMPILE) -c $<
318
319 .c.obj:
320 -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
321 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
322 +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
323 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
324 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
325 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
326 @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
327
328 .c.lo:
329 -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
330 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
331 +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
332 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
333 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
334 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
335 @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
336
337 +_constants_la-_constants.lo: _constants.c
338 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_constants_la_CFLAGS) $(CFLAGS) -MT _constants_la-_constants.lo -MD -MP -MF "$(DEPDIR)/_constants_la-_constants.Tpo" -c -o _constants_la-_constants.lo `test -f '_constants.c' || echo '$(srcdir)/'`_constants.c; \
339 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_constants_la-_constants.Tpo" "$(DEPDIR)/_constants_la-_constants.Plo"; else rm -f "$(DEPDIR)/_constants_la-_constants.Tpo"; exit 1; fi
340 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='_constants.c' object='_constants_la-_constants.lo' libtool=yes @AMDEPBACKSLASH@
341 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
342 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_constants_la_CFLAGS) $(CFLAGS) -c -o _constants_la-_constants.lo `test -f '_constants.c' || echo '$(srcdir)/'`_constants.c
343 +
344 _gobject_la-gobjectmodule.lo: gobjectmodule.c
345 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-gobjectmodule.lo -MD -MP -MF $(DEPDIR)/_gobject_la-gobjectmodule.Tpo -c -o _gobject_la-gobjectmodule.lo `test -f 'gobjectmodule.c' || echo '$(srcdir)/'`gobjectmodule.c
346 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-gobjectmodule.Tpo $(DEPDIR)/_gobject_la-gobjectmodule.Plo
347 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-gobjectmodule.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-gobjectmodule.Tpo" -c -o _gobject_la-gobjectmodule.lo `test -f 'gobjectmodule.c' || echo '$(srcdir)/'`gobjectmodule.c; \
348 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-gobjectmodule.Tpo" "$(DEPDIR)/_gobject_la-gobjectmodule.Plo"; else rm -f "$(DEPDIR)/_gobject_la-gobjectmodule.Tpo"; exit 1; fi
349 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gobjectmodule.c' object='_gobject_la-gobjectmodule.lo' libtool=yes @AMDEPBACKSLASH@
350 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
351 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-gobjectmodule.lo `test -f 'gobjectmodule.c' || echo '$(srcdir)/'`gobjectmodule.c
352 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-gobjectmodule.lo `test -f 'gobjectmodule.c' || echo '$(srcdir)/'`gobjectmodule.c
353
354 _gobject_la-pygboxed.lo: pygboxed.c
355 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygboxed.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygboxed.Tpo -c -o _gobject_la-pygboxed.lo `test -f 'pygboxed.c' || echo '$(srcdir)/'`pygboxed.c
356 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygboxed.Tpo $(DEPDIR)/_gobject_la-pygboxed.Plo
357 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygboxed.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygboxed.Tpo" -c -o _gobject_la-pygboxed.lo `test -f 'pygboxed.c' || echo '$(srcdir)/'`pygboxed.c; \
358 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygboxed.Tpo" "$(DEPDIR)/_gobject_la-pygboxed.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygboxed.Tpo"; exit 1; fi
359 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygboxed.c' object='_gobject_la-pygboxed.lo' libtool=yes @AMDEPBACKSLASH@
360 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
361 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygboxed.lo `test -f 'pygboxed.c' || echo '$(srcdir)/'`pygboxed.c
362 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygboxed.lo `test -f 'pygboxed.c' || echo '$(srcdir)/'`pygboxed.c
363
364 _gobject_la-pygenum.lo: pygenum.c
365 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygenum.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygenum.Tpo -c -o _gobject_la-pygenum.lo `test -f 'pygenum.c' || echo '$(srcdir)/'`pygenum.c
366 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygenum.Tpo $(DEPDIR)/_gobject_la-pygenum.Plo
367 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygenum.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygenum.Tpo" -c -o _gobject_la-pygenum.lo `test -f 'pygenum.c' || echo '$(srcdir)/'`pygenum.c; \
368 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygenum.Tpo" "$(DEPDIR)/_gobject_la-pygenum.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygenum.Tpo"; exit 1; fi
369 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygenum.c' object='_gobject_la-pygenum.lo' libtool=yes @AMDEPBACKSLASH@
370 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
371 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygenum.lo `test -f 'pygenum.c' || echo '$(srcdir)/'`pygenum.c
372 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygenum.lo `test -f 'pygenum.c' || echo '$(srcdir)/'`pygenum.c
373
374 _gobject_la-pygflags.lo: pygflags.c
375 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygflags.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygflags.Tpo -c -o _gobject_la-pygflags.lo `test -f 'pygflags.c' || echo '$(srcdir)/'`pygflags.c
376 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygflags.Tpo $(DEPDIR)/_gobject_la-pygflags.Plo
377 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygflags.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygflags.Tpo" -c -o _gobject_la-pygflags.lo `test -f 'pygflags.c' || echo '$(srcdir)/'`pygflags.c; \
378 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygflags.Tpo" "$(DEPDIR)/_gobject_la-pygflags.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygflags.Tpo"; exit 1; fi
379 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygflags.c' object='_gobject_la-pygflags.lo' libtool=yes @AMDEPBACKSLASH@
380 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
381 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygflags.lo `test -f 'pygflags.c' || echo '$(srcdir)/'`pygflags.c
382 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygflags.lo `test -f 'pygflags.c' || echo '$(srcdir)/'`pygflags.c
383
384 _gobject_la-pygobject.lo: pygobject.c
385 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygobject.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygobject.Tpo -c -o _gobject_la-pygobject.lo `test -f 'pygobject.c' || echo '$(srcdir)/'`pygobject.c
386 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygobject.Tpo $(DEPDIR)/_gobject_la-pygobject.Plo
387 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygobject.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygobject.Tpo" -c -o _gobject_la-pygobject.lo `test -f 'pygobject.c' || echo '$(srcdir)/'`pygobject.c; \
388 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygobject.Tpo" "$(DEPDIR)/_gobject_la-pygobject.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygobject.Tpo"; exit 1; fi
389 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygobject.c' object='_gobject_la-pygobject.lo' libtool=yes @AMDEPBACKSLASH@
390 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
391 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygobject.lo `test -f 'pygobject.c' || echo '$(srcdir)/'`pygobject.c
392 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygobject.lo `test -f 'pygobject.c' || echo '$(srcdir)/'`pygobject.c
393
394 _gobject_la-pygmaincontext.lo: pygmaincontext.c
395 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygmaincontext.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygmaincontext.Tpo -c -o _gobject_la-pygmaincontext.lo `test -f 'pygmaincontext.c' || echo '$(srcdir)/'`pygmaincontext.c
396 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygmaincontext.Tpo $(DEPDIR)/_gobject_la-pygmaincontext.Plo
397 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygmaincontext.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygmaincontext.Tpo" -c -o _gobject_la-pygmaincontext.lo `test -f 'pygmaincontext.c' || echo '$(srcdir)/'`pygmaincontext.c; \
398 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygmaincontext.Tpo" "$(DEPDIR)/_gobject_la-pygmaincontext.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygmaincontext.Tpo"; exit 1; fi
399 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygmaincontext.c' object='_gobject_la-pygmaincontext.lo' libtool=yes @AMDEPBACKSLASH@
400 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
401 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygmaincontext.lo `test -f 'pygmaincontext.c' || echo '$(srcdir)/'`pygmaincontext.c
402 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygmaincontext.lo `test -f 'pygmaincontext.c' || echo '$(srcdir)/'`pygmaincontext.c
403
404 _gobject_la-pygmainloop.lo: pygmainloop.c
405 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygmainloop.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygmainloop.Tpo -c -o _gobject_la-pygmainloop.lo `test -f 'pygmainloop.c' || echo '$(srcdir)/'`pygmainloop.c
406 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygmainloop.Tpo $(DEPDIR)/_gobject_la-pygmainloop.Plo
407 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygmainloop.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygmainloop.Tpo" -c -o _gobject_la-pygmainloop.lo `test -f 'pygmainloop.c' || echo '$(srcdir)/'`pygmainloop.c; \
408 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygmainloop.Tpo" "$(DEPDIR)/_gobject_la-pygmainloop.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygmainloop.Tpo"; exit 1; fi
409 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygmainloop.c' object='_gobject_la-pygmainloop.lo' libtool=yes @AMDEPBACKSLASH@
410 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
411 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygmainloop.lo `test -f 'pygmainloop.c' || echo '$(srcdir)/'`pygmainloop.c
412 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygmainloop.lo `test -f 'pygmainloop.c' || echo '$(srcdir)/'`pygmainloop.c
413
414 _gobject_la-pygparamspec.lo: pygparamspec.c
415 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygparamspec.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygparamspec.Tpo -c -o _gobject_la-pygparamspec.lo `test -f 'pygparamspec.c' || echo '$(srcdir)/'`pygparamspec.c
416 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygparamspec.Tpo $(DEPDIR)/_gobject_la-pygparamspec.Plo
417 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygparamspec.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygparamspec.Tpo" -c -o _gobject_la-pygparamspec.lo `test -f 'pygparamspec.c' || echo '$(srcdir)/'`pygparamspec.c; \
418 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygparamspec.Tpo" "$(DEPDIR)/_gobject_la-pygparamspec.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygparamspec.Tpo"; exit 1; fi
419 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygparamspec.c' object='_gobject_la-pygparamspec.lo' libtool=yes @AMDEPBACKSLASH@
420 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
421 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygparamspec.lo `test -f 'pygparamspec.c' || echo '$(srcdir)/'`pygparamspec.c
422 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygparamspec.lo `test -f 'pygparamspec.c' || echo '$(srcdir)/'`pygparamspec.c
423
424 _gobject_la-pygpointer.lo: pygpointer.c
425 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygpointer.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygpointer.Tpo -c -o _gobject_la-pygpointer.lo `test -f 'pygpointer.c' || echo '$(srcdir)/'`pygpointer.c
426 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygpointer.Tpo $(DEPDIR)/_gobject_la-pygpointer.Plo
427 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygpointer.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygpointer.Tpo" -c -o _gobject_la-pygpointer.lo `test -f 'pygpointer.c' || echo '$(srcdir)/'`pygpointer.c; \
428 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygpointer.Tpo" "$(DEPDIR)/_gobject_la-pygpointer.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygpointer.Tpo"; exit 1; fi
429 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygpointer.c' object='_gobject_la-pygpointer.lo' libtool=yes @AMDEPBACKSLASH@
430 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
431 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygpointer.lo `test -f 'pygpointer.c' || echo '$(srcdir)/'`pygpointer.c
432 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygpointer.lo `test -f 'pygpointer.c' || echo '$(srcdir)/'`pygpointer.c
433
434 _gobject_la-pygiochannel.lo: pygiochannel.c
435 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygiochannel.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygiochannel.Tpo -c -o _gobject_la-pygiochannel.lo `test -f 'pygiochannel.c' || echo '$(srcdir)/'`pygiochannel.c
436 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygiochannel.Tpo $(DEPDIR)/_gobject_la-pygiochannel.Plo
437 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygiochannel.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygiochannel.Tpo" -c -o _gobject_la-pygiochannel.lo `test -f 'pygiochannel.c' || echo '$(srcdir)/'`pygiochannel.c; \
438 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygiochannel.Tpo" "$(DEPDIR)/_gobject_la-pygiochannel.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygiochannel.Tpo"; exit 1; fi
439 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygiochannel.c' object='_gobject_la-pygiochannel.lo' libtool=yes @AMDEPBACKSLASH@
440 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
441 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygiochannel.lo `test -f 'pygiochannel.c' || echo '$(srcdir)/'`pygiochannel.c
442 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygiochannel.lo `test -f 'pygiochannel.c' || echo '$(srcdir)/'`pygiochannel.c
443
444 _gobject_la-pygsource.lo: pygsource.c
445 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygsource.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygsource.Tpo -c -o _gobject_la-pygsource.lo `test -f 'pygsource.c' || echo '$(srcdir)/'`pygsource.c
446 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygsource.Tpo $(DEPDIR)/_gobject_la-pygsource.Plo
447 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygsource.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygsource.Tpo" -c -o _gobject_la-pygsource.lo `test -f 'pygsource.c' || echo '$(srcdir)/'`pygsource.c; \
448 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygsource.Tpo" "$(DEPDIR)/_gobject_la-pygsource.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygsource.Tpo"; exit 1; fi
449 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygsource.c' object='_gobject_la-pygsource.lo' libtool=yes @AMDEPBACKSLASH@
450 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
451 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygsource.lo `test -f 'pygsource.c' || echo '$(srcdir)/'`pygsource.c
452 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygsource.lo `test -f 'pygsource.c' || echo '$(srcdir)/'`pygsource.c
453
454 _gobject_la-pygtype.lo: pygtype.c
455 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygtype.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygtype.Tpo -c -o _gobject_la-pygtype.lo `test -f 'pygtype.c' || echo '$(srcdir)/'`pygtype.c
456 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygtype.Tpo $(DEPDIR)/_gobject_la-pygtype.Plo
457 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygtype.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygtype.Tpo" -c -o _gobject_la-pygtype.lo `test -f 'pygtype.c' || echo '$(srcdir)/'`pygtype.c; \
458 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygtype.Tpo" "$(DEPDIR)/_gobject_la-pygtype.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygtype.Tpo"; exit 1; fi
459 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygtype.c' object='_gobject_la-pygtype.lo' libtool=yes @AMDEPBACKSLASH@
460 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
461 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygtype.lo `test -f 'pygtype.c' || echo '$(srcdir)/'`pygtype.c
462 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygtype.lo `test -f 'pygtype.c' || echo '$(srcdir)/'`pygtype.c
463
464 _gobject_la-pygoptioncontext.lo: pygoptioncontext.c
465 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygoptioncontext.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygoptioncontext.Tpo -c -o _gobject_la-pygoptioncontext.lo `test -f 'pygoptioncontext.c' || echo '$(srcdir)/'`pygoptioncontext.c
466 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygoptioncontext.Tpo $(DEPDIR)/_gobject_la-pygoptioncontext.Plo
467 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygoptioncontext.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygoptioncontext.Tpo" -c -o _gobject_la-pygoptioncontext.lo `test -f 'pygoptioncontext.c' || echo '$(srcdir)/'`pygoptioncontext.c; \
468 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygoptioncontext.Tpo" "$(DEPDIR)/_gobject_la-pygoptioncontext.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygoptioncontext.Tpo"; exit 1; fi
469 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygoptioncontext.c' object='_gobject_la-pygoptioncontext.lo' libtool=yes @AMDEPBACKSLASH@
470 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
471 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygoptioncontext.lo `test -f 'pygoptioncontext.c' || echo '$(srcdir)/'`pygoptioncontext.c
472 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygoptioncontext.lo `test -f 'pygoptioncontext.c' || echo '$(srcdir)/'`pygoptioncontext.c
473
474 _gobject_la-pygoptiongroup.lo: pygoptiongroup.c
475 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygoptiongroup.lo -MD -MP -MF $(DEPDIR)/_gobject_la-pygoptiongroup.Tpo -c -o _gobject_la-pygoptiongroup.lo `test -f 'pygoptiongroup.c' || echo '$(srcdir)/'`pygoptiongroup.c
476 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygoptiongroup.Tpo $(DEPDIR)/_gobject_la-pygoptiongroup.Plo
477 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-pygoptiongroup.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-pygoptiongroup.Tpo" -c -o _gobject_la-pygoptiongroup.lo `test -f 'pygoptiongroup.c' || echo '$(srcdir)/'`pygoptiongroup.c; \
478 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-pygoptiongroup.Tpo" "$(DEPDIR)/_gobject_la-pygoptiongroup.Plo"; else rm -f "$(DEPDIR)/_gobject_la-pygoptiongroup.Tpo"; exit 1; fi
479 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygoptiongroup.c' object='_gobject_la-pygoptiongroup.lo' libtool=yes @AMDEPBACKSLASH@
480 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
481 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygoptiongroup.lo `test -f 'pygoptiongroup.c' || echo '$(srcdir)/'`pygoptiongroup.c
482 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-pygoptiongroup.lo `test -f 'pygoptiongroup.c' || echo '$(srcdir)/'`pygoptiongroup.c
483
484 _gobject_la-ffi-marshaller.lo: ffi-marshaller.c
485 -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-ffi-marshaller.lo -MD -MP -MF $(DEPDIR)/_gobject_la-ffi-marshaller.Tpo -c -o _gobject_la-ffi-marshaller.lo `test -f 'ffi-marshaller.c' || echo '$(srcdir)/'`ffi-marshaller.c
486 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-ffi-marshaller.Tpo $(DEPDIR)/_gobject_la-ffi-marshaller.Plo
487 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -MT _gobject_la-ffi-marshaller.lo -MD -MP -MF "$(DEPDIR)/_gobject_la-ffi-marshaller.Tpo" -c -o _gobject_la-ffi-marshaller.lo `test -f 'ffi-marshaller.c' || echo '$(srcdir)/'`ffi-marshaller.c; \
488 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/_gobject_la-ffi-marshaller.Tpo" "$(DEPDIR)/_gobject_la-ffi-marshaller.Plo"; else rm -f "$(DEPDIR)/_gobject_la-ffi-marshaller.Tpo"; exit 1; fi
489 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ffi-marshaller.c' object='_gobject_la-ffi-marshaller.lo' libtool=yes @AMDEPBACKSLASH@
490 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
491 -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-ffi-marshaller.lo `test -f 'ffi-marshaller.c' || echo '$(srcdir)/'`ffi-marshaller.c
492 -
493 -generate_constants-generate-constants.o: generate-constants.c
494 -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(generate_constants_CFLAGS) $(CFLAGS) -MT generate_constants-generate-constants.o -MD -MP -MF $(DEPDIR)/generate_constants-generate-constants.Tpo -c -o generate_constants-generate-constants.o `test -f 'generate-constants.c' || echo '$(srcdir)/'`generate-constants.c
495 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/generate_constants-generate-constants.Tpo $(DEPDIR)/generate_constants-generate-constants.Po
496 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='generate-constants.c' object='generate_constants-generate-constants.o' libtool=no @AMDEPBACKSLASH@
497 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
498 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(generate_constants_CFLAGS) $(CFLAGS) -c -o generate_constants-generate-constants.o `test -f 'generate-constants.c' || echo '$(srcdir)/'`generate-constants.c
499 -
500 -generate_constants-generate-constants.obj: generate-constants.c
501 -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(generate_constants_CFLAGS) $(CFLAGS) -MT generate_constants-generate-constants.obj -MD -MP -MF $(DEPDIR)/generate_constants-generate-constants.Tpo -c -o generate_constants-generate-constants.obj `if test -f 'generate-constants.c'; then $(CYGPATH_W) 'generate-constants.c'; else $(CYGPATH_W) '$(srcdir)/generate-constants.c'; fi`
502 -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/generate_constants-generate-constants.Tpo $(DEPDIR)/generate_constants-generate-constants.Po
503 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='generate-constants.c' object='generate_constants-generate-constants.obj' libtool=no @AMDEPBACKSLASH@
504 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
505 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(generate_constants_CFLAGS) $(CFLAGS) -c -o generate_constants-generate-constants.obj `if test -f 'generate-constants.c'; then $(CYGPATH_W) 'generate-constants.c'; else $(CYGPATH_W) '$(srcdir)/generate-constants.c'; fi`
506 +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_gobject_la_CFLAGS) $(CFLAGS) -c -o _gobject_la-ffi-marshaller.lo `test -f 'ffi-marshaller.c' || echo '$(srcdir)/'`ffi-marshaller.c
507
508 mostlyclean-libtool:
509 -rm -f *.lo
510
511 clean-libtool:
512 -rm -rf .libs _libs
513 +
514 +distclean-libtool:
515 + -rm -f libtool
516 +uninstall-info-am:
517 install-nodist_pygobjectPYTHON: $(nodist_pygobject_PYTHON)
518 @$(NORMAL_INSTALL)
519 - test -z "$(pygobjectdir)" || $(MKDIR_P) "$(DESTDIR)$(pygobjectdir)"
520 + test -z "$(pygobjectdir)" || $(mkdir_p) "$(DESTDIR)$(pygobjectdir)"
521 @list='$(nodist_pygobject_PYTHON)'; dlist=''; for p in $$list; do\
522 if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \
523 if test -f $$b$$p; then \
524 @@ -540,7 +532,7 @@ uninstall-nodist_pygobjectPYTHON:
525 done
526 install-pygobjectPYTHON: $(pygobject_PYTHON)
527 @$(NORMAL_INSTALL)
528 - test -z "$(pygobjectdir)" || $(MKDIR_P) "$(DESTDIR)$(pygobjectdir)"
529 + test -z "$(pygobjectdir)" || $(mkdir_p) "$(DESTDIR)$(pygobjectdir)"
530 @list='$(pygobject_PYTHON)'; dlist=''; for p in $$list; do\
531 if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \
532 if test -f $$b$$p; then \
533 @@ -568,7 +560,7 @@ uninstall-pygobjectPYTHON:
534 done
535 install-pkgincludeHEADERS: $(pkginclude_HEADERS)
536 @$(NORMAL_INSTALL)
537 - test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)"
538 + test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)"
539 @list='$(pkginclude_HEADERS)'; for p in $$list; do \
540 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
541 f=$(am__strip_dir) \
542 @@ -589,8 +581,8 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
543 unique=`for i in $$list; do \
544 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
545 done | \
546 - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
547 - END { if (nonempty) { for (i in files) print i; }; }'`; \
548 + $(AWK) ' { files[$$0] = 1; } \
549 + END { for (i in files) print i; }'`; \
550 mkid -fID $$unique
551 tags: TAGS
552
553 @@ -602,8 +594,8 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
554 unique=`for i in $$list; do \
555 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
556 done | \
557 - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
558 - END { if (nonempty) { for (i in files) print i; }; }'`; \
559 + $(AWK) ' { files[$$0] = 1; } \
560 + END { for (i in files) print i; }'`; \
561 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
562 test -n "$$unique" || unique=$$empty_fix; \
563 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
564 @@ -613,12 +605,13 @@ ctags: CTAGS
565 CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
566 $(TAGS_FILES) $(LISP)
567 tags=; \
568 + here=`pwd`; \
569 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
570 unique=`for i in $$list; do \
571 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
572 done | \
573 - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
574 - END { if (nonempty) { for (i in files) print i; }; }'`; \
575 + $(AWK) ' { files[$$0] = 1; } \
576 + END { for (i in files) print i; }'`; \
577 test -z "$(CTAGS_ARGS)$$tags$$unique" \
578 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
579 $$tags $$unique
580 @@ -632,21 +625,22 @@ distclean-tags:
581 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
582
583 distdir: $(DISTFILES)
584 - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
585 - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
586 - list='$(DISTFILES)'; \
587 - dist_files=`for file in $$list; do echo $$file; done | \
588 - sed -e "s|^$$srcdirstrip/||;t" \
589 - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
590 - case $$dist_files in \
591 - */*) $(MKDIR_P) `echo "$$dist_files" | \
592 - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
593 - sort -u` ;; \
594 - esac; \
595 - for file in $$dist_files; do \
596 + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
597 + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
598 + list='$(DISTFILES)'; for file in $$list; do \
599 + case $$file in \
600 + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
601 + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
602 + esac; \
603 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
604 + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
605 + if test "$$dir" != "$$file" && test "$$dir" != "."; then \
606 + dir="/$$dir"; \
607 + $(mkdir_p) "$(distdir)$$dir"; \
608 + else \
609 + dir=''; \
610 + fi; \
611 if test -d $$d/$$file; then \
612 - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
613 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
614 cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
615 fi; \
616 @@ -659,10 +653,10 @@ distdir: $(DISTFILES)
617 done
618 check-am: all-am
619 check: check-am
620 -all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS)
621 +all-am: Makefile $(LTLIBRARIES) $(HEADERS)
622 installdirs:
623 for dir in "$(DESTDIR)$(pygobjectdir)" "$(DESTDIR)$(pygobjectdir)" "$(DESTDIR)$(pygobjectdir)" "$(DESTDIR)$(pkgincludedir)"; do \
624 - test -z "$$dir" || $(MKDIR_P) "$$dir"; \
625 + test -z "$$dir" || $(mkdir_p) "$$dir"; \
626 done
627 install: install-am
628 install-exec: install-exec-am
629 @@ -691,14 +685,14 @@ maintainer-clean-generic:
630 @echo "it deletes files that may require special tools to rebuild."
631 clean: clean-am
632
633 -clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
634 - clean-pygobjectLTLIBRARIES mostlyclean-am
635 +clean-am: clean-generic clean-libtool clean-pygobjectLTLIBRARIES \
636 + mostlyclean-am
637
638 distclean: distclean-am
639 -rm -rf ./$(DEPDIR)
640 -rm -f Makefile
641 distclean-am: clean-am distclean-compile distclean-generic \
642 - distclean-tags
643 + distclean-libtool distclean-tags
644
645 dvi: dvi-am
646
647 @@ -714,20 +708,12 @@ install-data-am: install-nodist_pygobjectPYTHON \
648 install-pkgincludeHEADERS install-pygobjectLTLIBRARIES \
649 install-pygobjectPYTHON
650
651 -install-dvi: install-dvi-am
652 -
653 install-exec-am:
654
655 -install-html: install-html-am
656 -
657 install-info: install-info-am
658
659 install-man:
660
661 -install-pdf: install-pdf-am
662 -
663 -install-ps: install-ps-am
664 -
665 installcheck-am:
666
667 maintainer-clean: maintainer-clean-am
668 @@ -748,37 +734,26 @@ ps: ps-am
669
670 ps-am:
671
672 -uninstall-am: uninstall-nodist_pygobjectPYTHON \
673 +uninstall-am: uninstall-info-am uninstall-nodist_pygobjectPYTHON \
674 uninstall-pkgincludeHEADERS uninstall-pygobjectLTLIBRARIES \
675 uninstall-pygobjectPYTHON
676
677 -.MAKE: install-am install-strip
678 -
679 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
680 - clean-libtool clean-noinstPROGRAMS clean-pygobjectLTLIBRARIES \
681 - ctags distclean distclean-compile distclean-generic \
682 - distclean-libtool distclean-tags distdir dvi dvi-am html \
683 - html-am info info-am install install-am install-data \
684 - install-data-am install-dvi install-dvi-am install-exec \
685 - install-exec-am install-html install-html-am install-info \
686 - install-info-am install-man install-nodist_pygobjectPYTHON \
687 - install-pdf install-pdf-am install-pkgincludeHEADERS \
688 - install-ps install-ps-am install-pygobjectLTLIBRARIES \
689 - install-pygobjectPYTHON install-strip installcheck \
690 - installcheck-am installdirs maintainer-clean \
691 - maintainer-clean-generic mostlyclean mostlyclean-compile \
692 - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
693 - tags uninstall uninstall-am uninstall-nodist_pygobjectPYTHON \
694 + clean-libtool clean-pygobjectLTLIBRARIES ctags distclean \
695 + distclean-compile distclean-generic distclean-libtool \
696 + distclean-tags distdir dvi dvi-am html html-am info info-am \
697 + install install-am install-data install-data-am install-exec \
698 + install-exec-am install-info install-info-am install-man \
699 + install-nodist_pygobjectPYTHON install-pkgincludeHEADERS \
700 + install-pygobjectLTLIBRARIES install-pygobjectPYTHON \
701 + install-strip installcheck installcheck-am installdirs \
702 + maintainer-clean maintainer-clean-generic mostlyclean \
703 + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
704 + pdf pdf-am ps ps-am tags uninstall uninstall-am \
705 + uninstall-info-am uninstall-nodist_pygobjectPYTHON \
706 uninstall-pkgincludeHEADERS uninstall-pygobjectLTLIBRARIES \
707 uninstall-pygobjectPYTHON
708
709 -
710 -constants.py: generate-constants$(EXEEXT) constants.py.in
711 - rm -f constants.py
712 - cp $(srcdir)/constants.py.in constants.py
713 - chmod 644 constants.py
714 - $(top_builddir)/gobject/generate-constants$(EXEEXT) >> constants.py
715 - chmod 444 constants.py
716 # Tell versions [3.59,3.63) of GNU make to not export all variables.
717 # Otherwise a system limit (for SysV at least) may be exceeded.
718 .NOEXPORT:
719 diff --git a/gobject/_constants.c b/gobject/_constants.c
720 index e69de29..c304105 100644
721 --- a/gobject/_constants.c
722 +++ b/gobject/_constants.c
723 @@ -0,0 +1,26 @@
724 +#include <Python.h>
725 +#include <glibconfig.h>
726 +
727 +DL_EXPORT(void)
728 +init_constants(void)
729 +{
730 + PyObject *m, *d;
731 +
732 + m = Py_InitModule("gobject._constants", NULL);
733 + d = PyModule_GetDict(m);
734 +
735 + PyDict_SetItemString(d, "G_MINFLOAT", PyFloat_FromDouble(G_MINFLOAT));
736 + PyDict_SetItemString(d, "G_MAXFLOAT", PyFloat_FromDouble(G_MAXFLOAT));
737 + PyDict_SetItemString(d, "G_MINDOUBLE", PyFloat_FromDouble(G_MINDOUBLE));
738 + PyDict_SetItemString(d, "G_MAXDOUBLE", PyFloat_FromDouble(G_MAXDOUBLE));
739 + PyDict_SetItemString(d, "G_MINSHORT", PyLong_FromLong(G_MINSHORT));
740 + PyDict_SetItemString(d, "G_MAXSHORT", PyLong_FromLong(G_MAXSHORT));
741 + PyDict_SetItemString(d, "G_MAXUSHORT", PyLong_FromUnsignedLong(G_MAXUSHORT));
742 + PyDict_SetItemString(d, "G_MININT", PyLong_FromLong(G_MININT));
743 + PyDict_SetItemString(d, "G_MAXINT", PyLong_FromLong(G_MAXINT));
744 + PyDict_SetItemString(d, "G_MAXUINT", PyLong_FromUnsignedLong(G_MAXUINT));
745 + PyDict_SetItemString(d, "G_MINLONG", PyLong_FromLong(G_MINLONG));
746 + PyDict_SetItemString(d, "G_MAXLONG", PyLong_FromLong(G_MAXLONG));
747 + PyDict_SetItemString(d, "G_MAXULONG", PyLong_FromUnsignedLong(G_MAXULONG));
748 +}
749 +
750 diff --git a/gobject/constants.py b/gobject/constants.py
751 --- a/gobject/constants.py
752 +++ b/gobject/constants.py
753 @@ -0,0 +1,48 @@
754 +# -*- Mode: Python; py-indent-offset: 4 -*-
755 +# pygobject - Python bindings for the GObject library
756 +# Copyright (C) 2006-2007 Johan Dahlin
757 +#
758 +# gobject/constants.py: GObject type constants
759 +#
760 +# This library is free software; you can redistribute it and/or
761 +# modify it under the terms of the GNU Lesser General Public
762 +# License as published by the Free Software Foundation; either
763 +# version 2.1 of the License, or (at your option) any later version.
764 +#
765 +# This library is distributed in the hope that it will be useful,
766 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
767 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
768 +# Lesser General Public License for more details.
769 +#
770 +# You should have received a copy of the GNU Lesser General Public
771 +# License along with this library; if not, write to the Free Software
772 +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
773 +# USA
774 +
775 +from _gobject import type_from_name
776 +from _constants import *
777 +
778 +# TYPE_INVALID defined in gobjectmodule.c
779 +TYPE_NONE = type_from_name('void')
780 +TYPE_INTERFACE = type_from_name('GInterface')
781 +TYPE_CHAR = type_from_name('gchar')
782 +TYPE_UCHAR = type_from_name('guchar')
783 +TYPE_BOOLEAN = type_from_name('gboolean')
784 +TYPE_INT = type_from_name('gint')
785 +TYPE_UINT = type_from_name('guint')
786 +TYPE_LONG = type_from_name('glong')
787 +TYPE_ULONG = type_from_name('gulong')
788 +TYPE_INT64 = type_from_name('gint64')
789 +TYPE_UINT64 = type_from_name('guint64')
790 +TYPE_ENUM = type_from_name('GEnum')
791 +TYPE_FLAGS = type_from_name('GFlags')
792 +TYPE_FLOAT = type_from_name('gfloat')
793 +TYPE_DOUBLE = type_from_name('gdouble')
794 +TYPE_STRING = type_from_name('gchararray')
795 +TYPE_POINTER = type_from_name('gpointer')
796 +TYPE_BOXED = type_from_name('GBoxed')
797 +TYPE_PARAM = type_from_name('GParam')
798 +TYPE_OBJECT = type_from_name('GObject')
799 +TYPE_PYOBJECT = type_from_name('PyObject')
800 +TYPE_UNICHAR = TYPE_UINT
801 +