~ubuntu-branches/ubuntu/oneiric/muse/oneiric

« back to all changes in this revision

Viewing changes to synti/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2010-11-17 21:43:38 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20101117214338-1hvfl7oo2dsqnvrb
Tags: 1.1-0ubuntu1
* New upstream release (LP: #668631)
* Switch to dpkg-source 3.0 (quilt) format
* Switch to dh7 short form
* debian/rules:
  - added --enable-dssi and --enable-osc to conf flags for dssi support
  - added -ljackserver to LDFLAGS to fix a FTBFS because of --as-needed
* debian/control:
  - added build build dependency on liblo-dev and dssi-dev for dssi support
  - bump Standards-version to 3.9.1. No changes required.
* debian/muse.desktop, debian/muse.xpm: dropped as desktop file and icon is
  now shipped upstream.
* fix-desktop-categories.patch: fix Categories tag in upstream desktop file
* 10_es_locale_fix.dpatch: refreshed and converted to quilt as
  fix_es_locale.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.9.6 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005  Free Software Foundation, Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 
6
# Inc.
6
7
# This Makefile.in is free software; the Free Software Foundation
7
8
# gives unlimited permission to copy and/or distribute it,
8
9
# with or without modifications, as long as this notice is preserved.
13
14
# PARTICULAR PURPOSE.
14
15
 
15
16
@SET_MAKE@
16
 
srcdir = @srcdir@
17
 
top_srcdir = @top_srcdir@
18
17
VPATH = @srcdir@
19
18
pkgdatadir = $(datadir)/@PACKAGE@
 
19
pkgincludedir = $(includedir)/@PACKAGE@
20
20
pkglibdir = $(libdir)/@PACKAGE@
21
 
pkgincludedir = $(includedir)/@PACKAGE@
22
 
top_builddir = ..
 
21
pkglibexecdir = $(libexecdir)/@PACKAGE@
23
22
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
24
 
INSTALL = @INSTALL@
25
23
install_sh_DATA = $(install_sh) -c -m 644
26
24
install_sh_PROGRAM = $(install_sh) -c
27
25
install_sh_SCRIPT = $(install_sh) -c
41
39
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
42
40
am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal-include.m4 \
43
41
        $(top_srcdir)/m4/alsa.m4 $(top_srcdir)/m4/docbook.m4 \
44
 
        $(top_srcdir)/m4/qt.m4 $(top_srcdir)/configure.ac
 
42
        $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
 
43
        $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
 
44
        $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/qt.m4 \
 
45
        $(top_srcdir)/configure.ac
45
46
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
46
47
        $(ACLOCAL_M4)
47
48
mkinstalldirs = $(install_sh) -d
48
49
CONFIG_HEADER = $(top_builddir)/config.h
49
50
CONFIG_CLEAN_FILES =
 
51
CONFIG_CLEAN_VPATH_FILES =
50
52
SOURCES =
51
53
DIST_SOURCES =
52
54
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
53
55
        html-recursive info-recursive install-data-recursive \
54
 
        install-exec-recursive install-info-recursive \
55
 
        install-recursive installcheck-recursive installdirs-recursive \
56
 
        pdf-recursive ps-recursive uninstall-info-recursive \
57
 
        uninstall-recursive
 
56
        install-dvi-recursive install-exec-recursive \
 
57
        install-html-recursive install-info-recursive \
 
58
        install-pdf-recursive install-ps-recursive install-recursive \
 
59
        installcheck-recursive installdirs-recursive pdf-recursive \
 
60
        ps-recursive uninstall-recursive
 
61
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
 
62
  distclean-recursive maintainer-clean-recursive
 
63
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 
64
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
65
        distdir
58
66
ETAGS = etags
59
67
CTAGS = ctags
60
68
DIST_SUBDIRS = $(SUBDIRS)
61
69
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
70
am__relativize = \
 
71
  dir0=`pwd`; \
 
72
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
 
73
  sed_rest='s,^[^/]*/*,,'; \
 
74
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
 
75
  sed_butlast='s,/*[^/]*$$,,'; \
 
76
  while test -n "$$dir1"; do \
 
77
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
 
78
    if test "$$first" != "."; then \
 
79
      if test "$$first" = ".."; then \
 
80
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
 
81
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
 
82
      else \
 
83
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
 
84
        if test "$$first2" = "$$first"; then \
 
85
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
 
86
        else \
 
87
          dir2="../$$dir2"; \
 
88
        fi; \
 
89
        dir0="$$dir0"/"$$first"; \
 
90
      fi; \
 
91
    fi; \
 
92
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
 
93
  done; \
 
94
  reldir="$$dir2"
62
95
ACLOCAL = @ACLOCAL@
63
96
ALSA_CFLAGS = @ALSA_CFLAGS@
64
97
ALSA_LIBS = @ALSA_LIBS@
65
 
AMDEP_FALSE = @AMDEP_FALSE@
66
 
AMDEP_TRUE = @AMDEP_TRUE@
67
98
AMTAR = @AMTAR@
68
99
AR = @AR@
69
100
AUTOCONF = @AUTOCONF@
88
119
DOTPATH = @DOTPATH@
89
120
DOXYGEN = @DOXYGEN@
90
121
DOXYGEN_TREEVIEW = @DOXYGEN_TREEVIEW@
91
 
DSSI_SUPPORT_FALSE = @DSSI_SUPPORT_FALSE@
92
 
DSSI_SUPPORT_TRUE = @DSSI_SUPPORT_TRUE@
93
 
ECHO = @ECHO@
 
122
DSYMUTIL = @DSYMUTIL@
 
123
DUMPBIN = @DUMPBIN@
94
124
ECHO_C = @ECHO_C@
95
125
ECHO_N = @ECHO_N@
96
126
ECHO_T = @ECHO_T@
97
127
EGREP = @EGREP@
98
 
ENABLEFLUIDSYNTH_FALSE = @ENABLEFLUIDSYNTH_FALSE@
99
 
ENABLEFLUIDSYNTH_TRUE = @ENABLEFLUIDSYNTH_TRUE@
100
 
ENABLE_PYTHON_FALSE = @ENABLE_PYTHON_FALSE@
101
 
ENABLE_PYTHON_TRUE = @ENABLE_PYTHON_TRUE@
102
128
EXEEXT = @EXEEXT@
103
 
F77 = @F77@
104
 
FFLAGS = @FFLAGS@
 
129
FGREP = @FGREP@
105
130
FLUIDSYNTHDIRS = @FLUIDSYNTHDIRS@
106
131
FST_CFLAGS = @FST_CFLAGS@
107
132
FST_LIBS = @FST_LIBS@
110
135
GIVERTCAP = @GIVERTCAP@
111
136
GREP = @GREP@
112
137
HAVEDOT = @HAVEDOT@
113
 
HAVE_AUDIO_FALSE = @HAVE_AUDIO_FALSE@
114
 
HAVE_AUDIO_TRUE = @HAVE_AUDIO_TRUE@
115
 
HAVE_LASH_FALSE = @HAVE_LASH_FALSE@
116
 
HAVE_LASH_TRUE = @HAVE_LASH_TRUE@
117
 
INSIDE_GNOME_COMMON_FALSE = @INSIDE_GNOME_COMMON_FALSE@
118
 
INSIDE_GNOME_COMMON_TRUE = @INSIDE_GNOME_COMMON_TRUE@
 
138
INSTALL = @INSTALL@
119
139
INSTALL_DATA = @INSTALL_DATA@
120
140
INSTALL_PROGRAM = @INSTALL_PROGRAM@
121
141
INSTALL_SCRIPT = @INSTALL_SCRIPT@
125
145
JADE = @JADE@
126
146
LASH_CFLAGS = @LASH_CFLAGS@
127
147
LASH_LIBS = @LASH_LIBS@
 
148
LD = @LD@
128
149
LDFLAGS = @LDFLAGS@
129
150
LIBOBJS = @LIBOBJS@
130
151
LIBS = @LIBS@
131
152
LIBTOOL = @LIBTOOL@
 
153
LIPO = @LIPO@
132
154
LN_S = @LN_S@
133
155
LO_CFLAGS = @LO_CFLAGS@
134
156
LO_LIBS = @LO_LIBS@
135
157
LTLIBOBJS = @LTLIBOBJS@
136
158
MAKEINFO = @MAKEINFO@
 
159
MKDIR_P = @MKDIR_P@
137
160
MOC = @MOC@
138
161
MUSECXXFLAGS = @MUSECXXFLAGS@
 
162
NM = @NM@
 
163
NMEDIT = @NMEDIT@
139
164
NSGMLS = @NSGMLS@
 
165
OBJDUMP = @OBJDUMP@
140
166
OBJEXT = @OBJEXT@
 
167
OTOOL = @OTOOL@
 
168
OTOOL64 = @OTOOL64@
141
169
PACKAGE = @PACKAGE@
142
170
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
143
171
PACKAGE_NAME = @PACKAGE_NAME@
144
172
PACKAGE_STRING = @PACKAGE_STRING@
145
173
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
174
PACKAGE_URL = @PACKAGE_URL@
146
175
PACKAGE_VERSION = @PACKAGE_VERSION@
147
176
PATH_SEPARATOR = @PATH_SEPARATOR@
148
177
PCH = @PCH@
149
 
PCH_FALSE = @PCH_FALSE@
150
 
PCH_TRUE = @PCH_TRUE@
151
178
PERL = @PERL@
152
179
PKG_CONFIG = @PKG_CONFIG@
153
180
PYTHON = @PYTHON@
160
187
QT_CFLAGS = @QT_CFLAGS@
161
188
QT_LIBS = @QT_LIBS@
162
189
RANLIB = @RANLIB@
163
 
RTCAP_FALSE = @RTCAP_FALSE@
164
 
RTCAP_TRUE = @RTCAP_TRUE@
165
190
SAMPLERATE_CFLAGS = @SAMPLERATE_CFLAGS@
166
191
SAMPLERATE_LIBS = @SAMPLERATE_LIBS@
 
192
SED = @SED@
167
193
SET_MAKE = @SET_MAKE@
168
194
SHELL = @SHELL@
169
195
SNDFILE_CFLAGS = @SNDFILE_CFLAGS@
173
199
SUIDINSTALL = @SUIDINSTALL@
174
200
UIC = @UIC@
175
201
USE_SSE = @USE_SSE@
176
 
USE_SSE_FALSE = @USE_SSE_FALSE@
177
 
USE_SSE_TRUE = @USE_SSE_TRUE@
178
202
UUID_CFLAGS = @UUID_CFLAGS@
179
203
UUID_LIBS = @UUID_LIBS@
180
204
VERSION = @VERSION@
181
 
VST_SUPPORT_FALSE = @VST_SUPPORT_FALSE@
182
 
VST_SUPPORT_TRUE = @VST_SUPPORT_TRUE@
183
205
XMKMF = @XMKMF@
184
206
X_CFLAGS = @X_CFLAGS@
185
207
X_EXTRA_LIBS = @X_EXTRA_LIBS@
186
208
X_LIBS = @X_LIBS@
187
209
X_PRE_LIBS = @X_PRE_LIBS@
 
210
abs_builddir = @abs_builddir@
 
211
abs_srcdir = @abs_srcdir@
 
212
abs_top_builddir = @abs_top_builddir@
 
213
abs_top_srcdir = @abs_top_srcdir@
188
214
ac_ct_CC = @ac_ct_CC@
189
215
ac_ct_CXX = @ac_ct_CXX@
190
 
ac_ct_F77 = @ac_ct_F77@
191
 
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
192
 
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
193
 
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
194
 
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
 
216
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
195
217
am__include = @am__include@
196
218
am__leading_dot = @am__leading_dot@
197
219
am__quote = @am__quote@
203
225
build_cpu = @build_cpu@
204
226
build_os = @build_os@
205
227
build_vendor = @build_vendor@
 
228
builddir = @builddir@
206
229
datadir = @datadir@
207
230
datarootdir = @datarootdir@
208
231
docdir = @docdir@
222
245
libexecdir = @libexecdir@
223
246
localedir = @localedir@
224
247
localstatedir = @localstatedir@
 
248
lt_ECHO = @lt_ECHO@
225
249
mandir = @mandir@
226
250
mkdir_p = @mkdir_p@
227
251
oldincludedir = @oldincludedir@
235
259
pythondir = @pythondir@
236
260
sbindir = @sbindir@
237
261
sharedstatedir = @sharedstatedir@
 
262
srcdir = @srcdir@
238
263
synth_fluid = @synth_fluid@
239
264
synth_fluidsynth = @synth_fluidsynth@
240
265
sysconfdir = @sysconfdir@
241
266
target_alias = @target_alias@
 
267
top_build_prefix = @top_build_prefix@
 
268
top_builddir = @top_builddir@
 
269
top_srcdir = @top_srcdir@
242
270
 
243
271
#if ENABLEFLUIDSYNTH
244
272
#SUBDIRS = libsynti s1 organ fluidsynth fluid vam deicsonze simpledrums
279
307
        @for dep in $?; do \
280
308
          case '$(am__configure_deps)' in \
281
309
            *$$dep*) \
282
 
              cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
283
 
                && exit 0; \
 
310
              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
 
311
                && { if test -f $@; then exit 0; else break; fi; }; \
284
312
              exit 1;; \
285
313
          esac; \
286
314
        done; \
287
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  synti/Makefile'; \
288
 
        cd $(top_srcdir) && \
289
 
          $(AUTOMAKE) --gnu  synti/Makefile
 
315
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu synti/Makefile'; \
 
316
        $(am__cd) $(top_srcdir) && \
 
317
          $(AUTOMAKE) --gnu synti/Makefile
290
318
.PRECIOUS: Makefile
291
319
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
292
320
        @case '$?' in \
304
332
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
305
333
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
306
334
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
335
$(am__aclocal_m4_deps):
307
336
 
308
337
mostlyclean-libtool:
309
338
        -rm -f *.lo
311
340
clean-libtool:
312
341
        -rm -rf .libs _libs
313
342
 
314
 
distclean-libtool:
315
 
        -rm -f libtool
316
 
uninstall-info-am:
317
 
 
318
343
# This directory's subdirectories are mostly independent; you can cd
319
344
# into them and run `make' without going through this Makefile.
320
345
# To change the values of `make' variables: instead of editing Makefiles,
339
364
          else \
340
365
            local_target="$$target"; \
341
366
          fi; \
342
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
367
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
343
368
          || eval $$failcom; \
344
369
        done; \
345
370
        if test "$$dot_seen" = "no"; then \
346
371
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
347
372
        fi; test -z "$$fail"
348
373
 
349
 
mostlyclean-recursive clean-recursive distclean-recursive \
350
 
maintainer-clean-recursive:
 
374
$(RECURSIVE_CLEAN_TARGETS):
351
375
        @failcom='exit 1'; \
352
376
        for f in x $$MAKEFLAGS; do \
353
377
          case $$f in \
374
398
          else \
375
399
            local_target="$$target"; \
376
400
          fi; \
377
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
401
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
378
402
          || eval $$failcom; \
379
403
        done && test -z "$$fail"
380
404
tags-recursive:
381
405
        list='$(SUBDIRS)'; for subdir in $$list; do \
382
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
406
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
383
407
        done
384
408
ctags-recursive:
385
409
        list='$(SUBDIRS)'; for subdir in $$list; do \
386
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
410
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
387
411
        done
388
412
 
389
413
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
391
415
        unique=`for i in $$list; do \
392
416
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
393
417
          done | \
394
 
          $(AWK) '    { files[$$0] = 1; } \
395
 
               END { for (i in files) print i; }'`; \
 
418
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
419
              END { if (nonempty) { for (i in files) print i; }; }'`; \
396
420
        mkid -fID $$unique
397
421
tags: TAGS
398
422
 
399
423
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
400
424
                $(TAGS_FILES) $(LISP)
401
 
        tags=; \
 
425
        set x; \
402
426
        here=`pwd`; \
403
427
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
404
428
          include_option=--etags-include; \
410
434
        list='$(SUBDIRS)'; for subdir in $$list; do \
411
435
          if test "$$subdir" = .; then :; else \
412
436
            test ! -f $$subdir/TAGS || \
413
 
              tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
437
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
414
438
          fi; \
415
439
        done; \
416
440
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
417
441
        unique=`for i in $$list; do \
418
442
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
419
443
          done | \
420
 
          $(AWK) '    { files[$$0] = 1; } \
421
 
               END { for (i in files) print i; }'`; \
422
 
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
444
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
445
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
446
        shift; \
 
447
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
423
448
          test -n "$$unique" || unique=$$empty_fix; \
424
 
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
425
 
            $$tags $$unique; \
 
449
          if test $$# -gt 0; then \
 
450
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
451
              "$$@" $$unique; \
 
452
          else \
 
453
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
454
              $$unique; \
 
455
          fi; \
426
456
        fi
427
457
ctags: CTAGS
428
458
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
429
459
                $(TAGS_FILES) $(LISP)
430
 
        tags=; \
431
 
        here=`pwd`; \
432
460
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
433
461
        unique=`for i in $$list; do \
434
462
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
435
463
          done | \
436
 
          $(AWK) '    { files[$$0] = 1; } \
437
 
               END { for (i in files) print i; }'`; \
438
 
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
464
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
465
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
466
        test -z "$(CTAGS_ARGS)$$unique" \
439
467
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
440
 
             $$tags $$unique
 
468
             $$unique
441
469
 
442
470
GTAGS:
443
471
        here=`$(am__cd) $(top_builddir) && pwd` \
444
 
          && cd $(top_srcdir) \
445
 
          && gtags -i $(GTAGS_ARGS) $$here
 
472
          && $(am__cd) $(top_srcdir) \
 
473
          && gtags -i $(GTAGS_ARGS) "$$here"
446
474
 
447
475
distclean-tags:
448
476
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
449
477
 
450
478
distdir: $(DISTFILES)
451
 
        $(mkdir_p) $(distdir)/..
452
 
        @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
453
 
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
454
 
        list='$(DISTFILES)'; for file in $$list; do \
455
 
          case $$file in \
456
 
            $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
457
 
            $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
458
 
          esac; \
 
479
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 
480
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 
481
        list='$(DISTFILES)'; \
 
482
          dist_files=`for file in $$list; do echo $$file; done | \
 
483
          sed -e "s|^$$srcdirstrip/||;t" \
 
484
              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
 
485
        case $$dist_files in \
 
486
          */*) $(MKDIR_P) `echo "$$dist_files" | \
 
487
                           sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
 
488
                           sort -u` ;; \
 
489
        esac; \
 
490
        for file in $$dist_files; do \
459
491
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
460
 
          dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
461
 
          if test "$$dir" != "$$file" && test "$$dir" != "."; then \
462
 
            dir="/$$dir"; \
463
 
            $(mkdir_p) "$(distdir)$$dir"; \
464
 
          else \
465
 
            dir=''; \
466
 
          fi; \
467
492
          if test -d $$d/$$file; then \
 
493
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
494
            if test -d "$(distdir)/$$file"; then \
 
495
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
496
            fi; \
468
497
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
469
 
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
498
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
499
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
470
500
            fi; \
471
 
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
501
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
472
502
          else \
473
 
            test -f $(distdir)/$$file \
474
 
            || cp -p $$d/$$file $(distdir)/$$file \
 
503
            test -f "$(distdir)/$$file" \
 
504
            || cp -p $$d/$$file "$(distdir)/$$file" \
475
505
            || exit 1; \
476
506
          fi; \
477
507
        done
478
 
        list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
508
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
479
509
          if test "$$subdir" = .; then :; else \
480
510
            test -d "$(distdir)/$$subdir" \
481
 
            || $(mkdir_p) "$(distdir)/$$subdir" \
 
511
            || $(MKDIR_P) "$(distdir)/$$subdir" \
482
512
            || exit 1; \
483
 
            distdir=`$(am__cd) $(distdir) && pwd`; \
484
 
            top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
485
 
            (cd $$subdir && \
 
513
          fi; \
 
514
        done
 
515
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
516
          if test "$$subdir" = .; then :; else \
 
517
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 
518
            $(am__relativize); \
 
519
            new_distdir=$$reldir; \
 
520
            dir1=$$subdir; dir2="$(top_distdir)"; \
 
521
            $(am__relativize); \
 
522
            new_top_distdir=$$reldir; \
 
523
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
 
524
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
 
525
            ($(am__cd) $$subdir && \
486
526
              $(MAKE) $(AM_MAKEFLAGS) \
487
 
                top_distdir="$$top_distdir" \
488
 
                distdir="$$distdir/$$subdir" \
 
527
                top_distdir="$$new_top_distdir" \
 
528
                distdir="$$new_distdir" \
 
529
                am__remove_distdir=: \
 
530
                am__skip_length_check=: \
 
531
                am__skip_mode_fix=: \
489
532
                distdir) \
490
533
              || exit 1; \
491
534
          fi; \
518
561
 
519
562
distclean-generic:
520
563
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
564
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
521
565
 
522
566
maintainer-clean-generic:
523
567
        @echo "This command is intended for maintainers to use"
529
573
 
530
574
distclean: distclean-recursive
531
575
        -rm -f Makefile
532
 
distclean-am: clean-am distclean-generic distclean-libtool \
533
 
        distclean-tags
 
576
distclean-am: clean-am distclean-generic distclean-tags
534
577
 
535
578
dvi: dvi-recursive
536
579
 
538
581
 
539
582
html: html-recursive
540
583
 
 
584
html-am:
 
585
 
541
586
info: info-recursive
542
587
 
543
588
info-am:
544
589
 
545
590
install-data-am:
546
591
 
 
592
install-dvi: install-dvi-recursive
 
593
 
 
594
install-dvi-am:
 
595
 
547
596
install-exec-am:
548
597
 
 
598
install-html: install-html-recursive
 
599
 
 
600
install-html-am:
 
601
 
549
602
install-info: install-info-recursive
550
603
 
 
604
install-info-am:
 
605
 
551
606
install-man:
552
607
 
 
608
install-pdf: install-pdf-recursive
 
609
 
 
610
install-pdf-am:
 
611
 
 
612
install-ps: install-ps-recursive
 
613
 
 
614
install-ps-am:
 
615
 
553
616
installcheck-am:
554
617
 
555
618
maintainer-clean: maintainer-clean-recursive
568
631
 
569
632
ps-am:
570
633
 
571
 
uninstall-am: uninstall-info-am
572
 
 
573
 
uninstall-info: uninstall-info-recursive
574
 
 
575
 
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
576
 
        clean clean-generic clean-libtool clean-recursive ctags \
577
 
        ctags-recursive distclean distclean-generic distclean-libtool \
578
 
        distclean-recursive distclean-tags distdir dvi dvi-am html \
 
634
uninstall-am:
 
635
 
 
636
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \
 
637
        ctags-recursive install install-am install-strip \
 
638
        tags-recursive
 
639
 
 
640
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
 
641
        all all-am check check-am clean clean-generic clean-libtool \
 
642
        ctags ctags-recursive distclean distclean-generic \
 
643
        distclean-libtool distclean-tags distdir dvi dvi-am html \
579
644
        html-am info info-am install install-am install-data \
580
 
        install-data-am install-exec install-exec-am install-info \
581
 
        install-info-am install-man install-strip installcheck \
 
645
        install-data-am install-dvi install-dvi-am install-exec \
 
646
        install-exec-am install-html install-html-am install-info \
 
647
        install-info-am install-man install-pdf install-pdf-am \
 
648
        install-ps install-ps-am install-strip installcheck \
582
649
        installcheck-am installdirs installdirs-am maintainer-clean \
583
 
        maintainer-clean-generic maintainer-clean-recursive \
584
 
        mostlyclean mostlyclean-generic mostlyclean-libtool \
585
 
        mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \
586
 
        uninstall uninstall-am uninstall-info-am
 
650
        maintainer-clean-generic mostlyclean mostlyclean-generic \
 
651
        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
 
652
        uninstall uninstall-am
587
653
 
588
654
 
589
655
de:
609
675
 
610
676
%.h: %.ui
611
677
        $(UIC) -L $(top_srcdir)/muse/widgets -o $@ $<
 
678
 
612
679
# Tell versions [3.59,3.63) of GNU make to not export all variables.
613
680
# Otherwise a system limit (for SysV at least) may be exceeded.
614
681
.NOEXPORT: