clean up former extra-plugins Makefiles
[claws.git] / src / plugins / perl / Makefile.am
1 SUBDIRS = tools
2
3 plugindir = $(pkglibdir)/plugins
4
5 if BUILD_PERL_PLUGIN
6 plugin_LTLIBRARIES = perl.la
7 endif
8
9 perl_la_SOURCES = \
10         perl_plugin.c perl_plugin.h \
11         perl_gtk.c perl_gtk.h
12
13 perl_la_LDFLAGS = \
14         -avoid-version -module
15
16 perl_la_LIBADD = \
17         $(PERL_LDFLAGS) \
18         $(GTK_LIBS)
19
20 AM_CPPFLAGS = \
21         $(GLIB_CFLAGS) \
22         $(GTK_CFLAGS) \
23         $(PERL_CFLAGS)
24
25 INCLUDES = \
26         -I$(top_srcdir)/src \
27         -I$(top_srcdir)/src/common \
28         -I$(top_builddir)/src/common \
29         -I$(top_srcdir)/src/gtk
30
31 EXTRA_DIST = cm_perl.pod
32