blob: ae1006a6f4c4ffda9569c04bd74aa892fa2bf43d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
libdir = $(plugindir)
lib_LTLIBRARIES = attachment_tool.la
attachment_tool_la_SOURCES = attachment_tool.c
attachment_tool_la_LDFLAGS = -module -no-undefined -avoid-version
INCLUDES = \
-I$(top_srcdir) \
-I$(top_srcdir)/libsylph \
-I$(top_srcdir)/src \
$(GTK_CFLAGS) \
-I$(includedir)
attachment_tool_la_LIBADD = \
$(GTK_LIBS) \
$(top_builddir)/src/libsylpheed-plugin-0.la \
$(top_builddir)/libsylph/libsylph-0.la
install:
install-plugin: install-am
|