1# Nautilus-Actions
2# A Nautilus extension which offers configurable context menu actions.
3#
4# Copyright (C) 2005 The GNOME Foundation
5# Copyright (C) 2006-2008 Frederic Ruaudel and others (see AUTHORS)
6# Copyright (C) 2009-2014 Pierre Wieser and others (see AUTHORS)
7#
8# Nautilus-Actions is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# Nautilus-Actions is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with Nautilus-Actions; see the file COPYING. If not, see
20# <http://www.gnu.org/licenses/>.
21#
22# Authors:
23#   Frederic Ruaudel <grumz@grumz.net>
24#   Rodrigo Moya <rodrigo@gnome-db.org>
25#   Pierre Wieser <pwieser@trychlos.org>
26#   ... and many others (see AUTHORS)
27
28provider_id = na-desktop
29
30pkglib_LTLIBRARIES = libna-io-desktop.la
31
32provider_datadir = $(pkgdatadir)/$(provider_id)
33
34AM_CPPFLAGS += \
35	-I $(top_srcdir)									\
36	-I $(top_srcdir)/src								\
37	$(NAUTILUS_ACTIONS_CFLAGS)							\
38	-DG_LOG_DOMAIN=\"${NA_LOGDOMAIN_IO_DESKTOP}\"		\
39	-DPROVIDER_ID=\"$(provider_id)\"					\
40	-DPROVIDER_DATADIR=\"$(provider_datadir)\"			\
41	$(NULL)
42
43libna_io_desktop_la_SOURCES = \
44	nadp-desktop-file.c									\
45	nadp-desktop-file.h									\
46	nadp-desktop-provider.c								\
47	nadp-desktop-provider.h								\
48	nadp-formats.c										\
49	nadp-formats.h										\
50	nadp-keys.c											\
51	nadp-keys.h											\
52	nadp-module.c										\
53	nadp-monitor.c										\
54	nadp-monitor.h										\
55	nadp-reader.c										\
56	nadp-reader.h										\
57	nadp-utils.c										\
58	nadp-utils.h										\
59	nadp-writer.c										\
60	nadp-writer.h										\
61	nadp-xdg-dirs.c										\
62	nadp-xdg-dirs.h										\
63	$(NULL)
64
65libna_io_desktop_la_LIBADD = \
66	$(top_builddir)/src/core/libna-core.la				\
67	$(NAUTILUS_ACTIONS_LIBS)							\
68	$(NULL)
69
70libna_io_desktop_la_LDFLAGS = \
71	-module 											\
72	-no-undefined										\
73	-avoid-version										\
74	$(NULL)
75
76images_files = \
77	export-desktop.png									\
78	$(NULL)
79
80provider_data_DATA = \
81	$(images_files)										\
82	$(NULL)
83
84EXTRA_DIST = \
85	$(provider_data_DATA)								\
86	$(NULL)
87