fix this wonderful screw-up that broke `make dist`
[claws.git] / src / plugins / bsfilter / Makefile.am
1 # Makefile.am for "src/plugins/bsfilter" directory
2 # This file is part of Claws Mail package.
3 # See COPYING file for license details.
4
5 appdata_files = claws-mail-bsfilter.metainfo.xml
6 appdatadir = $(datadir)/appdata
7 appdata_DATA = $(appdata_files)
8 EXTRA_DIST = claws.def plugin.def version.rc $(appdata_DATA)
9
10 IFLAGS = \
11         -I$(top_srcdir)/src \
12         -I$(top_srcdir)/src/common \
13         -I$(top_builddir)/src/common \
14         -I$(top_srcdir)/src/gtk
15
16 if OS_WIN32
17
18 LTRCCOMPILE = $(LIBTOOL) --mode=compile --tag=RC $(RC) \
19      `echo $(DEFS) $(DEFAULT_INCLUDES) $(IFLAGS) | \
20      sed -e 's/-I/--include-dir /g;s/-D/--define /g'`
21
22 %.lo : %.rc
23         $(LTRCCOMPILE) -i $< -o $@
24
25 plugin_res = version.lo
26 plugin_res_ldflag = -Wl,.libs/version.o
27
28 export_symbols = -export-symbols $(srcdir)/plugin.def
29
30 plugin_deps = libclaws.a $(plugin_res) plugin.def
31
32 libclaws.a: claws.def
33         $(DLLTOOL) --output-lib $@ --def $<
34
35 plugin_ldadd = -L. -lclaws
36
37 else
38 plugin_res =
39 plugin_res_ldflag =
40 export_symbols =
41 plugin_deps =
42 plugin_ldadd =
43 endif
44
45 if PLATFORM_WIN32
46 no_undefined = -no-undefined
47 else
48 no_undefined =
49 endif
50
51 if CYGWIN
52 cygwin_export_lib = -L$(top_builddir)/src -lclaws-mail
53 else
54 cygwin_export_lib = 
55 endif
56
57 plugindir = $(pkglibdir)/plugins
58
59 if BUILD_BSFILTER_PLUGIN
60 plugin_LTLIBRARIES = bsfilter.la
61 endif
62
63 bsfilter_la_LDFLAGS = \
64         $(plugin_res_ldflag) $(no_undefined) $(export_symbols) \
65         -avoid-version -module \
66         $(GTK_LIBS) $(PTHREAD_LIBS) 
67
68 bsfilter_la_DEPENDENCIES = $(plugin_deps)
69
70 bsfilter_la_LIBADD = $(plugin_ldadd) $(cygwin_export_lib) \
71         $(GTK_LIBS) $(PTHREAD_LIBS) 
72
73 bsfilter_la_CPPFLAGS = \
74         $(IFLAGS) \
75         $(GLIB_CFLAGS) \
76         $(GTK_CFLAGS)
77
78 bsfilter_la_SOURCES = \
79         bsfilter.c bsfilter.h \
80         bsfilter_gtk.c
81