From 3b9951be52eeac3d76755808eafcdca864bc4e74 Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Sat, 17 Jul 2004 17:54:50 +0000 Subject: add, forgot it in last commit * tests/enum.py: add, forgot it in last commit * gobject/: Move gobject source files in here. --- gobject/.cvsignore | 6 ++++++ gobject/Makefile.am | 27 +++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 gobject/.cvsignore create mode 100644 gobject/Makefile.am (limited to 'gobject') diff --git a/gobject/.cvsignore b/gobject/.cvsignore new file mode 100644 index 0000000..6e5ca7e --- /dev/null +++ b/gobject/.cvsignore @@ -0,0 +1,6 @@ +Makefile +Makefile.in +.deps +.libs +*.lo +*.la diff --git a/gobject/Makefile.am b/gobject/Makefile.am new file mode 100644 index 0000000..ed74b42 --- /dev/null +++ b/gobject/Makefile.am @@ -0,0 +1,27 @@ +AUTOMAKE_OPTIONS = 1.7 +INCLUDES = $(PYTHON_INCLUDES) $(GLIB_CFLAGS) + +pkgincludedir = $(includedir)/pygtk-2.0 +pkginclude_HEADERS = pygobject.h + +pkgpyexecdir = $(pyexecdir)/gtk-2.0 +pkgpyexec_LTLIBRARIES = gobject.la + +common_ldflags = -module -avoid-version +if PLATFORM_WIN32 +common_ldflags += -no-undefined +endif + +gobject_la_LDFLAGS = $(common_ldflags) -export-symbols-regex initgobject +gobject_la_LIBADD = $(GLIB_LIBS) +gobject_la_SOURCES = \ + gobjectmodule.c \ + pygboxed.c \ + pygenum.c \ + pygenum.h \ + pygflags.c \ + pygflags.h \ + pygobject.c \ + pygobject.h \ + pygobject-private.h \ + pygtype.c -- cgit