Update pygobject 2.16.0
git-svn-id: svn://svn.openwrt.org/openwrt/packages@13928 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
55a8dfd30f
commit
5fd3003b40
@ -9,11 +9,14 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=pygobject
|
||||
PKG_VERSION:=2.15.1
|
||||
PKG_RELEASE:=2
|
||||
PKG_VERSION:=2.16.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_SOURCE_URL:=@GNOME/$(PKG_NAME)/2.15
|
||||
PKG_MD5SUM:=05bf0487c885a1ef6df615e02cac5ea6
|
||||
PKG_SOURCE_URL:=@GNOME/$(PKG_NAME)/2.16
|
||||
PKG_MD5SUM:=431e7d4632163b93d1ee43cd071a389c
|
||||
PKG_FIXUP:=libtool
|
||||
PKG_INSTALL:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
-include $(if $(DUMP),,$(STAGING_DIR)/mk/python-package.mk)
|
||||
@ -35,13 +38,10 @@ define Package/python-gobject/description
|
||||
GLib bindings for python
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
# (cd $(PKG_BUILD_DIR)/gobject; \
|
||||
# $(HOSTCC) -I$(STAGING_DIR)/usr/lib/glib-2.0/include/ \
|
||||
# -I$(STAGING_DIR)/usr/include/glib-2.0/ \
|
||||
# generate-constants.c -o generate-constants);
|
||||
$(call Build/Compile/Default)
|
||||
$(call Build/Install/Default)
|
||||
define Build/Configure
|
||||
$(call Build/Configure/Default, \
|
||||
--with-libffi \
|
||||
)
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@ -55,6 +55,11 @@ define Build/InstallDev
|
||||
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
|
||||
$(1)/usr/lib/pkgconfig/
|
||||
|
||||
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig/
|
||||
$(CP) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/*.{so,a,la} \
|
||||
$(1)/usr/lib/
|
||||
|
||||
$(SED) \
|
||||
"s,^\(prefix\|exec_prefix\|datadir\)=,\1=$(STAGING_DIR),g" \
|
||||
$(1)/usr/lib/pkgconfig/pygobject-2.0.pc
|
||||
@ -80,6 +85,11 @@ define Build/InstallDev
|
||||
endef
|
||||
|
||||
define Package/python-gobject/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(CP) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
|
||||
$(1)/usr/lib
|
||||
|
||||
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/*.{pth,py} \
|
||||
@ -90,7 +100,7 @@ define Package/python-gobject/install
|
||||
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/gtk-2.0/*.py \
|
||||
$(1)$(PYTHON_PKG_DIR)/gtk-2.0/
|
||||
|
||||
$(foreach d,gobject gio, \
|
||||
$(foreach d,gobject gio glib, \
|
||||
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)/gtk-2.0/$(d); \
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/gtk-2.0/$(d)/*.{py,so} \
|
||||
|
@ -1,17 +1,18 @@
|
||||
|
||||
diff --git a/gobject/Makefile.am b/gobject/Makefile.am
|
||||
index 94cafc7..96e16e8 100644
|
||||
index e59daa4..0115c7e 100644
|
||||
--- a/gobject/Makefile.am
|
||||
+++ b/gobject/Makefile.am
|
||||
@@ -13,7 +13,7 @@ pygobject_PYTHON = \
|
||||
@@ -11,7 +11,7 @@ pygobjectdir = $(pkgpyexecdir)/gobject
|
||||
pygobject_PYTHON = \
|
||||
__init__.py \
|
||||
option.py \
|
||||
propertyhelper.py
|
||||
-pygobject_LTLIBRARIES = _gobject.la
|
||||
+pygobject_LTLIBRARIES = _constants.la _gobject.la
|
||||
+pygobject_LTLIBRARIES = _gobject.la _constants.la
|
||||
nodist_pygobject_PYTHON = constants.py
|
||||
|
||||
common_ldflags = -module -avoid-version
|
||||
@@ -21,18 +21,13 @@ if PLATFORM_WIN32
|
||||
@@ -19,18 +19,11 @@ if PLATFORM_WIN32
|
||||
common_ldflags += -no-undefined
|
||||
endif
|
||||
|
||||
@ -22,50 +23,31 @@ index 94cafc7..96e16e8 100644
|
||||
- $(top_builddir)/gobject/generate-constants$(EXEEXT) >> constants.py
|
||||
- chmod 444 constants.py
|
||||
-
|
||||
-generate_constants_CFLAGS = $(GLIB_CFLAGS)
|
||||
-generate_constants_CFLAGS = $(GLIB_CFLAGS) $(PYTHON_INCLUDES)
|
||||
-
|
||||
-noinst_PROGRAMS = generate-constants
|
||||
CLEANFILES = constants.py
|
||||
EXTRA_DIST = constants.py.in
|
||||
|
||||
+_constants_la_CFLAGS = $(GLIB_CFLAGS)
|
||||
-EXTRA_DIST = constants.py.in
|
||||
+
|
||||
+_constants_la_CFLAGS = $(PYTHON_INCLUDES) $(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)
|
||||
|
||||
_gobject_la_CFLAGS = \
|
||||
$(PYTHON_INCLUDES) \
|
||||
diff --git a/gobject/Makefile.in b/gobject/Makefile.in
|
||||
index 55899a3..c2dd358 100644
|
||||
index c4c2efa..5bd0c08 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 @@
|
||||
@@ -15,7 +15,6 @@
|
||||
@SET_MAKE@
|
||||
|
||||
|
||||
-
|
||||
+srcdir = @srcdir@
|
||||
+top_srcdir = @top_srcdir@
|
||||
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 = :
|
||||
@@ -38,7 +37,6 @@ POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
@PLATFORM_WIN32_TRUE@am__append_1 = -no-undefined
|
||||
@ -73,7 +55,7 @@ index 55899a3..c2dd358 100644
|
||||
@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)" \
|
||||
@@ -66,6 +64,9 @@ am__installdirs = "$(DESTDIR)$(pygobjectdir)" \
|
||||
"$(DESTDIR)$(pkgincludedir)"
|
||||
pygobjectLTLIBRARIES_INSTALL = $(INSTALL)
|
||||
LTLIBRARIES = $(pygobject_LTLIBRARIES)
|
||||
@ -81,205 +63,58 @@ index 55899a3..c2dd358 100644
|
||||
+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)
|
||||
am___gobject_la_SOURCES_DIST = gobjectmodule.c pygboxed.c pygboxed.h \
|
||||
pygenum.c pygenum.h pygflags.c pygflags.h pyginterface.c \
|
||||
@@ -80,11 +81,6 @@ am__gobject_la_OBJECTS = _gobject_la-gobjectmodule.lo \
|
||||
_gobject_la-pygpointer.lo _gobject_la-pygtype.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)
|
||||
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)
|
||||
@@ -96,8 +92,9 @@ LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
||||
CCLD = $(CC)
|
||||
-LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
- --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
||||
- $(LDFLAGS) -o $@
|
||||
LINK = $(LIBTOOL) --tag=CC --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 \
|
||||
@@ -265,12 +262,13 @@ pygobject_PYTHON = \
|
||||
__init__.py \
|
||||
propertyhelper.py
|
||||
|
||||
-pygobject_LTLIBRARIES = _gobject.la
|
||||
+pygobject_LTLIBRARIES = _constants.la _gobject.la
|
||||
+pygobject_LTLIBRARIES = _gobject.la _constants.la
|
||||
nodist_pygobject_PYTHON = constants.py
|
||||
common_ldflags = -module -avoid-version $(am__append_1)
|
||||
-generate_constants_CFLAGS = $(GLIB_CFLAGS)
|
||||
-generate_constants_CFLAGS = $(GLIB_CFLAGS) $(PYTHON_INCLUDES)
|
||||
CLEANFILES = constants.py
|
||||
EXTRA_DIST = constants.py.in
|
||||
+_constants_la_CFLAGS = $(GLIB_CFLAGS)
|
||||
-EXTRA_DIST = constants.py.in
|
||||
+_constants_la_CFLAGS = $(PYTHON_INCLUDES) $(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:
|
||||
_gobject_la_CFLAGS = $(PYTHON_INCLUDES) $(FFI_CFLAGS) $(GLIB_CFLAGS) \
|
||||
-DPY_SSIZE_T_CLEAN -I$(top_srcdir)/glib $(am__append_3)
|
||||
_gobject_la_LDFLAGS = $(common_ldflags) -export-symbols-regex "_gobject|PyInit__gobject"
|
||||
@@ -345,25 +343,18 @@ 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)
|
||||
-
|
||||
$(LINK) -rpath $(pygobjectdir) $(_gobject_la_LDFLAGS) $(_gobject_la_OBJECTS) $(_gobject_la_LIBADD) $(LIBS)
|
||||
|
||||
-clean-noinstPROGRAMS:
|
||||
- @list='$(noinst_PROGRAMS)'; for p in $$list; do \
|
||||
- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
|
||||
@ -288,12 +123,11 @@ index 55899a3..c2dd358 100644
|
||||
- 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)
|
||||
|
||||
- $(LINK) $(generate_constants_LDFLAGS) $(generate_constants_OBJECTS) $(generate_constants_LDADD) $(LIBS)
|
||||
-
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
@@ -348,6 +343,7 @@ mostlyclean-compile:
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@ -301,36 +135,15 @@ index 55899a3..c2dd358 100644
|
||||
@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:
|
||||
@@ -374,7 +365,6 @@ distclean-compile:
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_gobject_la-pygparamspec.Plo@am__quote@
|
||||
@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@
|
||||
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
@@ -397,6 +387,13 @@ distclean-compile:
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
@ -342,278 +155,30 @@ index 55899a3..c2dd358 100644
|
||||
+@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@
|
||||
@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
|
||||
@@ -467,20 +464,6 @@ _gobject_la-ffi-marshaller.lo: ffi-marshaller.c
|
||||
@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
|
||||
@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
|
||||
|
||||
_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
|
||||
-@am__fastdepCC_TRUE@ if $(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@ then mv -f "$(DEPDIR)/generate_constants-generate-constants.Tpo" "$(DEPDIR)/generate_constants-generate-constants.Po"; else rm -f "$(DEPDIR)/generate_constants-generate-constants.Tpo"; exit 1; fi
|
||||
-@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
|
||||
-@am__fastdepCC_TRUE@ if $(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@ then mv -f "$(DEPDIR)/generate_constants-generate-constants.Tpo" "$(DEPDIR)/generate_constants-generate-constants.Po"; else rm -f "$(DEPDIR)/generate_constants-generate-constants.Tpo"; exit 1; fi
|
||||
-@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)
|
||||
@@ -641,7 +624,7 @@ distdir: $(DISTFILES)
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
@ -621,12 +186,8 @@ index 55899a3..c2dd358 100644
|
||||
+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:
|
||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||||
@@ -673,8 +656,8 @@ maintainer-clean-generic:
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
@ -637,60 +198,32 @@ index 55899a3..c2dd358 100644
|
||||
|
||||
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 \
|
||||
@@ -727,28 +710,21 @@ uninstall-am: uninstall-info-am uninstall-nodist_pygobjectPYTHON \
|
||||
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-data-am install-exec install-exec-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-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-nodist_pygobjectPYTHON \
|
||||
- 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
|
||||
+ clean-libtool clean-pygobjectLTLIBRARIES ctags distclean \
|
||||
+ distclean-compile distclean-generic distclean-libtool \
|
||||
+ distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
@ -703,16 +236,9 @@ index 55899a3..c2dd358 100644
|
||||
+ 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
|
||||
+ uninstall-pkgincludeHEADERS uninstall-pygobjectLTLIBRARIES \
|
||||
+ uninstall-pygobjectPYTHON
|
||||
+
|
||||
# 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:
|
||||
@ -750,7 +276,7 @@ index e69de29..c304105 100644
|
||||
diff --git a/gobject/constants.py b/gobject/constants.py
|
||||
--- a/gobject/constants.py
|
||||
+++ b/gobject/constants.py
|
||||
@@ -0,0 +1,48 @@
|
||||
@@ -0,0 +1,51 @@
|
||||
+# -*- Mode: Python; py-indent-offset: 4 -*-
|
||||
+# pygobject - Python bindings for the GObject library
|
||||
+# Copyright (C) 2006-2007 Johan Dahlin
|
||||
@ -772,30 +298,89 @@ diff --git a/gobject/constants.py b/gobject/constants.py
|
||||
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||||
+# USA
|
||||
+
|
||||
+from _gobject import type_from_name
|
||||
+import sys
|
||||
+
|
||||
+import gobject._gobject
|
||||
+_gobject = sys.modules['gobject._gobject']
|
||||
+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_NONE = _gobject.type_from_name('void')
|
||||
+TYPE_INTERFACE = _gobject.type_from_name('GInterface')
|
||||
+TYPE_CHAR = _gobject.type_from_name('gchar')
|
||||
+TYPE_UCHAR = _gobject.type_from_name('guchar')
|
||||
+TYPE_BOOLEAN = _gobject.type_from_name('gboolean')
|
||||
+TYPE_INT = _gobject.type_from_name('gint')
|
||||
+TYPE_UINT = _gobject.type_from_name('guint')
|
||||
+TYPE_LONG = _gobject.type_from_name('glong')
|
||||
+TYPE_ULONG = _gobject.type_from_name('gulong')
|
||||
+TYPE_INT64 = _gobject.type_from_name('gint64')
|
||||
+TYPE_UINT64 = _gobject.type_from_name('guint64')
|
||||
+TYPE_ENUM = _gobject.type_from_name('GEnum')
|
||||
+TYPE_FLAGS = _gobject.type_from_name('GFlags')
|
||||
+TYPE_FLOAT = _gobject.type_from_name('gfloat')
|
||||
+TYPE_DOUBLE = _gobject.type_from_name('gdouble')
|
||||
+TYPE_STRING = _gobject.type_from_name('gchararray')
|
||||
+TYPE_POINTER = _gobject.type_from_name('gpointer')
|
||||
+TYPE_BOXED = _gobject.type_from_name('GBoxed')
|
||||
+TYPE_PARAM = _gobject.type_from_name('GParam')
|
||||
+TYPE_OBJECT = _gobject.type_from_name('GObject')
|
||||
+TYPE_PYOBJECT = _gobject.type_from_name('PyObject')
|
||||
+TYPE_UNICHAR = TYPE_UINT
|
||||
+
|
||||
diff --git a/gobject/constants.py.in b/gobject/constants.py.in
|
||||
deleted file mode 100644
|
||||
index 80bf920..0000000
|
||||
--- a/gobject/constants.py.in
|
||||
+++ /dev/null
|
||||
@@ -1,50 +0,0 @@
|
||||
-# -*- 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
|
||||
-
|
||||
-import sys
|
||||
-
|
||||
-import gobject._gobject
|
||||
-_gobject = sys.modules['gobject._gobject']
|
||||
-
|
||||
-# TYPE_INVALID defined in gobjectmodule.c
|
||||
-TYPE_NONE = _gobject.type_from_name('void')
|
||||
-TYPE_INTERFACE = _gobject.type_from_name('GInterface')
|
||||
-TYPE_CHAR = _gobject.type_from_name('gchar')
|
||||
-TYPE_UCHAR = _gobject.type_from_name('guchar')
|
||||
-TYPE_BOOLEAN = _gobject.type_from_name('gboolean')
|
||||
-TYPE_INT = _gobject.type_from_name('gint')
|
||||
-TYPE_UINT = _gobject.type_from_name('guint')
|
||||
-TYPE_LONG = _gobject.type_from_name('glong')
|
||||
-TYPE_ULONG = _gobject.type_from_name('gulong')
|
||||
-TYPE_INT64 = _gobject.type_from_name('gint64')
|
||||
-TYPE_UINT64 = _gobject.type_from_name('guint64')
|
||||
-TYPE_ENUM = _gobject.type_from_name('GEnum')
|
||||
-TYPE_FLAGS = _gobject.type_from_name('GFlags')
|
||||
-TYPE_FLOAT = _gobject.type_from_name('gfloat')
|
||||
-TYPE_DOUBLE = _gobject.type_from_name('gdouble')
|
||||
-TYPE_STRING = _gobject.type_from_name('gchararray')
|
||||
-TYPE_POINTER = _gobject.type_from_name('gpointer')
|
||||
-TYPE_BOXED = _gobject.type_from_name('GBoxed')
|
||||
-TYPE_PARAM = _gobject.type_from_name('GParam')
|
||||
-TYPE_OBJECT = _gobject.type_from_name('GObject')
|
||||
-TYPE_PYOBJECT = _gobject.type_from_name('PyObject')
|
||||
-TYPE_UNICHAR = TYPE_UINT
|
||||
-
|
||||
|
Loading…
x
Reference in New Issue
Block a user