add configure option --enable-appdata and put all appdata in appdata/
[claws.git] / src / plugins / clamd / Makefile.am
1 # Makefile.am for "src/plugins/clamd" directory
2 # This file is part of Claws Mail package.
3 # See COPYING file for license details.
4
5 SUBDIRS = libclamd
6 plugindir = $(pkglibdir)/plugins
7
8 if BUILD_CLAMD_PLUGIN
9 plugin_LTLIBRARIES = clamd.la
10 endif
11
12 clamd_la_SOURCES = \
13         clamav_plugin.c \
14         clamav_plugin_gtk.c \
15         clamav_plugin.h
16
17 clamd_la_LDFLAGS = \
18         -avoid-version -module \
19         $(GTK_LIBS) \
20         -L$(top_builddir)/src/plugins/clamd/libclamd
21
22 clamd_la_LIBADD = \
23         -lclamd-plugin
24
25 clamd_la_CPPFLAGS = \
26         -I$(top_srcdir)/src/plugins/clamd/libclamd \
27         -I$(top_srcdir)/src \
28         -I$(top_srcdir)/src/common \
29         -I$(top_builddir)/src/common \
30         -I$(top_srcdir)/src/gtk \
31         $(GLIB_CFLAGS) \
32         $(GTK_CFLAGS)