README: add deprecation notice
[nautilus-actions.git] / src / io-gconf / Makefile.am
blobf638f1e266a157eaebee4fd4e0e1d80bf8dfd3f9
1 # FileManager-Actions
2 # A file-manager extension which offers configurable context menu actions.
4 # Copyright (C) 2005 The GNOME Foundation
5 # Copyright (C) 2006-2008 Frederic Ruaudel and others (see AUTHORS)
6 # Copyright (C) 2009-2015 Pierre Wieser and others (see AUTHORS)
8 # FileManager-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.
13 # FileManager-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.
18 # You should have received a copy of the GNU General Public License
19 # along with FileManager-Actions; see the file COPYING. If not, see
20 # <http://www.gnu.org/licenses/>.
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)
28 if HAVE_GCONF
30 provider_id = io-gconf
32 pkglib_LTLIBRARIES = libfma-io-gconf.la
34 provider_datadir = $(pkgdatadir)/$(provider_id)
36 AM_CPPFLAGS += \
37         -I $(top_srcdir)                                                                        \
38         -I $(top_srcdir)/src                                                            \
39         $(NAUTILUS_ACTIONS_CFLAGS)                                                      \
40         -DG_LOG_DOMAIN=\"FMA\"                                                          \
41         -DPROVIDER_ID=\"$(provider_id)\"                                        \
42         -DPROVIDER_DATADIR=\"$(provider_datadir)\"                      \
43         $(NULL)
45 libfma_io_gconf_la_SOURCES = \
46         fma-gconf-provider.c                                                            \
47         fma-gconf-provider.h                                                            \
48         fma-gconf-keys.c                                                                        \
49         fma-gconf-keys.h                                                                        \
50         fma-gconf-module.c                                                                      \
51         fma-gconf-reader.c                                                                      \
52         fma-gconf-reader.h                                                                      \
53         fma-gconf-writer.c                                                                      \
54         fma-gconf-writer.h                                                                      \
55         $(NULL)
57 libfma_io_gconf_la_LIBADD = \
58         $(top_builddir)/src/core/libfma-core.la                         \
59         $(NAUTILUS_ACTIONS_LIBS)                                                        \
60         $(NULL)
62 libfma_io_gconf_la_LDFLAGS = \
63         -module                                                                                         \
64         -no-undefined                                                                           \
65         -avoid-version                                                                          \
66         $(NULL)
68 endif