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
28ACLOCAL_AMFLAGS = -I m4
29
30SUBDIRS = \
31	m4									\
32	icons								\
33	src									\
34	po									\
35	data								\
36	docs								\
37	maintainer							\
38	$(NULL)
39
40# - nautilus-extdir is a foo directory so that make distcheck has a vpath
41#   which is prefixed with a make variable, instead of hardcoded as returned
42#   by pkg-config
43# - do not try to install schemas when making distcheck
44# - do not rebuild NACT manuals
45# - gtk-doc requires to be enabled when making dist
46# - GNOME_DOC_DEFINES tries to disable scrollkeeper, but the set is
47#   overriden but this one
48DISTCHECK_CONFIGURE_FLAGS = \
49	--with-nautilus-extdir='$${libdir}/nautilus/extensions-2.0-distcheck' \
50	--enable-silent-rules				\
51	--enable-as-needed					\
52	--disable-scrollkeeper				\
53	--disable-schemas-install			\
54	--enable-deprecated					\
55	--enable-gtk-doc					\
56	--disable-html-manuals				\
57	--disable-pdf-manuals				\
58	$(NULL)
59
60EXTRA_DIST = \
61	intltool-extract.in					\
62	intltool-merge.in					\
63	intltool-update.in					\
64	$(NULL)
65
66DISTCLEANFILES = \
67	intltool-extract					\
68	intltool-merge						\
69	intltool-update						\
70	$(NULL)
71
72pkgdocdir = $(datarootdir)/doc/@PACKAGE@-@VERSION@
73
74dist_pkgdoc_DATA = \
75	AUTHORS								\
76	ChangeLog							\
77	ChangeLog-2008						\
78	ChangeLog-2009						\
79	ChangeLog-2010						\
80	ChangeLog-2011						\
81	ChangeLog-2012						\
82	COPYING								\
83	COPYING-DOCS						\
84	INSTALL								\
85	MAINTAINERS							\
86	NEWS								\
87	README								\
88	README-GCONF						\
89	TODO								\
90	$(NULL)
91
92uninstall-hook:
93	-\rm -fr $(DESTDIR)$(pkgdocdir)
94