~ubuntu-branches/ubuntu/trusty/nautilus-actions/trusty-proposed

« back to all changes in this revision

Viewing changes to icons/scalable/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Christine Spang
  • Date: 2009-05-30 10:15:52 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090530101552-5nicx1db3luh9n7e
Tags: 1.10.1-1
* New upstream release.
  - Do not search through actions when the Nautilus-provided list of
    selected files is empty
  - Remove deprecated functions
  - All sources are now ansi-compliant, though not (yet) pedantic
  - Double-click on an action opens the editor
  - Enable the OK button as soon as required fields are filled
  - Enable syslog'ed debug messages when in maintainer mode
  - Use NACT_GNOME_COMPILE_WARNINGS (see Gnome bugzilla bug #582860)
  - Replace configure.in with configure.ac, updating all Makefile.am
    accordingly
  - Fix make distcheck
  - create nautilus-actions.doap
  - Gnome bugzilla bug #574919 fixed (Closes: #523854)
  - Gnome bugzilla bugs #522605, #573365, and #568366 fixed
  - translations updated
* Added Homepage: field to debian/control
* Bump to Standards-Version 3.8.1
* update GNOME_DOWNLOAD_URL in debian/rules
* add full list of contributors to debian/copyright
* Bump debhelper compat to 7
* Fix categories in .desktop file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.7.9 from Makefile.am.
 
1
# Makefile.in generated by automake 1.10.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
 
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
5
 
# Free Software Foundation, Inc.
 
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
5
# 2003, 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
6
6
# This Makefile.in is free software; the Free Software Foundation
7
7
# gives unlimited permission to copy and/or distribute it,
8
8
# with or without modifications, as long as this notice is preserved.
14
14
 
15
15
@SET_MAKE@
16
16
 
17
 
srcdir = @srcdir@
18
 
top_srcdir = @top_srcdir@
 
17
# Nautilus Actions
 
18
#
 
19
# Copyright (C) 2005 The GNOME Foundation
 
20
# Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
 
21
# Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
 
22
#
 
23
# This Program is free software; you can redistribute it and/or
 
24
# modify it under the terms of the GNU General Public License as
 
25
# published by the Free Software Foundation; either version 2 of
 
26
# the License, or (at your option) any later version.
 
27
#
 
28
# This Program is distributed in the hope that it will be useful,
 
29
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
30
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
31
# GNU General Public License for more details.
 
32
#
 
33
# You should have received a copy of the GNU General Public
 
34
# License along with this Library; see the file COPYING.  If not,
 
35
# write to the Free Software Foundation, Inc., 59 Temple Place,
 
36
# Suite 330, Boston, MA 02111-1307, USA.
 
37
#
 
38
# Authors:
 
39
#   Frederic Ruaudel <grumz@grumz.net>
 
40
#   Rodrigo Moya <rodrigo@gnome-db.org>
 
41
#   Pierre Wieser <pwieser@trychlos.org>
 
42
#   ... and many others (see AUTHORS)
 
43
 
19
44
VPATH = @srcdir@
20
45
pkgdatadir = $(datadir)/@PACKAGE@
21
46
pkglibdir = $(libdir)/@PACKAGE@
22
47
pkgincludedir = $(includedir)/@PACKAGE@
23
 
top_builddir = ../..
24
 
 
25
48
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
26
 
INSTALL = @INSTALL@
27
49
install_sh_DATA = $(install_sh) -c -m 644
28
50
install_sh_PROGRAM = $(install_sh) -c
29
51
install_sh_SCRIPT = $(install_sh) -c
35
57
NORMAL_UNINSTALL = :
36
58
PRE_UNINSTALL = :
37
59
POST_UNINSTALL = :
 
60
build_triplet = @build@
38
61
host_triplet = @host@
 
62
target_triplet = @target@
 
63
subdir = icons/scalable
 
64
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
65
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
66
am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
 
67
        $(top_srcdir)/m4/nact-cmdline-tools.m4 \
 
68
        $(top_srcdir)/m4/nact-compiler-flags.m4 \
 
69
        $(top_srcdir)/m4/nact-maintainer-mode.m4 \
 
70
        $(top_srcdir)/m4/nact-nautilus-extdir.m4 \
 
71
        $(top_srcdir)/configure.ac
 
72
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
73
        $(ACLOCAL_M4)
 
74
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 
75
CONFIG_HEADER = $(top_builddir)/config.h
 
76
CONFIG_CLEAN_FILES =
 
77
SOURCES =
 
78
DIST_SOURCES =
 
79
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 
80
am__vpath_adj = case $$p in \
 
81
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 
82
    *) f=$$p;; \
 
83
  esac;
 
84
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
85
am__installdirs = "$(DESTDIR)$(svgicondir)"
 
86
svgiconDATA_INSTALL = $(INSTALL_DATA)
 
87
DATA = $(svgicon_DATA)
 
88
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
39
89
ACLOCAL = @ACLOCAL@
40
90
ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@
41
91
ALL_LINGUAS = @ALL_LINGUAS@
42
 
AMDEP_FALSE = @AMDEP_FALSE@
43
 
AMDEP_TRUE = @AMDEP_TRUE@
44
92
AMTAR = @AMTAR@
 
93
AM_CFLAGS = @AM_CFLAGS@
 
94
AM_CPPFLAGS = @AM_CPPFLAGS@
45
95
AR = @AR@
46
96
AUTOCONF = @AUTOCONF@
47
97
AUTOHEADER = @AUTOHEADER@
48
98
AUTOMAKE = @AUTOMAKE@
49
99
AWK = @AWK@
50
 
BINDIR = @BINDIR@
51
100
CATALOGS = @CATALOGS@
52
101
CATOBJEXT = @CATOBJEXT@
53
102
CC = @CC@
54
103
CCDEPMODE = @CCDEPMODE@
55
104
CFLAGS = @CFLAGS@
56
 
CONFIG_STATUS_DEPENDENCIES = @CONFIG_STATUS_DEPENDENCIES@
57
105
CPP = @CPP@
58
106
CPPFLAGS = @CPPFLAGS@
59
107
CXX = @CXX@
61
109
CXXDEPMODE = @CXXDEPMODE@
62
110
CXXFLAGS = @CXXFLAGS@
63
111
CYGPATH_W = @CYGPATH_W@
64
 
DATADIR = @DATADIR@
65
112
DATADIRNAME = @DATADIRNAME@
66
113
DEFS = @DEFS@
67
114
DEPDIR = @DEPDIR@
 
115
DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
116
DSYMUTIL = @DSYMUTIL@
68
117
ECHO = @ECHO@
69
118
ECHO_C = @ECHO_C@
70
119
ECHO_N = @ECHO_N@
74
123
F77 = @F77@
75
124
FFLAGS = @FFLAGS@
76
125
GCONFTOOL = @GCONFTOOL@
77
 
GCONF_SCHEMAS_INSTALL_FALSE = @GCONF_SCHEMAS_INSTALL_FALSE@
78
 
GCONF_SCHEMAS_INSTALL_TRUE = @GCONF_SCHEMAS_INSTALL_TRUE@
79
126
GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
80
127
GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@
81
128
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
82
 
GLADE_REQUIRED = @GLADE_REQUIRED@
83
 
GLIB_REQUIRED = @GLIB_REQUIRED@
84
129
GMOFILES = @GMOFILES@
85
130
GMSGFMT = @GMSGFMT@
86
 
GTK_REQUIRED = @GTK_REQUIRED@
 
131
GREP = @GREP@
 
132
INSTALL = @INSTALL@
87
133
INSTALL_DATA = @INSTALL_DATA@
88
134
INSTALL_PROGRAM = @INSTALL_PROGRAM@
89
135
INSTALL_SCRIPT = @INSTALL_SCRIPT@
94
140
INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@
95
141
INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@
96
142
INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
97
 
INTLTOOL_ICONV = @INTLTOOL_ICONV@
98
143
INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@
99
144
INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@
100
145
INTLTOOL_MERGE = @INTLTOOL_MERGE@
101
 
INTLTOOL_MSGFMT = @INTLTOOL_MSGFMT@
102
 
INTLTOOL_MSGMERGE = @INTLTOOL_MSGMERGE@
103
146
INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@
104
147
INTLTOOL_PERL = @INTLTOOL_PERL@
 
148
INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@
105
149
INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@
106
150
INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@
107
151
INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@
113
157
INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@
114
158
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
115
159
INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
116
 
INTLTOOL_XGETTEXT = @INTLTOOL_XGETTEXT@
117
160
INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
118
161
INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
119
162
LDFLAGS = @LDFLAGS@
121
164
LIBS = @LIBS@
122
165
LIBTOOL = @LIBTOOL@
123
166
LN_S = @LN_S@
124
 
LOCALEDIR = @LOCALEDIR@
125
167
LTLIBOBJS = @LTLIBOBJS@
126
168
MAINT = @MAINT@
127
 
MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
128
 
MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
129
169
MAKEINFO = @MAKEINFO@
 
170
MKDIR_P = @MKDIR_P@
130
171
MKINSTALLDIRS = @MKINSTALLDIRS@
131
172
MSGFMT = @MSGFMT@
 
173
MSGFMT_OPTS = @MSGFMT_OPTS@
 
174
MSGMERGE = @MSGMERGE@
132
175
NAUTILUS_ACTIONS_CFLAGS = @NAUTILUS_ACTIONS_CFLAGS@
133
176
NAUTILUS_ACTIONS_LIBS = @NAUTILUS_ACTIONS_LIBS@
134
177
NAUTILUS_ACTIONS_UTILS_CFLAGS = @NAUTILUS_ACTIONS_UTILS_CFLAGS@
135
178
NAUTILUS_ACTIONS_UTILS_LIBS = @NAUTILUS_ACTIONS_UTILS_LIBS@
136
179
NAUTILUS_EXTENSIONS_DIR = @NAUTILUS_EXTENSIONS_DIR@
 
180
NMEDIT = @NMEDIT@
137
181
OBJEXT = @OBJEXT@
138
182
OPTIONAL_SUBDIR = @OPTIONAL_SUBDIR@
139
183
PACKAGE = @PACKAGE@
157
201
VERSION = @VERSION@
158
202
WARN_CFLAGS = @WARN_CFLAGS@
159
203
XGETTEXT = @XGETTEXT@
160
 
ac_ct_AR = @ac_ct_AR@
 
204
abs_builddir = @abs_builddir@
 
205
abs_srcdir = @abs_srcdir@
 
206
abs_top_builddir = @abs_top_builddir@
 
207
abs_top_srcdir = @abs_top_srcdir@
161
208
ac_ct_CC = @ac_ct_CC@
162
209
ac_ct_CXX = @ac_ct_CXX@
163
210
ac_ct_F77 = @ac_ct_F77@
164
 
ac_ct_RANLIB = @ac_ct_RANLIB@
165
 
ac_ct_STRIP = @ac_ct_STRIP@
166
 
ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@
167
 
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
168
 
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
169
 
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
170
 
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
171
211
am__include = @am__include@
172
212
am__leading_dot = @am__leading_dot@
173
213
am__quote = @am__quote@
 
214
am__tar = @am__tar@
 
215
am__untar = @am__untar@
174
216
bindir = @bindir@
175
217
build = @build@
176
218
build_alias = @build_alias@
177
219
build_cpu = @build_cpu@
178
220
build_os = @build_os@
179
221
build_vendor = @build_vendor@
 
222
builddir = @builddir@
180
223
datadir = @datadir@
 
224
datarootdir = @datarootdir@
 
225
docdir = @docdir@
 
226
dvidir = @dvidir@
181
227
exec_prefix = @exec_prefix@
182
228
host = @host@
183
229
host_alias = @host_alias@
184
230
host_cpu = @host_cpu@
185
231
host_os = @host_os@
186
232
host_vendor = @host_vendor@
 
233
htmldir = @htmldir@
187
234
includedir = @includedir@
188
235
infodir = @infodir@
189
236
install_sh = @install_sh@
190
237
libdir = @libdir@
191
238
libexecdir = @libexecdir@
 
239
localedir = @localedir@
192
240
localstatedir = @localstatedir@
193
241
mandir = @mandir@
 
242
mkdir_p = @mkdir_p@
194
243
oldincludedir = @oldincludedir@
 
244
pdfdir = @pdfdir@
195
245
prefix = @prefix@
196
246
program_transform_name = @program_transform_name@
 
247
psdir = @psdir@
197
248
sbindir = @sbindir@
198
249
sharedstatedir = @sharedstatedir@
 
250
srcdir = @srcdir@
199
251
sysconfdir = @sysconfdir@
 
252
target = @target@
200
253
target_alias = @target_alias@
 
254
target_cpu = @target_cpu@
 
255
target_os = @target_os@
 
256
target_vendor = @target_vendor@
 
257
top_build_prefix = @top_build_prefix@
 
258
top_builddir = @top_builddir@
 
259
top_srcdir = @top_srcdir@
201
260
svgicondir = $(datadir)/icons/hicolor/scalable/apps
202
261
svgicon_DATA = nautilus-actions.svg
203
 
subdir = icons/scalable
204
 
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
205
 
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
206
 
CONFIG_HEADER = $(top_builddir)/config.h
207
 
CONFIG_CLEAN_FILES =
208
 
DIST_SOURCES =
209
 
DATA = $(svgicon_DATA)
210
 
 
211
 
DIST_COMMON = $(srcdir)/Makefile.in Makefile.am
 
262
EXTRA_DIST = $(svgicon_DATA)
212
263
all: all-am
213
264
 
214
265
.SUFFIXES:
215
 
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
 
266
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
267
        @for dep in $?; do \
 
268
          case '$(am__configure_deps)' in \
 
269
            *$$dep*) \
 
270
              cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
 
271
                && exit 0; \
 
272
              exit 1;; \
 
273
          esac; \
 
274
        done; \
 
275
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  icons/scalable/Makefile'; \
216
276
        cd $(top_srcdir) && \
217
277
          $(AUTOMAKE) --gnu  icons/scalable/Makefile
218
 
Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
219
 
        cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
 
278
.PRECIOUS: Makefile
 
279
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
280
        @case '$?' in \
 
281
          *config.status*) \
 
282
            cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
283
          *) \
 
284
            echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
285
            cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
286
        esac;
 
287
 
 
288
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
289
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
290
 
 
291
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
292
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
293
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
294
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
220
295
 
221
296
mostlyclean-libtool:
222
297
        -rm -f *.lo
223
298
 
224
299
clean-libtool:
225
300
        -rm -rf .libs _libs
226
 
 
227
 
distclean-libtool:
228
 
        -rm -f libtool
229
 
uninstall-info-am:
230
 
svgiconDATA_INSTALL = $(INSTALL_DATA)
231
301
install-svgiconDATA: $(svgicon_DATA)
232
302
        @$(NORMAL_INSTALL)
233
 
        $(mkinstalldirs) $(DESTDIR)$(svgicondir)
 
303
        test -z "$(svgicondir)" || $(MKDIR_P) "$(DESTDIR)$(svgicondir)"
234
304
        @list='$(svgicon_DATA)'; for p in $$list; do \
235
305
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
236
 
          f="`echo $$p | sed -e 's|^.*/||'`"; \
237
 
          echo " $(svgiconDATA_INSTALL) $$d$$p $(DESTDIR)$(svgicondir)/$$f"; \
238
 
          $(svgiconDATA_INSTALL) $$d$$p $(DESTDIR)$(svgicondir)/$$f; \
 
306
          f=$(am__strip_dir) \
 
307
          echo " $(svgiconDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(svgicondir)/$$f'"; \
 
308
          $(svgiconDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(svgicondir)/$$f"; \
239
309
        done
240
310
 
241
311
uninstall-svgiconDATA:
242
312
        @$(NORMAL_UNINSTALL)
243
313
        @list='$(svgicon_DATA)'; for p in $$list; do \
244
 
          f="`echo $$p | sed -e 's|^.*/||'`"; \
245
 
          echo " rm -f $(DESTDIR)$(svgicondir)/$$f"; \
246
 
          rm -f $(DESTDIR)$(svgicondir)/$$f; \
 
314
          f=$(am__strip_dir) \
 
315
          echo " rm -f '$(DESTDIR)$(svgicondir)/$$f'"; \
 
316
          rm -f "$(DESTDIR)$(svgicondir)/$$f"; \
247
317
        done
248
318
tags: TAGS
249
319
TAGS:
251
321
ctags: CTAGS
252
322
CTAGS:
253
323
 
254
 
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
255
 
 
256
 
top_distdir = ../..
257
 
distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
258
324
 
259
325
distdir: $(DISTFILES)
260
 
        @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
261
 
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
262
 
        list='$(DISTFILES)'; for file in $$list; do \
263
 
          case $$file in \
264
 
            $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
265
 
            $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
266
 
          esac; \
 
326
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 
327
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 
328
        list='$(DISTFILES)'; \
 
329
          dist_files=`for file in $$list; do echo $$file; done | \
 
330
          sed -e "s|^$$srcdirstrip/||;t" \
 
331
              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
 
332
        case $$dist_files in \
 
333
          */*) $(MKDIR_P) `echo "$$dist_files" | \
 
334
                           sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
 
335
                           sort -u` ;; \
 
336
        esac; \
 
337
        for file in $$dist_files; do \
267
338
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
268
 
          dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
269
 
          if test "$$dir" != "$$file" && test "$$dir" != "."; then \
270
 
            dir="/$$dir"; \
271
 
            $(mkinstalldirs) "$(distdir)$$dir"; \
272
 
          else \
273
 
            dir=''; \
274
 
          fi; \
275
339
          if test -d $$d/$$file; then \
 
340
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
276
341
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
277
342
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
278
343
            fi; \
286
351
check-am: all-am
287
352
check: check-am
288
353
all-am: Makefile $(DATA)
289
 
 
290
354
installdirs:
291
 
        $(mkinstalldirs) $(DESTDIR)$(svgicondir)
 
355
        for dir in "$(DESTDIR)$(svgicondir)"; do \
 
356
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
 
357
        done
292
358
install: install-am
293
359
install-exec: install-exec-am
294
360
install-data: install-data-am
308
374
clean-generic:
309
375
 
310
376
distclean-generic:
311
 
        -rm -f $(CONFIG_CLEAN_FILES)
 
377
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
312
378
 
313
379
maintainer-clean-generic:
314
380
        @echo "This command is intended for maintainers to use"
319
385
 
320
386
distclean: distclean-am
321
387
        -rm -f Makefile
322
 
distclean-am: clean-am distclean-generic distclean-libtool
 
388
distclean-am: clean-am distclean-generic
323
389
 
324
390
dvi: dvi-am
325
391
 
326
392
dvi-am:
327
393
 
 
394
html: html-am
 
395
 
328
396
info: info-am
329
397
 
330
398
info-am:
331
399
 
332
400
install-data-am: install-svgiconDATA
333
401
 
 
402
install-dvi: install-dvi-am
 
403
 
334
404
install-exec-am:
335
405
 
 
406
install-html: install-html-am
 
407
 
336
408
install-info: install-info-am
337
409
 
338
410
install-man:
339
411
 
 
412
install-pdf: install-pdf-am
 
413
 
 
414
install-ps: install-ps-am
 
415
 
340
416
installcheck-am:
341
417
 
342
418
maintainer-clean: maintainer-clean-am
355
431
 
356
432
ps-am:
357
433
 
358
 
uninstall-am: uninstall-info-am uninstall-svgiconDATA
 
434
uninstall-am: uninstall-svgiconDATA
 
435
 
 
436
.MAKE: install-am install-strip
359
437
 
360
438
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
361
439
        distclean distclean-generic distclean-libtool distdir dvi \
362
 
        dvi-am info info-am install install-am install-data \
363
 
        install-data-am install-exec install-exec-am install-info \
364
 
        install-info-am install-man install-strip install-svgiconDATA \
365
 
        installcheck installcheck-am installdirs maintainer-clean \
366
 
        maintainer-clean-generic mostlyclean mostlyclean-generic \
367
 
        mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
368
 
        uninstall-info-am uninstall-svgiconDATA
 
440
        dvi-am html html-am info info-am install install-am \
 
441
        install-data install-data-am install-dvi install-dvi-am \
 
442
        install-exec install-exec-am install-html install-html-am \
 
443
        install-info install-info-am install-man install-pdf \
 
444
        install-pdf-am install-ps install-ps-am install-strip \
 
445
        install-svgiconDATA installcheck installcheck-am installdirs \
 
446
        maintainer-clean maintainer-clean-generic mostlyclean \
 
447
        mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
448
        uninstall uninstall-am uninstall-svgiconDATA
369
449
 
370
450
# Tell versions [3.59,3.63) of GNU make to not export all variables.
371
451
# Otherwise a system limit (for SysV at least) may be exceeded.