[nautilus-actions] fix Makefile.am to make distcheck successfully



commit ea833793b360a47af94879c7be24ed5213bd7cb0
Author: Pierre Wieser <pwieser trychlos org>
Date:   Sat May 16 17:47:53 2009 +0200

    fix Makefile.am to make distcheck successfully
---
 .gitignore                      |    1 +
 ChangeLog                       |   13 ++++++
 Makefile.am                     |   53 ++++++++++++++++++++++-
 icons/16x16/Makefile.am         |   32 ++++++++++++++
 icons/22x22/Makefile.am         |   32 ++++++++++++++
 icons/32x32/Makefile.am         |   32 ++++++++++++++
 icons/48x48/Makefile.am         |   32 ++++++++++++++
 icons/Makefile.am               |   38 ++++++++++++++++-
 icons/scalable/Makefile.am      |   32 ++++++++++++++
 libnautilus-actions/Makefile.am |   58 +++++++++++++++++++------
 nact/Makefile.am                |   90 +++++++++++++++++++++++++++++----------
 plugin/Makefile.am              |   53 ++++++++++++++++++----
 utils/Makefile.am               |   56 +++++++++++++++++++-----
 13 files changed, 460 insertions(+), 62 deletions(-)

diff --git a/.gitignore b/.gitignore
index 206fbd4..340b30c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -28,3 +28,4 @@ stamp-h1
 *.o
 *.la
 *.lo
+nautilus-actions-*.tar.gz
diff --git a/ChangeLog b/ChangeLog
index aca1f59..02f8c6a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,19 @@
 
 	* update po files
 
+	* Makefile.am: add DISTCLEANFILES,
+	add DISTCHECK_CONFIGURE_FLAGS to be able to make distcheck successfully
+
+	* icons/16x16/Makefile.am:
+	* icons/22x22/Makefile.am:
+	* icons/32x32/Makefile.am:
+	* icons/48x48/Makefile.am:
+	* icons/scalable/Makefile.am:
+	* nact/Makefile.am:
+	* plugin/Makefile.am:
+	* utils/Makefile.am:
+	add EXTRA_DIST to be able to make distcheck successfully
+
 2009-05-13 Pierre Wieser <pwieser trychlos org>
 
 	* nact/nact-editor.c:
diff --git a/Makefile.am b/Makefile.am
index cc54b95..c203950 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,2 +1,51 @@
-SUBDIRS = libnautilus-actions plugin nact po icons $(OPTIONAL_SUBDIR)
-EXTRA_DIST=intltool-extract.in intltool-merge.in intltool-update.in
+# Nautilus Actions
+#
+# Copyright (C) 2005 The GNOME Foundation
+# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
+# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
+#
+# This Program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This Program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this Library; see the file COPYING.  If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307, USA.
+#
+# Authors:
+#   Frederic Ruaudel <grumz grumz net>
+#   Rodrigo Moya <rodrigo gnome-db org>
+#   Pierre Wieser <pwieser trychlos org>
+#   and many others (see AUTHORS)
+#
+# pwi 2009-05-16 add distcheck_configure_flags and distcleanfiles
+
+SUBDIRS = \
+	libnautilus-actions	\
+	plugin				\
+	nact				\
+	po					\
+	icons				\
+	$(OPTIONAL_SUBDIR)
+
+# a foo directory so that make distcheck has a vpath which is prefixed
+# with a make variable, instead of hardcoded as returned by pkg-config
+DISTCHECK_CONFIGURE_FLAGS = \
+	--with-nautilus-extdir='$${libdir}/nautilus/extensions-2.0-distcheck'
+
+EXTRA_DIST = \
+	intltool-extract.in	\
+	intltool-merge.in	\
+	intltool-update.in
+
+DISTCLEANFILES = \
+	intltool-extract	\
+	intltool-merge		\
+	intltool-update
diff --git a/icons/16x16/Makefile.am b/icons/16x16/Makefile.am
index dad5fbb..5a35434 100644
--- a/icons/16x16/Makefile.am
+++ b/icons/16x16/Makefile.am
@@ -1,2 +1,34 @@
+# Nautilus Actions
+#
+# Copyright (C) 2005 The GNOME Foundation
+# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
+# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
+#
+# This Program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This Program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this Library; see the file COPYING.  If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307, USA.
+#
+# Authors:
+#   Frederic Ruaudel <grumz grumz net>
+#   Rodrigo Moya <rodrigo gnome-db org>
+#   Pierre Wieser <pwieser trychlos org>
+#   and many others (see AUTHORS)
+#
+# pwi 2009-05-16 fix to make distcheck successfully
+
 icondir = $(datadir)/icons/hicolor/16x16/apps
+
 icon_DATA = nautilus-actions.png
+
+EXTRA_DIST = $(icon_DATA)
diff --git a/icons/22x22/Makefile.am b/icons/22x22/Makefile.am
index 9b1eee9..a1ffafc 100644
--- a/icons/22x22/Makefile.am
+++ b/icons/22x22/Makefile.am
@@ -1,2 +1,34 @@
+# Nautilus Actions
+#
+# Copyright (C) 2005 The GNOME Foundation
+# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
+# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
+#
+# This Program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This Program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this Library; see the file COPYING.  If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307, USA.
+#
+# Authors:
+#   Frederic Ruaudel <grumz grumz net>
+#   Rodrigo Moya <rodrigo gnome-db org>
+#   Pierre Wieser <pwieser trychlos org>
+#   and many others (see AUTHORS)
+#
+# pwi 2009-05-16 fix to make distcheck successfully
+
 icondir = $(datadir)/icons/hicolor/22x22/apps
+
 icon_DATA = nautilus-actions.png
+
+EXTRA_DIST = $(icon_DATA)
diff --git a/icons/32x32/Makefile.am b/icons/32x32/Makefile.am
index 28253fc..b22657c 100644
--- a/icons/32x32/Makefile.am
+++ b/icons/32x32/Makefile.am
@@ -1,2 +1,34 @@
+# Nautilus Actions
+#
+# Copyright (C) 2005 The GNOME Foundation
+# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
+# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
+#
+# This Program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This Program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this Library; see the file COPYING.  If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307, USA.
+#
+# Authors:
+#   Frederic Ruaudel <grumz grumz net>
+#   Rodrigo Moya <rodrigo gnome-db org>
+#   Pierre Wieser <pwieser trychlos org>
+#   and many others (see AUTHORS)
+#
+# pwi 2009-05-16 fix to make distcheck successfully
+
 icondir = $(datadir)/icons/hicolor/32x32/apps
+
 icon_DATA = nautilus-actions.png
+
+EXTRA_DIST = $(icon_DATA)
diff --git a/icons/48x48/Makefile.am b/icons/48x48/Makefile.am
index cda62d7..7b6c284 100644
--- a/icons/48x48/Makefile.am
+++ b/icons/48x48/Makefile.am
@@ -1,2 +1,34 @@
+# Nautilus Actions
+#
+# Copyright (C) 2005 The GNOME Foundation
+# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
+# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
+#
+# This Program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This Program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this Library; see the file COPYING.  If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307, USA.
+#
+# Authors:
+#   Frederic Ruaudel <grumz grumz net>
+#   Rodrigo Moya <rodrigo gnome-db org>
+#   Pierre Wieser <pwieser trychlos org>
+#   and many others (see AUTHORS)
+#
+# pwi 2009-05-16 fix to make distcheck successfully
+
 icondir = $(datadir)/icons/hicolor/48x48/apps
+
 icon_DATA = nautilus-actions.png
+
+EXTRA_DIST = $(icon_DATA)
diff --git a/icons/Makefile.am b/icons/Makefile.am
index 2f40035..afd8d63 100644
--- a/icons/Makefile.am
+++ b/icons/Makefile.am
@@ -1,9 +1,45 @@
-SUBDIRS = 16x16 22x22 32x32 48x48 scalable
+# Nautilus Actions
+#
+# Copyright (C) 2005 The GNOME Foundation
+# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
+# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
+#
+# This Program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This Program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this Library; see the file COPYING.  If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307, USA.
+#
+# Authors:
+#   Frederic Ruaudel <grumz grumz net>
+#   Rodrigo Moya <rodrigo gnome-db org>
+#   Pierre Wieser <pwieser trychlos org>
+#   and many others (see AUTHORS)
+#
+# pwi 2009-05-16 fix to make distcheck successfully
+
+SUBDIRS = \
+	16x16	\
+	22x22	\
+	32x32	\
+	48x48	\
+	scalable
 
 gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
 
 install-data-hook: update-icon-cache
+
 uninstall-hook: update-icon-cache
+
 update-icon-cache:
 	@-if test -z "$(DESTDIR)"; then \
 		echo "Updating Gtk icon cache."; \
diff --git a/icons/scalable/Makefile.am b/icons/scalable/Makefile.am
index 0a10741..7a15963 100644
--- a/icons/scalable/Makefile.am
+++ b/icons/scalable/Makefile.am
@@ -1,2 +1,34 @@
+# Nautilus Actions
+#
+# Copyright (C) 2005 The GNOME Foundation
+# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
+# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
+#
+# This Program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This Program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this Library; see the file COPYING.  If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307, USA.
+#
+# Authors:
+#   Frederic Ruaudel <grumz grumz net>
+#   Rodrigo Moya <rodrigo gnome-db org>
+#   Pierre Wieser <pwieser trychlos org>
+#   and many others (see AUTHORS)
+#
+# pwi 2009-05-16 fix to make distcheck successfully
+
 svgicondir = $(datadir)/icons/hicolor/scalable/apps
+
 svgicon_DATA = nautilus-actions.svg
+
+EXTRA_DIST = $(svgicon_DATA)
diff --git a/libnautilus-actions/Makefile.am b/libnautilus-actions/Makefile.am
index ae184f4..a824fa5 100644
--- a/libnautilus-actions/Makefile.am
+++ b/libnautilus-actions/Makefile.am
@@ -1,21 +1,51 @@
+# Nautilus Actions
+#
+# Copyright (C) 2005 The GNOME Foundation
+# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
+# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
+#
+# This Program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This Program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this Library; see the file COPYING.  If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307, USA.
+#
+# Authors:
+#   Frederic Ruaudel <grumz grumz net>
+#   Rodrigo Moya <rodrigo gnome-db org>
+#   Pierre Wieser <pwieser trychlos org>
+#   and many others (see AUTHORS)
+#
+# pwi 2009-05-16 fix to make distcheck successfully
+
 noinst_LTLIBRARIES = libnautilus-actions.la
 
-INCLUDES =						\
+INCLUDES = \
 	-DGNOMELOCALEDIR=\""$(datadir)/locale"\"	\
 	$(NAUTILUS_ACTIONS_CFLAGS)
 
-libnautilus_actions_la_SOURCES = 	\
-	nautilus-actions-config.c 	\
-	nautilus-actions-config.h  \
-	nautilus-actions-config-gconf.c \
-	nautilus-actions-config-gconf.h \
-	nautilus-actions-config-gconf-private.h \
-	nautilus-actions-config-gconf-reader.c \
-	nautilus-actions-config-gconf-reader.h \
-	nautilus-actions-config-gconf-writer.c \
-	nautilus-actions-config-gconf-writer.h \
-	nautilus-actions-config-schema-writer.c \
-	nautilus-actions-config-schema-writer.h \
-	nautilus-actions-config-schema-reader.c \
+libnautilus_actions_la_SOURCES = \
+	nautilus-actions-config.c					\
+	nautilus-actions-config.h					\
+	nautilus-actions-config-gconf.c				\
+	nautilus-actions-config-gconf.h				\
+	nautilus-actions-config-gconf-private.h		\
+	nautilus-actions-config-gconf-reader.c		\
+	nautilus-actions-config-gconf-reader.h		\
+	nautilus-actions-config-gconf-writer.c		\
+	nautilus-actions-config-gconf-writer.h		\
+	nautilus-actions-config-schema-writer.c		\
+	nautilus-actions-config-schema-writer.h		\
+	nautilus-actions-config-schema-reader.c		\
 	nautilus-actions-config-schema-reader.h 
+
 libnautilus_actions_la_LIBADD = -lxml2 -luuid
diff --git a/nact/Makefile.am b/nact/Makefile.am
index c4fc128..92b00e8 100644
--- a/nact/Makefile.am
+++ b/nact/Makefile.am
@@ -1,34 +1,78 @@
-bin_PROGRAMS = nautilus-actions-config
+# Nautilus Actions
+#
+# Copyright (C) 2005 The GNOME Foundation
+# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
+# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
+#
+# This Program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This Program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this Library; see the file COPYING.  If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307, USA.
+#
+# Authors:
+#   Frederic Ruaudel <grumz grumz net>
+#   Rodrigo Moya <rodrigo gnome-db org>
+#   Pierre Wieser <pwieser trychlos org>
+#   and many others (see AUTHORS)
+#
+# pwi 2009-05-16 fix to make distcheck successfully
 
-INCLUDES =							\
-	-DGNOMELOCALEDIR=\""$(datadir)/locale"\"		\
+bin_PROGRAMS = \
+	nautilus-actions-config
+
+INCLUDES = \
+	-I $(top_srcdir)									\
+	-DGNOMELOCALEDIR=\""$(datadir)/locale"\"			\
 	-DGLADEDIR=\""$(datadir)/nautilus-actions/nact"\"	\
 	$(NAUTILUS_ACTIONS_CFLAGS)
 
-nautilus_actions_config_SOURCES =	\
-	nact.c 				\
-	nact.h 				\
-	nact-utils.c		\
-	nact-utils.h		\
-	nact-prefs.c		\
-	nact-prefs.h		\
-	nact-import-export.c \
-	nact-import-export.h \
-	nact-profile-editor.c		\
-	nact-profile-editor.h			\
-	nact-editor.c			\
+nautilus_actions_config_SOURCES = \
+	nact.c												\
+	nact.h												\
+	nact-utils.c										\
+	nact-utils.h										\
+	nact-prefs.c										\
+	nact-prefs.h										\
+	nact-import-export.c								\
+	nact-import-export.h								\
+	nact-profile-editor.c								\
+	nact-profile-editor.h								\
+	nact-editor.c										\
 	nact-editor.h
-nautilus_actions_config_LDADD =						\
-	$(NAUTILUS_ACTIONS_LIBS)					\
-	$(top_builddir)/libnautilus-actions/libnautilus-actions.la
+
+nautilus_actions_config_LDADD = \
+	$(top_builddir)/libnautilus-actions/libnautilus-actions.la	\
+	$(NAUTILUS_ACTIONS_LIBS)
 
 gladedir = $(datadir)/nautilus-actions/nact
+
 glade_DATA = nautilus-actions-config.glade
 
-Applicationsdir = $(datadir)/applications
-Applications_in_files = nact.desktop.in
-Applications_DATA = $(Applications_in_files:.desktop.in=.desktop)
 @INTLTOOL_DESKTOP_RULE@
 
-DISTCLEANFILES =		\
-	nact.desktop
+Applications_in_files = nact.desktop.in
+
+Applications_files = $(Applications_in_files:.desktop.in=.desktop)
+
+Applicationsdir = $(datadir)/applications
+
+schemedir = $(datadir)/applications
+
+scheme_DATA = $(Applications_files)
+
+DISTCLEANFILES = \
+	$(Applications_files)
+
+EXTRA_DIST = \
+	$(Applications_in_files)							\
+	$(glade_DATA)
diff --git a/plugin/Makefile.am b/plugin/Makefile.am
index 4f34c0d..6ffa2c5 100644
--- a/plugin/Makefile.am
+++ b/plugin/Makefile.am
@@ -1,18 +1,51 @@
-INCLUDES =				\
+# Nautilus Actions
+#
+# Copyright (C) 2005 The GNOME Foundation
+# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
+# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
+#
+# This Program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This Program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this Library; see the file COPYING.  If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307, USA.
+#
+# Authors:
+#   Frederic Ruaudel <grumz grumz net>
+#   Rodrigo Moya <rodrigo gnome-db org>
+#   Pierre Wieser <pwieser trychlos org>
+#   and many others (see AUTHORS)
+#
+# pwi 2009-05-16 fix to make distcheck successfully
+
+INCLUDES = \
+	-I $(top_srcdir)									\
 	$(NAUTILUS_ACTIONS_CFLAGS)
 
 nautilus_extensiondir = $(NAUTILUS_EXTENSIONS_DIR)
+
 nautilus_extension_LTLIBRARIES = libnautilus-actions.la
 
-libnautilus_actions_la_SOURCES = 	\
-	nautilus-actions.c		\
-	nautilus-actions.h		\
-	nautilus-actions-module.c	\
-	nautilus-actions-test.c		\
-	nautilus-actions-test.h		\
-	nautilus-actions-utils.c	\
+libnautilus_actions_la_SOURCES = \
+	nautilus-actions.c									\
+	nautilus-actions.h									\
+	nautilus-actions-module.c							\
+	nautilus-actions-test.c								\
+	nautilus-actions-test.h								\
+	nautilus-actions-utils.c							\
 	nautilus-actions-utils.h
 
 libnautilus_actions_la_LDFLAGS = -module -avoid-version
-libnautilus_actions_la_LIBADD = $(NAUTILUS_ACTIONS_LIBS) \
-	$(top_builddir)/libnautilus-actions/libnautilus-actions.la
+
+libnautilus_actions_la_LIBADD = \
+	$(top_builddir)/libnautilus-actions/libnautilus-actions.la	\
+	$(NAUTILUS_ACTIONS_LIBS)
diff --git a/utils/Makefile.am b/utils/Makefile.am
index 738bd52..ff9cf7b 100644
--- a/utils/Makefile.am
+++ b/utils/Makefile.am
@@ -1,21 +1,53 @@
-bin_PROGRAMS = nautilus-actions-new-config \
-		nautilus-actions-check-actions-change
+# Nautilus Actions
+#
+# Copyright (C) 2005 The GNOME Foundation
+# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
+# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
+#
+# This Program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This Program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this Library; see the file COPYING.  If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307, USA.
+#
+# Authors:
+#   Frederic Ruaudel <grumz grumz net>
+#   Rodrigo Moya <rodrigo gnome-db org>
+#   Pierre Wieser <pwieser trychlos org>
+#   and many others (see AUTHORS)
+#
+# pwi 2009-05-16 fix to make distcheck successfully
 
-INCLUDES = $(NAUTILUS_ACTIONS_UTILS_CFLAGS) \
-	-DGNOMELOCALEDIR=\""$(datadir)/locale"\"     
+bin_PROGRAMS = \
+	nautilus-actions-new-config					\
+	nautilus-actions-check-actions-change
 
-nautilus_actions_new_config_SOURCES =	\
-	nautilus-actions-tools-utils.c	\
-	nautilus-actions-tools-utils.h	\
-	nautilus-actions-new-config.c 				
+INCLUDES = \
+	-I $(top_srcdir)							\
+	-DGNOMELOCALEDIR=\""$(datadir)/locale"\"	\
+	$(NAUTILUS_ACTIONS_UTILS_CFLAGS)
 
-nautilus_actions_new_config_LDADD =					\
+nautilus_actions_new_config_SOURCES = \
+	nautilus-actions-tools-utils.c				\
+	nautilus-actions-tools-utils.h				\
+	nautilus-actions-new-config.c
+
+nautilus_actions_new_config_LDADD = \
 	$(top_builddir)/libnautilus-actions/libnautilus-actions.la	\
 	$(NAUTILUS_ACTIONS_UTILS_LIBS)
 
 nautilus_actions_check_actions_change_SOURCES = \
 	nautilus-actions-check-actions-change.c
 
-nautilus_actions_check_actions_change_LDADD =	\
-	$(NAUTILUS_ACTIONS_LIBS)		\
-	$(top_builddir)/libnautilus-actions/libnautilus-actions.la
+nautilus_actions_check_actions_change_LDADD = \
+	$(top_builddir)/libnautilus-actions/libnautilus-actions.la	\
+	$(NAUTILUS_ACTIONS_LIBS)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]