Python plugin: Add accessor to accounts, and an Account object
[claws.git] / src / plugins / python / Makefile.am
1 SUBDIRS = examples
2
3 plugindir = $(pkglibdir)/plugins
4
5 if BUILD_PYTHON_PLUGIN
6 plugin_LTLIBRARIES = python.la
7 endif
8
9 python_la_SOURCES = \
10         accounttype.c \
11         accounttype.h \
12         clawsmailmodule.c \
13         clawsmailmodule.h \
14         composewindowtype.c \
15         composewindowtype.h \
16         foldertype.c \
17         foldertype.h \
18         messageinfotype.c \
19         messageinfotype.h \
20         nodetype.c \
21         nodetype.h \
22         python_plugin.c \
23         python-hooks.c \
24         python-hooks.h \
25         python-shell.c \
26         python-shell.h
27
28 python_la_LDFLAGS = \
29         -avoid-version -module \
30         $(GLIB_LIBS) \
31         $(GTK_LIBS) \
32         $(PYGTK_LIBS) \
33         $(PYTHON_LIBS)
34
35 INCLUDES = \
36         -I$(top_srcdir)/src \
37         -I$(top_srcdir)/src/common \
38         -I$(top_builddir)/src/common \
39         -I$(top_srcdir)/src/gtk
40
41 AM_CPPFLAGS = \
42         $(GLIB_CFLAGS) \
43         $(GTK_CFLAGS) \
44         $(PYTHON_CFLAGS) \
45         $(PYGTK_CFLAGS) \
46         -DPYTHON_SHARED_LIB="\"$(PYTHON_SHARED_LIB)\"" \
47         -DENABLE_PYTHON \
48         -fno-strict-aliasing