Add license and copyright to 9b3fd2b5
[claws.git] / src / plugins / archive / Makefile.am
1 # Copyright 1999-2014 the Claws Mail team.
2 # This file is part of Claws Mail package, and distributed under the
3 # terms of the General Public License version 3 (or later).
4 # See COPYING file for license details.
5
6 plugindir = $(pkglibdir)/plugins
7
8 if BUILD_ARCHIVE_PLUGIN
9 plugin_LTLIBRARIES = archive.la
10 endif
11
12 archive_la_SOURCES = \
13               libarchive_archive.c \
14                   libarchive_archive.h \
15                   archiver.c \
16                   archiver.h \
17                   archiver_gtk.c \
18                   archiver_prefs.c
19
20 archiveincludedir = $(includedir)/claws-mail/plugins/@PACKAGE@
21 archiveinclude_HEADERS = \
22         archiver.h \
23         archiver_prefs.h
24
25 archive_la_LDFLAGS = \
26                 -avoid-version -module \
27                 $(GTK_LIBS)
28
29 archive_la_LIBADD = \
30                 @ARCHIVE_LIBS@
31
32
33 archive_la_CPPFLAGS = \
34         -I$(top_srcdir)/src \
35         -I$(top_srcdir)/src/common \
36         -I$(top_builddir)/src/common \
37         -I$(top_srcdir)/src/gtk \
38         $(GLIB_CFLAGS) \
39         $(GTK_CFLAGS)