diff options
Diffstat (limited to 'gobject')
| -rw-r--r-- | gobject/.cvsignore | 6 | ||||
| -rw-r--r-- | gobject/Makefile.am | 27 |
2 files changed, 33 insertions, 0 deletions
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 |
