39ab4f5477397b755d9c13b3ea2cf36eacb9f63d
[claws.git] / src / plugins / att_remover / Makefile.am
1 # Makefile.am for "src/plugins/att_remover" directory
2 # This file is part of Claws Mail package.
3 # See COPYING file for license details.
4
5 appdata_files = claws-mail-att_remover.metainfo.xml
6 appdatadir = $(datadir)/appdata
7 appdata_DATA = $(appdata_files)
8 EXTRA_DIST = claws.def plugin.def version.rc $(appdata_files)
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_ATT_REMOVER_PLUGIN
60 plugin_LTLIBRARIES = att_remover.la
61 endif
62
63 att_remover_la_SOURCES = \
64         att_remover.c
65
66 att_remover_la_LDFLAGS = \
67         $(plugin_res_ldflag) $(no_undefined) $(export_symbols) \
68         -avoid-version -module \
69         $(GTK_LIBS)
70
71 att_remover_la_LIBADD = $(plugin_ldadd) $(cygwin_export_lib) \
72         $(GTK_LIBS)
73
74 att_remover_la_DEPENDENCIES = $(plugin_deps)
75
76 att_remover_la_CPPFLAGS = \
77         $(IFLAGS) \
78         $(GLIB_CFLAGS) \
79         $(GTK_CFLAGS)