summaryrefslogtreecommitdiffstats
path: root/gobject/Makefile.am
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2004-07-17 17:54:50 +0000
committerJohan Dahlin <johan@src.gnome.org>2004-07-17 17:54:50 +0000
commit3b9951be52eeac3d76755808eafcdca864bc4e74 (patch)
tree7a40bd036937dc76445771fdaaeadbac3ffd2541 /gobject/Makefile.am
parentb889f44c6adeaf10d5e1ae0a2e69ef5ee218ccad (diff)
downloadpygobject-3b9951be52eeac3d76755808eafcdca864bc4e74.tar.gz
pygobject-3b9951be52eeac3d76755808eafcdca864bc4e74.tar.xz
pygobject-3b9951be52eeac3d76755808eafcdca864bc4e74.zip
add, forgot it in last commit
* tests/enum.py: add, forgot it in last commit * gobject/: Move gobject source files in here.
Diffstat (limited to 'gobject/Makefile.am')
-rw-r--r--gobject/Makefile.am27
1 files changed, 27 insertions, 0 deletions
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