802 lines
55 KiB
Diff
802 lines
55 KiB
Diff
|
diff --git a/gobject/Makefile.am b/gobject/Makefile.am
|
||
|
index 94cafc7..96e16e8 100644
|
||
|
--- a/gobject/Makefile.am
|
||
|
+++ b/gobject/Makefile.am
|
||
|
@@ -13,7 +13,7 @@ pygobject_PYTHON = \
|
||
|
__init__.py \
|
||
|
option.py \
|
||
|
propertyhelper.py
|
||
|
-pygobject_LTLIBRARIES = _gobject.la
|
||
|
+pygobject_LTLIBRARIES = _constants.la _gobject.la
|
||
|
nodist_pygobject_PYTHON = constants.py
|
||
|
|
||
|
common_ldflags = -module -avoid-version
|
||
|
@@ -21,18 +21,13 @@ if PLATFORM_WIN32
|
||
|
common_ldflags += -no-undefined
|
||
|
endif
|
||
|
|
||
|
-constants.py: generate-constants$(EXEEXT) constants.py.in
|
||
|
- rm -f constants.py
|
||
|
- cp $(srcdir)/constants.py.in constants.py
|
||
|
- chmod 644 constants.py
|
||
|
- $(top_builddir)/gobject/generate-constants$(EXEEXT) >> constants.py
|
||
|
- chmod 444 constants.py
|
||
|
-
|
||
|
-generate_constants_CFLAGS = $(GLIB_CFLAGS)
|
||
|
-noinst_PROGRAMS = generate-constants
|
||
|
CLEANFILES = constants.py
|
||
|
EXTRA_DIST = constants.py.in
|
||
|
|
||
|
+_constants_la_CFLAGS = $(GLIB_CFLAGS)
|
||
|
+_constants_la_LDFLAGS = $(common_ldflags) -export-symbols-regex init_constants
|
||
|
+_constants_la_SOURCES = _constants.c
|
||
|
+
|
||
|
_gobject_la_CFLAGS = $(GLIB_CFLAGS)
|
||
|
_gobject_la_LDFLAGS = $(common_ldflags) -export-symbols-regex init_gobject
|
||
|
_gobject_la_LIBADD = $(GLIB_LIBS) $(FFI_LIBS)
|
||
|
diff --git a/gobject/Makefile.in b/gobject/Makefile.in
|
||
|
index 55899a3..c2dd358 100644
|
||
|
--- a/gobject/Makefile.in
|
||
|
+++ b/gobject/Makefile.in
|
||
|
@@ -1,8 +1,8 @@
|
||
|
-# Makefile.in generated by automake 1.10.1 from Makefile.am.
|
||
|
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
||
|
# @configure_input@
|
||
|
|
||
|
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||
|
-# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||
|
+# 2003, 2004, 2005 Free Software Foundation, Inc.
|
||
|
# This Makefile.in is free software; the Free Software Foundation
|
||
|
# gives unlimited permission to copy and/or distribute it,
|
||
|
# with or without modifications, as long as this notice is preserved.
|
||
|
@@ -15,11 +15,14 @@
|
||
|
@SET_MAKE@
|
||
|
|
||
|
|
||
|
-
|
||
|
+srcdir = @srcdir@
|
||
|
+top_srcdir = @top_srcdir@
|
||
|
VPATH = @srcdir@
|
||
|
pkgdatadir = $(datadir)/@PACKAGE@
|
||
|
pkglibdir = $(libdir)/@PACKAGE@
|
||
|
+top_builddir = ..
|
||
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||
|
+INSTALL = @INSTALL@
|
||
|
install_sh_DATA = $(install_sh) -c -m 644
|
||
|
install_sh_PROGRAM = $(install_sh) -c
|
||
|
install_sh_SCRIPT = $(install_sh) -c
|
||
|
@@ -34,7 +37,6 @@ POST_UNINSTALL = :
|
||
|
build_triplet = @build@
|
||
|
host_triplet = @host@
|
||
|
@PLATFORM_WIN32_TRUE@am__append_1 = -no-undefined
|
||
|
-noinst_PROGRAMS = generate-constants$(EXEEXT)
|
||
|
@HAVE_LIBFFI_TRUE@am__append_2 = ffi-marshaller.c ffi-marshaller.h
|
||
|
@PLATFORM_WIN32_TRUE@am__append_3 = -DPLATFORM_WIN32
|
||
|
subdir = gobject
|
||
|
@@ -60,6 +62,9 @@ am__installdirs = "$(DESTDIR)$(pygobjectdir)" \
|
||
|
"$(DESTDIR)$(pkgincludedir)"
|
||
|
pygobjectLTLIBRARIES_INSTALL = $(INSTALL)
|
||
|
LTLIBRARIES = $(pygobject_LTLIBRARIES)
|
||
|
+_constants_la_LIBADD =
|
||
|
+am__constants_la_OBJECTS = _constants_la-_constants.lo
|
||
|
+_constants_la_OBJECTS = $(am__constants_la_OBJECTS)
|
||
|
am__DEPENDENCIES_1 =
|
||
|
am___gobject_la_SOURCES_DIST = gobjectmodule.c pygboxed.c pygenum.c \
|
||
|
pygflags.c pygobject.c pygobject.h pygobject-private.h \
|
||
|
@@ -76,32 +81,20 @@ am__gobject_la_OBJECTS = _gobject_la-gobjectmodule.lo \
|
||
|
_gobject_la-pygtype.lo _gobject_la-pygoptioncontext.lo \
|
||
|
_gobject_la-pygoptiongroup.lo $(am__objects_1)
|
||
|
_gobject_la_OBJECTS = $(am__gobject_la_OBJECTS)
|
||
|
-_gobject_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||
|
- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(_gobject_la_CFLAGS) \
|
||
|
- $(CFLAGS) $(_gobject_la_LDFLAGS) $(LDFLAGS) -o $@
|
||
|
-PROGRAMS = $(noinst_PROGRAMS)
|
||
|
-generate_constants_SOURCES = generate-constants.c
|
||
|
-generate_constants_OBJECTS = \
|
||
|
- generate_constants-generate-constants.$(OBJEXT)
|
||
|
-generate_constants_LDADD = $(LDADD)
|
||
|
-generate_constants_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||
|
- $(LIBTOOLFLAGS) --mode=link $(CCLD) \
|
||
|
- $(generate_constants_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
||
|
- $(LDFLAGS) -o $@
|
||
|
-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
|
||
|
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
|
||
|
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||
|
am__depfiles_maybe = depfiles
|
||
|
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||
|
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||
|
-LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||
|
- --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||
|
- $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||
|
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
||
|
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||
|
+ $(AM_CFLAGS) $(CFLAGS)
|
||
|
CCLD = $(CC)
|
||
|
-LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||
|
- --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
||
|
- $(LDFLAGS) -o $@
|
||
|
-SOURCES = $(_gobject_la_SOURCES) generate-constants.c
|
||
|
-DIST_SOURCES = $(am___gobject_la_SOURCES_DIST) generate-constants.c
|
||
|
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||
|
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||
|
+SOURCES = $(_constants_la_SOURCES) $(_gobject_la_SOURCES)
|
||
|
+DIST_SOURCES = $(_constants_la_SOURCES) \
|
||
|
+ $(am___gobject_la_SOURCES_DIST)
|
||
|
nodist_pygobjectPYTHON_INSTALL = $(INSTALL_DATA)
|
||
|
pygobjectPYTHON_INSTALL = $(INSTALL_DATA)
|
||
|
py_compile = $(top_srcdir)/py-compile
|
||
|
@@ -113,6 +106,8 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||
|
pkgincludedir = $(includedir)/pygtk-$(PLATFORM_VERSION)
|
||
|
ACLOCAL = @ACLOCAL@
|
||
|
ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@
|
||
|
+AMDEP_FALSE = @AMDEP_FALSE@
|
||
|
+AMDEP_TRUE = @AMDEP_TRUE@
|
||
|
AMTAR = @AMTAR@
|
||
|
AR = @AR@
|
||
|
AS = @AS@
|
||
|
@@ -120,6 +115,10 @@ AUTOCONF = @AUTOCONF@
|
||
|
AUTOHEADER = @AUTOHEADER@
|
||
|
AUTOMAKE = @AUTOMAKE@
|
||
|
AWK = @AWK@
|
||
|
+BUILD_GIOUNIX_FALSE = @BUILD_GIOUNIX_FALSE@
|
||
|
+BUILD_GIOUNIX_TRUE = @BUILD_GIOUNIX_TRUE@
|
||
|
+BUILD_GIO_FALSE = @BUILD_GIO_FALSE@
|
||
|
+BUILD_GIO_TRUE = @BUILD_GIO_TRUE@
|
||
|
CC = @CC@
|
||
|
CCDEPMODE = @CCDEPMODE@
|
||
|
CFLAGS = @CFLAGS@
|
||
|
@@ -130,11 +129,14 @@ DATADIR = @DATADIR@
|
||
|
DEFS = @DEFS@
|
||
|
DEPDIR = @DEPDIR@
|
||
|
DLLTOOL = @DLLTOOL@
|
||
|
+DSYMUTIL = @DSYMUTIL@
|
||
|
ECHO = @ECHO@
|
||
|
ECHO_C = @ECHO_C@
|
||
|
ECHO_N = @ECHO_N@
|
||
|
ECHO_T = @ECHO_T@
|
||
|
EGREP = @EGREP@
|
||
|
+ENABLE_DOCS_FALSE = @ENABLE_DOCS_FALSE@
|
||
|
+ENABLE_DOCS_TRUE = @ENABLE_DOCS_TRUE@
|
||
|
EXEEXT = @EXEEXT@
|
||
|
FFI_LIBS = @FFI_LIBS@
|
||
|
GIOUNIX_CFLAGS = @GIOUNIX_CFLAGS@
|
||
|
@@ -147,7 +149,8 @@ GLIB_LIBS = @GLIB_LIBS@
|
||
|
GLIB_MKENUMS = @GLIB_MKENUMS@
|
||
|
GOBJECT_QUERY = @GOBJECT_QUERY@
|
||
|
GREP = @GREP@
|
||
|
-INSTALL = @INSTALL@
|
||
|
+HAVE_LIBFFI_FALSE = @HAVE_LIBFFI_FALSE@
|
||
|
+HAVE_LIBFFI_TRUE = @HAVE_LIBFFI_TRUE@
|
||
|
INSTALL_DATA = @INSTALL_DATA@
|
||
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||
|
@@ -159,9 +162,11 @@ LIBTOOL = @LIBTOOL@
|
||
|
LN_S = @LN_S@
|
||
|
LTLIBOBJS = @LTLIBOBJS@
|
||
|
MAKEINFO = @MAKEINFO@
|
||
|
-MKDIR_P = @MKDIR_P@
|
||
|
+NMEDIT = @NMEDIT@
|
||
|
OBJDUMP = @OBJDUMP@
|
||
|
OBJEXT = @OBJEXT@
|
||
|
+OS_WIN32_FALSE = @OS_WIN32_FALSE@
|
||
|
+OS_WIN32_TRUE = @OS_WIN32_TRUE@
|
||
|
PACKAGE = @PACKAGE@
|
||
|
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||
|
PACKAGE_NAME = @PACKAGE_NAME@
|
||
|
@@ -171,6 +176,8 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
|
||
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||
|
PKG_CONFIG = @PKG_CONFIG@
|
||
|
PLATFORM = @PLATFORM@
|
||
|
+PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@
|
||
|
+PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@
|
||
|
PYGOBJECT_MAJOR_VERSION = @PYGOBJECT_MAJOR_VERSION@
|
||
|
PYGOBJECT_MICRO_VERSION = @PYGOBJECT_MICRO_VERSION@
|
||
|
PYGOBJECT_MINOR_VERSION = @PYGOBJECT_MINOR_VERSION@
|
||
|
@@ -188,11 +195,9 @@ STRIP = @STRIP@
|
||
|
THREADING_CFLAGS = @THREADING_CFLAGS@
|
||
|
VERSION = @VERSION@
|
||
|
XSLTPROC = @XSLTPROC@
|
||
|
-abs_builddir = @abs_builddir@
|
||
|
-abs_srcdir = @abs_srcdir@
|
||
|
-abs_top_builddir = @abs_top_builddir@
|
||
|
-abs_top_srcdir = @abs_top_srcdir@
|
||
|
ac_ct_CC = @ac_ct_CC@
|
||
|
+am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||
|
+am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||
|
am__include = @am__include@
|
||
|
am__leading_dot = @am__leading_dot@
|
||
|
am__quote = @am__quote@
|
||
|
@@ -204,7 +209,6 @@ build_alias = @build_alias@
|
||
|
build_cpu = @build_cpu@
|
||
|
build_os = @build_os@
|
||
|
build_vendor = @build_vendor@
|
||
|
-builddir = @builddir@
|
||
|
datadir = @datadir@
|
||
|
datarootdir = @datarootdir@
|
||
|
docdir = @docdir@
|
||
|
@@ -237,11 +241,8 @@ pygobject_CODEGEN_DEFINES = @pygobject_CODEGEN_DEFINES@
|
||
|
pythondir = @pythondir@
|
||
|
sbindir = @sbindir@
|
||
|
sharedstatedir = @sharedstatedir@
|
||
|
-srcdir = @srcdir@
|
||
|
sysconfdir = @sysconfdir@
|
||
|
target_alias = @target_alias@
|
||
|
-top_builddir = @top_builddir@
|
||
|
-top_srcdir = @top_srcdir@
|
||
|
AUTOMAKE_OPTIONS = 1.7
|
||
|
PLATFORM_VERSION = 2.0
|
||
|
INCLUDES = $(PYTHON_INCLUDES) $(GLIB_CFLAGS) -DPY_SSIZE_T_CLEAN
|
||
|
@@ -254,12 +255,14 @@ pygobject_PYTHON = \
|
||
|
option.py \
|
||
|
propertyhelper.py
|
||
|
|
||
|
-pygobject_LTLIBRARIES = _gobject.la
|
||
|
+pygobject_LTLIBRARIES = _constants.la _gobject.la
|
||
|
nodist_pygobject_PYTHON = constants.py
|
||
|
common_ldflags = -module -avoid-version $(am__append_1)
|
||
|
-generate_constants_CFLAGS = $(GLIB_CFLAGS)
|
||
|
CLEANFILES = constants.py
|
||
|
EXTRA_DIST = constants.py.in
|
||
|
+_constants_la_CFLAGS = $(GLIB_CFLAGS)
|
||
|
+_constants_la_LDFLAGS = $(common_ldflags) -export-symbols-regex init_constants
|
||
|
+_constants_la_SOURCES = _constants.c
|
||
|
_gobject_la_CFLAGS = $(GLIB_CFLAGS) $(am__append_3)
|
||
|
_gobject_la_LDFLAGS = $(common_ldflags) -export-symbols-regex init_gobject
|
||
|
_gobject_la_LIBADD = $(GLIB_LIBS) $(FFI_LIBS)
|
||
|
@@ -304,21 +307,21 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||
|
install-pygobjectLTLIBRARIES: $(pygobject_LTLIBRARIES)
|
||
|
@$(NORMAL_INSTALL)
|
||
|
- test -z "$(pygobjectdir)" || $(MKDIR_P) "$(DESTDIR)$(pygobjectdir)"
|
||
|
+ test -z "$(pygobjectdir)" || $(mkdir_p) "$(DESTDIR)$(pygobjectdir)"
|
||
|
@list='$(pygobject_LTLIBRARIES)'; for p in $$list; do \
|
||
|
if test -f $$p; then \
|
||
|
f=$(am__strip_dir) \
|
||
|
- echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(pygobjectLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(pygobjectdir)/$$f'"; \
|
||
|
- $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(pygobjectLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(pygobjectdir)/$$f"; \
|
||
|
+ echo " $(LIBTOOL) --mode=install $(pygobjectLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(pygobjectdir)/$$f'"; \
|
||
|
+ $(LIBTOOL) --mode=install $(pygobjectLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(pygobjectdir)/$$f"; \
|
||
|
else :; fi; \
|
||
|
done
|
||
|
|
||
|
uninstall-pygobjectLTLIBRARIES:
|
||
|
@$(NORMAL_UNINSTALL)
|
||
|
- @list='$(pygobject_LTLIBRARIES)'; for p in $$list; do \
|
||
|
+ @set -x; list='$(pygobject_LTLIBRARIES)'; for p in $$list; do \
|
||
|
p=$(am__strip_dir) \
|
||
|
- echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pygobjectdir)/$$p'"; \
|
||
|
- $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pygobjectdir)/$$p"; \
|
||
|
+ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(pygobjectdir)/$$p'"; \
|
||
|
+ $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(pygobjectdir)/$$p"; \
|
||
|
done
|
||
|
|
||
|
clean-pygobjectLTLIBRARIES:
|
||
|
@@ -329,18 +332,10 @@ clean-pygobjectLTLIBRARIES:
|
||
|
echo "rm -f \"$${dir}/so_locations\""; \
|
||
|
rm -f "$${dir}/so_locations"; \
|
||
|
done
|
||
|
+_constants.la: $(_constants_la_OBJECTS) $(_constants_la_DEPENDENCIES)
|
||
|
+ $(LINK) -rpath $(pygobjectdir) $(_constants_la_LDFLAGS) $(_constants_la_OBJECTS) $(_constants_la_LIBADD) $(LIBS)
|
||
|
_gobject.la: $(_gobject_la_OBJECTS) $(_gobject_la_DEPENDENCIES)
|
||
|
- $(_gobject_la_LINK) -rpath $(pygobjectdir) $(_gobject_la_OBJECTS) $(_gobject_la_LIBADD) $(LIBS)
|
||
|
-
|
||
|
-clean-noinstPROGRAMS:
|
||
|
- @list='$(noinst_PROGRAMS)'; for p in $$list; do \
|
||
|
- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
|
||
|
- echo " rm -f $$p $$f"; \
|
||
|
- rm -f $$p $$f ; \
|
||
|
- done
|
||
|
-generate-constants$(EXEEXT): $(generate_constants_OBJECTS) $(generate_constants_DEPENDENCIES)
|
||
|
- @rm -f generate-constants$(EXEEXT)
|
||
|
- $(generate_constants_LINK) $(generate_constants_OBJECTS) $(generate_constants_LDADD) $(LIBS)
|
||
|
+ $(LINK) -rpath $(pygobjectdir) $(_gobject_la_LDFLAGS) $(_gobject_la_OBJECTS) $(_gobject_la_LIBADD) $(LIBS)
|
||
|
|
||
|
mostlyclean-compile:
|
||
|
-rm -f *.$(OBJEXT)
|
||
|
@@ -348,6 +343,7 @@ mostlyclean-compile:
|
||
|
distclean-compile:
|
||
|
-rm -f *.tab.c
|
||
|
|
||
|
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_constants_la-_constants.Plo@am__quote@
|
||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-ffi-marshaller.Plo@am__quote@
|
||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-gobjectmodule.Plo@am__quote@
|
||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-pygboxed.Plo@am__quote@
|
||
|
@@ -363,156 +359,152 @@ distclean-compile:
|
||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-pygpointer.Plo@am__quote@
|
||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-pygsource.Plo@am__quote@
|
||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-pygtype.Plo@am__quote@
|
||
|
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/generate_constants-generate-constants.Po@am__quote@
|
||
|
|
||
|
.c.o:
|
||
|
-@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||
|
+@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||
|
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
||
|
|
||
|
.c.obj:
|
||
|
-@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||
|
+@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
||
|
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||
|
|
||
|
.c.lo:
|
||
|
-@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||
|
+@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||
|
+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
||
|
|
||
|
+_constants_la-_constants.lo: _constants.c
|
||
|
+@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; \
|
||
|
+@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
|
||
|
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='_constants.c' object='_constants_la-_constants.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
+@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
+@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
|
||
|
+
|
||
|
_gobject_la-gobjectmodule.lo: gobjectmodule.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-gobjectmodule.Tpo $(DEPDIR)/_gobject_la-gobjectmodule.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gobjectmodule.c' object='_gobject_la-gobjectmodule.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygboxed.lo: pygboxed.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygboxed.Tpo $(DEPDIR)/_gobject_la-pygboxed.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygboxed.c' object='_gobject_la-pygboxed.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygenum.lo: pygenum.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygenum.Tpo $(DEPDIR)/_gobject_la-pygenum.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygenum.c' object='_gobject_la-pygenum.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygflags.lo: pygflags.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygflags.Tpo $(DEPDIR)/_gobject_la-pygflags.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygflags.c' object='_gobject_la-pygflags.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygobject.lo: pygobject.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygobject.Tpo $(DEPDIR)/_gobject_la-pygobject.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygobject.c' object='_gobject_la-pygobject.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygmaincontext.lo: pygmaincontext.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygmaincontext.Tpo $(DEPDIR)/_gobject_la-pygmaincontext.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygmaincontext.c' object='_gobject_la-pygmaincontext.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygmainloop.lo: pygmainloop.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygmainloop.Tpo $(DEPDIR)/_gobject_la-pygmainloop.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygmainloop.c' object='_gobject_la-pygmainloop.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygparamspec.lo: pygparamspec.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygparamspec.Tpo $(DEPDIR)/_gobject_la-pygparamspec.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygparamspec.c' object='_gobject_la-pygparamspec.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygpointer.lo: pygpointer.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygpointer.Tpo $(DEPDIR)/_gobject_la-pygpointer.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygpointer.c' object='_gobject_la-pygpointer.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygiochannel.lo: pygiochannel.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygiochannel.Tpo $(DEPDIR)/_gobject_la-pygiochannel.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygiochannel.c' object='_gobject_la-pygiochannel.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygsource.lo: pygsource.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygsource.Tpo $(DEPDIR)/_gobject_la-pygsource.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygsource.c' object='_gobject_la-pygsource.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygtype.lo: pygtype.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygtype.Tpo $(DEPDIR)/_gobject_la-pygtype.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygtype.c' object='_gobject_la-pygtype.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygoptioncontext.lo: pygoptioncontext.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygoptioncontext.Tpo $(DEPDIR)/_gobject_la-pygoptioncontext.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygoptioncontext.c' object='_gobject_la-pygoptioncontext.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-pygoptiongroup.lo: pygoptiongroup.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-pygoptiongroup.Tpo $(DEPDIR)/_gobject_la-pygoptiongroup.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pygoptiongroup.c' object='_gobject_la-pygoptiongroup.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
+@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
|
||
|
|
||
|
_gobject_la-ffi-marshaller.lo: ffi-marshaller.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/_gobject_la-ffi-marshaller.Tpo $(DEPDIR)/_gobject_la-ffi-marshaller.Plo
|
||
|
+@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; \
|
||
|
+@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
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ffi-marshaller.c' object='_gobject_la-ffi-marshaller.lo' libtool=yes @AMDEPBACKSLASH@
|
||
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
-
|
||
|
-generate_constants-generate-constants.o: generate-constants.c
|
||
|
-@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
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/generate_constants-generate-constants.Tpo $(DEPDIR)/generate_constants-generate-constants.Po
|
||
|
-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='generate-constants.c' object='generate_constants-generate-constants.o' libtool=no @AMDEPBACKSLASH@
|
||
|
-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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
|
||
|
-
|
||
|
-generate_constants-generate-constants.obj: generate-constants.c
|
||
|
-@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`
|
||
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/generate_constants-generate-constants.Tpo $(DEPDIR)/generate_constants-generate-constants.Po
|
||
|
-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='generate-constants.c' object='generate_constants-generate-constants.obj' libtool=no @AMDEPBACKSLASH@
|
||
|
-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||
|
-@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`
|
||
|
+@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
|
||
|
|
||
|
mostlyclean-libtool:
|
||
|
-rm -f *.lo
|
||
|
|
||
|
clean-libtool:
|
||
|
-rm -rf .libs _libs
|
||
|
+
|
||
|
+distclean-libtool:
|
||
|
+ -rm -f libtool
|
||
|
+uninstall-info-am:
|
||
|
install-nodist_pygobjectPYTHON: $(nodist_pygobject_PYTHON)
|
||
|
@$(NORMAL_INSTALL)
|
||
|
- test -z "$(pygobjectdir)" || $(MKDIR_P) "$(DESTDIR)$(pygobjectdir)"
|
||
|
+ test -z "$(pygobjectdir)" || $(mkdir_p) "$(DESTDIR)$(pygobjectdir)"
|
||
|
@list='$(nodist_pygobject_PYTHON)'; dlist=''; for p in $$list; do\
|
||
|
if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \
|
||
|
if test -f $$b$$p; then \
|
||
|
@@ -540,7 +532,7 @@ uninstall-nodist_pygobjectPYTHON:
|
||
|
done
|
||
|
install-pygobjectPYTHON: $(pygobject_PYTHON)
|
||
|
@$(NORMAL_INSTALL)
|
||
|
- test -z "$(pygobjectdir)" || $(MKDIR_P) "$(DESTDIR)$(pygobjectdir)"
|
||
|
+ test -z "$(pygobjectdir)" || $(mkdir_p) "$(DESTDIR)$(pygobjectdir)"
|
||
|
@list='$(pygobject_PYTHON)'; dlist=''; for p in $$list; do\
|
||
|
if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \
|
||
|
if test -f $$b$$p; then \
|
||
|
@@ -568,7 +560,7 @@ uninstall-pygobjectPYTHON:
|
||
|
done
|
||
|
install-pkgincludeHEADERS: $(pkginclude_HEADERS)
|
||
|
@$(NORMAL_INSTALL)
|
||
|
- test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)"
|
||
|
+ test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)"
|
||
|
@list='$(pkginclude_HEADERS)'; for p in $$list; do \
|
||
|
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||
|
f=$(am__strip_dir) \
|
||
|
@@ -589,8 +581,8 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||
|
unique=`for i in $$list; do \
|
||
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||
|
done | \
|
||
|
- $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
|
||
|
- END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||
|
+ $(AWK) ' { files[$$0] = 1; } \
|
||
|
+ END { for (i in files) print i; }'`; \
|
||
|
mkid -fID $$unique
|
||
|
tags: TAGS
|
||
|
|
||
|
@@ -602,8 +594,8 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||
|
unique=`for i in $$list; do \
|
||
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||
|
done | \
|
||
|
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||
|
- END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||
|
+ $(AWK) ' { files[$$0] = 1; } \
|
||
|
+ END { for (i in files) print i; }'`; \
|
||
|
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||
|
test -n "$$unique" || unique=$$empty_fix; \
|
||
|
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||
|
@@ -613,12 +605,13 @@ ctags: CTAGS
|
||
|
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||
|
$(TAGS_FILES) $(LISP)
|
||
|
tags=; \
|
||
|
+ here=`pwd`; \
|
||
|
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||
|
unique=`for i in $$list; do \
|
||
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||
|
done | \
|
||
|
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||
|
- END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||
|
+ $(AWK) ' { files[$$0] = 1; } \
|
||
|
+ END { for (i in files) print i; }'`; \
|
||
|
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||
|
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||
|
$$tags $$unique
|
||
|
@@ -632,21 +625,22 @@ distclean-tags:
|
||
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||
|
|
||
|
distdir: $(DISTFILES)
|
||
|
- @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||
|
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||
|
- list='$(DISTFILES)'; \
|
||
|
- dist_files=`for file in $$list; do echo $$file; done | \
|
||
|
- sed -e "s|^$$srcdirstrip/||;t" \
|
||
|
- -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||
|
- case $$dist_files in \
|
||
|
- */*) $(MKDIR_P) `echo "$$dist_files" | \
|
||
|
- sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||
|
- sort -u` ;; \
|
||
|
- esac; \
|
||
|
- for file in $$dist_files; do \
|
||
|
+ @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||
|
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||
|
+ list='$(DISTFILES)'; for file in $$list; do \
|
||
|
+ case $$file in \
|
||
|
+ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||
|
+ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||
|
+ esac; \
|
||
|
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||
|
+ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||
|
+ if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||
|
+ dir="/$$dir"; \
|
||
|
+ $(mkdir_p) "$(distdir)$$dir"; \
|
||
|
+ else \
|
||
|
+ dir=''; \
|
||
|
+ fi; \
|
||
|
if test -d $$d/$$file; then \
|
||
|
- dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||
|
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||
|
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||
|
fi; \
|
||
|
@@ -659,10 +653,10 @@ distdir: $(DISTFILES)
|
||
|
done
|
||
|
check-am: all-am
|
||
|
check: check-am
|
||
|
-all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS)
|
||
|
+all-am: Makefile $(LTLIBRARIES) $(HEADERS)
|
||
|
installdirs:
|
||
|
for dir in "$(DESTDIR)$(pygobjectdir)" "$(DESTDIR)$(pygobjectdir)" "$(DESTDIR)$(pygobjectdir)" "$(DESTDIR)$(pkgincludedir)"; do \
|
||
|
- test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||
|
+ test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||
|
done
|
||
|
install: install-am
|
||
|
install-exec: install-exec-am
|
||
|
@@ -691,14 +685,14 @@ maintainer-clean-generic:
|
||
|
@echo "it deletes files that may require special tools to rebuild."
|
||
|
clean: clean-am
|
||
|
|
||
|
-clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
|
||
|
- clean-pygobjectLTLIBRARIES mostlyclean-am
|
||
|
+clean-am: clean-generic clean-libtool clean-pygobjectLTLIBRARIES \
|
||
|
+ mostlyclean-am
|
||
|
|
||
|
distclean: distclean-am
|
||
|
-rm -rf ./$(DEPDIR)
|
||
|
-rm -f Makefile
|
||
|
distclean-am: clean-am distclean-compile distclean-generic \
|
||
|
- distclean-tags
|
||
|
+ distclean-libtool distclean-tags
|
||
|
|
||
|
dvi: dvi-am
|
||
|
|
||
|
@@ -714,20 +708,12 @@ install-data-am: install-nodist_pygobjectPYTHON \
|
||
|
install-pkgincludeHEADERS install-pygobjectLTLIBRARIES \
|
||
|
install-pygobjectPYTHON
|
||
|
|
||
|
-install-dvi: install-dvi-am
|
||
|
-
|
||
|
install-exec-am:
|
||
|
|
||
|
-install-html: install-html-am
|
||
|
-
|
||
|
install-info: install-info-am
|
||
|
|
||
|
install-man:
|
||
|
|
||
|
-install-pdf: install-pdf-am
|
||
|
-
|
||
|
-install-ps: install-ps-am
|
||
|
-
|
||
|
installcheck-am:
|
||
|
|
||
|
maintainer-clean: maintainer-clean-am
|
||
|
@@ -748,37 +734,26 @@ ps: ps-am
|
||
|
|
||
|
ps-am:
|
||
|
|
||
|
-uninstall-am: uninstall-nodist_pygobjectPYTHON \
|
||
|
+uninstall-am: uninstall-info-am uninstall-nodist_pygobjectPYTHON \
|
||
|
uninstall-pkgincludeHEADERS uninstall-pygobjectLTLIBRARIES \
|
||
|
uninstall-pygobjectPYTHON
|
||
|
|
||
|
-.MAKE: install-am install-strip
|
||
|
-
|
||
|
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||
|
- clean-libtool clean-noinstPROGRAMS clean-pygobjectLTLIBRARIES \
|
||
|
- ctags distclean distclean-compile distclean-generic \
|
||
|
- distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||
|
- html-am info info-am install install-am install-data \
|
||
|
- install-data-am install-dvi install-dvi-am install-exec \
|
||
|
- install-exec-am install-html install-html-am install-info \
|
||
|
- install-info-am install-man install-nodist_pygobjectPYTHON \
|
||
|
- install-pdf install-pdf-am install-pkgincludeHEADERS \
|
||
|
- install-ps install-ps-am install-pygobjectLTLIBRARIES \
|
||
|
- install-pygobjectPYTHON install-strip installcheck \
|
||
|
- installcheck-am installdirs maintainer-clean \
|
||
|
- maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||
|
- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||
|
- tags uninstall uninstall-am uninstall-nodist_pygobjectPYTHON \
|
||
|
+ clean-libtool clean-pygobjectLTLIBRARIES ctags distclean \
|
||
|
+ distclean-compile distclean-generic distclean-libtool \
|
||
|
+ distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||
|
+ install install-am install-data install-data-am install-exec \
|
||
|
+ install-exec-am install-info install-info-am install-man \
|
||
|
+ install-nodist_pygobjectPYTHON install-pkgincludeHEADERS \
|
||
|
+ install-pygobjectLTLIBRARIES install-pygobjectPYTHON \
|
||
|
+ install-strip installcheck installcheck-am installdirs \
|
||
|
+ maintainer-clean maintainer-clean-generic mostlyclean \
|
||
|
+ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
|
||
|
+ pdf pdf-am ps ps-am tags uninstall uninstall-am \
|
||
|
+ uninstall-info-am uninstall-nodist_pygobjectPYTHON \
|
||
|
uninstall-pkgincludeHEADERS uninstall-pygobjectLTLIBRARIES \
|
||
|
uninstall-pygobjectPYTHON
|
||
|
|
||
|
-
|
||
|
-constants.py: generate-constants$(EXEEXT) constants.py.in
|
||
|
- rm -f constants.py
|
||
|
- cp $(srcdir)/constants.py.in constants.py
|
||
|
- chmod 644 constants.py
|
||
|
- $(top_builddir)/gobject/generate-constants$(EXEEXT) >> constants.py
|
||
|
- chmod 444 constants.py
|
||
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||
|
.NOEXPORT:
|
||
|
diff --git a/gobject/_constants.c b/gobject/_constants.c
|
||
|
index e69de29..c304105 100644
|
||
|
--- a/gobject/_constants.c
|
||
|
+++ b/gobject/_constants.c
|
||
|
@@ -0,0 +1,26 @@
|
||
|
+#include <Python.h>
|
||
|
+#include <glibconfig.h>
|
||
|
+
|
||
|
+DL_EXPORT(void)
|
||
|
+init_constants(void)
|
||
|
+{
|
||
|
+ PyObject *m, *d;
|
||
|
+
|
||
|
+ m = Py_InitModule("gobject._constants", NULL);
|
||
|
+ d = PyModule_GetDict(m);
|
||
|
+
|
||
|
+ PyDict_SetItemString(d, "G_MINFLOAT", PyFloat_FromDouble(G_MINFLOAT));
|
||
|
+ PyDict_SetItemString(d, "G_MAXFLOAT", PyFloat_FromDouble(G_MAXFLOAT));
|
||
|
+ PyDict_SetItemString(d, "G_MINDOUBLE", PyFloat_FromDouble(G_MINDOUBLE));
|
||
|
+ PyDict_SetItemString(d, "G_MAXDOUBLE", PyFloat_FromDouble(G_MAXDOUBLE));
|
||
|
+ PyDict_SetItemString(d, "G_MINSHORT", PyLong_FromLong(G_MINSHORT));
|
||
|
+ PyDict_SetItemString(d, "G_MAXSHORT", PyLong_FromLong(G_MAXSHORT));
|
||
|
+ PyDict_SetItemString(d, "G_MAXUSHORT", PyLong_FromUnsignedLong(G_MAXUSHORT));
|
||
|
+ PyDict_SetItemString(d, "G_MININT", PyLong_FromLong(G_MININT));
|
||
|
+ PyDict_SetItemString(d, "G_MAXINT", PyLong_FromLong(G_MAXINT));
|
||
|
+ PyDict_SetItemString(d, "G_MAXUINT", PyLong_FromUnsignedLong(G_MAXUINT));
|
||
|
+ PyDict_SetItemString(d, "G_MINLONG", PyLong_FromLong(G_MINLONG));
|
||
|
+ PyDict_SetItemString(d, "G_MAXLONG", PyLong_FromLong(G_MAXLONG));
|
||
|
+ PyDict_SetItemString(d, "G_MAXULONG", PyLong_FromUnsignedLong(G_MAXULONG));
|
||
|
+}
|
||
|
+
|
||
|
diff --git a/gobject/constants.py b/gobject/constants.py
|
||
|
--- a/gobject/constants.py
|
||
|
+++ b/gobject/constants.py
|
||
|
@@ -0,0 +1,48 @@
|
||
|
+# -*- Mode: Python; py-indent-offset: 4 -*-
|
||
|
+# pygobject - Python bindings for the GObject library
|
||
|
+# Copyright (C) 2006-2007 Johan Dahlin
|
||
|
+#
|
||
|
+# gobject/constants.py: GObject type constants
|
||
|
+#
|
||
|
+# This library is free software; you can redistribute it and/or
|
||
|
+# modify it under the terms of the GNU Lesser General Public
|
||
|
+# License as published by the Free Software Foundation; either
|
||
|
+# version 2.1 of the License, or (at your option) any later version.
|
||
|
+#
|
||
|
+# This library is distributed in the hope that it will be useful,
|
||
|
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
+# Lesser General Public License for more details.
|
||
|
+#
|
||
|
+# You should have received a copy of the GNU Lesser General Public
|
||
|
+# License along with this library; if not, write to the Free Software
|
||
|
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||
|
+# USA
|
||
|
+
|
||
|
+from _gobject import type_from_name
|
||
|
+from _constants import *
|
||
|
+
|
||
|
+# TYPE_INVALID defined in gobjectmodule.c
|
||
|
+TYPE_NONE = type_from_name('void')
|
||
|
+TYPE_INTERFACE = type_from_name('GInterface')
|
||
|
+TYPE_CHAR = type_from_name('gchar')
|
||
|
+TYPE_UCHAR = type_from_name('guchar')
|
||
|
+TYPE_BOOLEAN = type_from_name('gboolean')
|
||
|
+TYPE_INT = type_from_name('gint')
|
||
|
+TYPE_UINT = type_from_name('guint')
|
||
|
+TYPE_LONG = type_from_name('glong')
|
||
|
+TYPE_ULONG = type_from_name('gulong')
|
||
|
+TYPE_INT64 = type_from_name('gint64')
|
||
|
+TYPE_UINT64 = type_from_name('guint64')
|
||
|
+TYPE_ENUM = type_from_name('GEnum')
|
||
|
+TYPE_FLAGS = type_from_name('GFlags')
|
||
|
+TYPE_FLOAT = type_from_name('gfloat')
|
||
|
+TYPE_DOUBLE = type_from_name('gdouble')
|
||
|
+TYPE_STRING = type_from_name('gchararray')
|
||
|
+TYPE_POINTER = type_from_name('gpointer')
|
||
|
+TYPE_BOXED = type_from_name('GBoxed')
|
||
|
+TYPE_PARAM = type_from_name('GParam')
|
||
|
+TYPE_OBJECT = type_from_name('GObject')
|
||
|
+TYPE_PYOBJECT = type_from_name('PyObject')
|
||
|
+TYPE_UNICHAR = TYPE_UINT
|
||
|
+
|