~ubuntu-branches/ubuntu/precise/uim/precise

« back to all changes in this revision

Viewing changes to examples/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Ilya Barygin
  • Date: 2011-12-18 16:35:38 UTC
  • mfrom: (1.1.13) (15.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20111218163538-8ktir39z2mjpii8z
Tags: 1:1.7.1-3ubuntu1
* Merge from Debian testing (LP: #818199).
* Remaining changes:
  - debian/uim-qt.install: Fix plugin path for multiarch location.
* Dropped changes:
  - uim-applet-gnome removal (GNOME 3 applet is available)
  - 19_as-needed_compile_fix.dpatch (accepted into Debian package)
* translations.patch: add several files to POTFILE.in to prevent
  intltool-update failure.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.10.2 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.1 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, 2006, 2007, 2008  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.
15
16
@SET_MAKE@
16
17
VPATH = @srcdir@
17
18
pkgdatadir = $(datadir)/@PACKAGE@
 
19
pkgincludedir = $(includedir)/@PACKAGE@
18
20
pkglibdir = $(libdir)/@PACKAGE@
19
 
pkgincludedir = $(includedir)/@PACKAGE@
 
21
pkglibexecdir = $(libexecdir)/@PACKAGE@
20
22
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
21
23
install_sh_DATA = $(install_sh) -c -m 644
22
24
install_sh_PROGRAM = $(install_sh) -c
40
42
        $(top_srcdir)/m4/ax_func_sigsetjmp.m4 \
41
43
        $(top_srcdir)/m4/ax_lib_glibc.m4 \
42
44
        $(top_srcdir)/m4/ax_path_qmake4.m4 $(top_srcdir)/m4/codeset.m4 \
43
 
        $(top_srcdir)/m4/eb4.m4 $(top_srcdir)/m4/gettext.m4 \
44
 
        $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \
45
 
        $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
46
 
        $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \
 
45
        $(top_srcdir)/m4/eb4.m4 $(top_srcdir)/m4/expat.m4 \
 
46
        $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/iconv.m4 \
 
47
        $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
 
48
        $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/nls.m4 \
 
49
        $(top_srcdir)/m4/openssl.m4 $(top_srcdir)/m4/po.m4 \
47
50
        $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/wnn.m4 \
48
51
        $(top_srcdir)/m4/xft.m4 $(top_srcdir)/configure.ac
49
52
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
51
54
mkinstalldirs = $(install_sh) -d
52
55
CONFIG_HEADER = $(top_builddir)/uim/config.h
53
56
CONFIG_CLEAN_FILES =
 
57
CONFIG_CLEAN_VPATH_FILES =
54
58
SOURCES =
55
59
DIST_SOURCES =
56
60
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
62
66
        ps-recursive uninstall-recursive
63
67
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
64
68
  distclean-recursive maintainer-clean-recursive
 
69
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 
70
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
71
        distdir
65
72
ETAGS = etags
66
73
CTAGS = ctags
67
74
DIST_SUBDIRS = $(SUBDIRS)
68
75
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
76
am__relativize = \
 
77
  dir0=`pwd`; \
 
78
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
 
79
  sed_rest='s,^[^/]*/*,,'; \
 
80
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
 
81
  sed_butlast='s,/*[^/]*$$,,'; \
 
82
  while test -n "$$dir1"; do \
 
83
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
 
84
    if test "$$first" != "."; then \
 
85
      if test "$$first" = ".."; then \
 
86
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
 
87
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
 
88
      else \
 
89
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
 
90
        if test "$$first2" = "$$first"; then \
 
91
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
 
92
        else \
 
93
          dir2="../$$dir2"; \
 
94
        fi; \
 
95
        dir0="$$dir0"/"$$first"; \
 
96
      fi; \
 
97
    fi; \
 
98
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
 
99
  done; \
 
100
  reldir="$$dir2"
69
101
ACLOCAL = @ACLOCAL@
70
102
ALLOCA = @ALLOCA@
71
103
ALL_LINGUAS = @ALL_LINGUAS@
76
108
ANTHY_UTF8_LIBS = @ANTHY_UTF8_LIBS@
77
109
APPLET_2_14_CFLAGS = @APPLET_2_14_CFLAGS@
78
110
APPLET_2_14_LIBS = @APPLET_2_14_LIBS@
 
111
APPLET_GNOME3_CFLAGS = @APPLET_GNOME3_CFLAGS@
 
112
APPLET_GNOME3_LIBS = @APPLET_GNOME3_LIBS@
79
113
APPLET_GNOME_CFLAGS = @APPLET_GNOME_CFLAGS@
80
114
APPLET_GNOME_LIBS = @APPLET_GNOME_LIBS@
81
115
AR = @AR@
89
123
CMAKE = @CMAKE@
90
124
CPP = @CPP@
91
125
CPPFLAGS = @CPPFLAGS@
 
126
CURL_CFLAGS = @CURL_CFLAGS@
 
127
CURL_LIBS = @CURL_LIBS@
92
128
CXX = @CXX@
93
129
CXXCPP = @CXXCPP@
94
130
CXXDEPMODE = @CXXDEPMODE@
100
136
DESTDIR = @DESTDIR@
101
137
DICT_CFLAGS = @DICT_CFLAGS@
102
138
DICT_LIBS = @DICT_LIBS@
 
139
DLLTOOL = @DLLTOOL@
103
140
DSYMUTIL = @DSYMUTIL@
104
141
DUMPBIN = @DUMPBIN@
105
142
EBCONF_EBINCS = @EBCONF_EBINCS@
118
155
EMACS = @EMACS@
119
156
EMACSLOADPATH = @EMACSLOADPATH@
120
157
EXEEXT = @EXEEXT@
 
158
EXPAT_CFLAGS = @EXPAT_CFLAGS@
 
159
EXPAT_LIBS = @EXPAT_LIBS@
121
160
FEP_LIBADD = @FEP_LIBADD@
 
161
FFI_CFLAGS = @FFI_CFLAGS@
 
162
FFI_LIBS = @FFI_LIBS@
122
163
FGREP = @FGREP@
 
164
GAUCHE_CONFIG = @GAUCHE_CONFIG@
123
165
GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
124
166
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
125
167
GMSGFMT = @GMSGFMT@
126
168
GMSGFMT_015 = @GMSGFMT_015@
 
169
GOSH = @GOSH@
127
170
GREP = @GREP@
128
171
GTK2_4_CFLAGS = @GTK2_4_CFLAGS@
129
172
GTK2_4_LIBS = @GTK2_4_LIBS@
130
173
GTK2_CFLAGS = @GTK2_CFLAGS@
131
174
GTK2_LIBS = @GTK2_LIBS@
 
175
GTK3_BINARY_VERSION = @GTK3_BINARY_VERSION@
 
176
GTK3_CFLAGS = @GTK3_CFLAGS@
 
177
GTK3_LIBDIR = @GTK3_LIBDIR@
 
178
GTK3_LIBS = @GTK3_LIBS@
132
179
GTK_BINARY_VERSION = @GTK_BINARY_VERSION@
133
180
GTK_LIBDIR = @GTK_LIBDIR@
134
181
HOST_MOC = @HOST_MOC@
140
187
INSTALL_SCRIPT = @INSTALL_SCRIPT@
141
188
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
142
189
INTLLIBS = @INTLLIBS@
143
 
INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@
144
 
INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@
145
 
INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@
146
190
INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
147
 
INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@
148
 
INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@
149
191
INTLTOOL_MERGE = @INTLTOOL_MERGE@
150
 
INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@
151
192
INTLTOOL_PERL = @INTLTOOL_PERL@
152
 
INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@
153
 
INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@
154
 
INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@
155
 
INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@
156
 
INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@
157
 
INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@
158
 
INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@
159
 
INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@
160
 
INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@
161
 
INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@
162
193
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
163
 
INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
164
 
INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
165
 
INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
166
194
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
167
195
KDE4_CONFIG = @KDE4_CONFIG@
168
196
KDE_CONFIG = @KDE_CONFIG@
195
223
MAINT = @MAINT@
196
224
MAKEINFO = @MAKEINFO@
197
225
MANA = @MANA@
 
226
MANIFEST_TOOL = @MANIFEST_TOOL@
198
227
MD5 = @MD5@
199
228
MKDIR_P = @MKDIR_P@
200
229
MOC = @MOC@
204
233
NETLIBS = @NETLIBS@
205
234
NM = @NM@
206
235
NMEDIT = @NMEDIT@
 
236
OBJC = @OBJC@
 
237
OBJCDEPMODE = @OBJCDEPMODE@
 
238
OBJCFLAGS = @OBJCFLAGS@
207
239
OBJDUMP = @OBJDUMP@
208
240
OBJEXT = @OBJEXT@
 
241
OPENSSL_CPPFLAGS = @OPENSSL_CPPFLAGS@
 
242
OPENSSL_LIBS = @OPENSSL_LIBS@
209
243
OTOOL = @OTOOL@
210
244
OTOOL64 = @OTOOL64@
211
245
PACKAGE = @PACKAGE@
213
247
PACKAGE_NAME = @PACKAGE_NAME@
214
248
PACKAGE_STRING = @PACKAGE_STRING@
215
249
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
250
PACKAGE_URL = @PACKAGE_URL@
216
251
PACKAGE_VERSION = @PACKAGE_VERSION@
217
252
PATH_SEPARATOR = @PATH_SEPARATOR@
218
253
PKG_CONFIG = @PKG_CONFIG@
 
254
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 
255
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
219
256
POSUB = @POSUB@
220
257
PRIME_CFLAGS = @PRIME_CFLAGS@
221
258
PRIME_LIBS = @PRIME_LIBS@
231
268
SH = @SH@
232
269
SHA1 = @SHA1@
233
270
SHELL = @SHELL@
234
 
SJ3_CFLAGS = @SJ3_CFLAGS@
235
 
SJ3_LIBS = @SJ3_LIBS@
 
271
SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
 
272
SQLITE3_LIBS = @SQLITE3_LIBS@
236
273
SRCDIR = @SRCDIR@
237
274
STRIP = @STRIP@
238
275
UIC = @UIC@
239
276
UIMEL_LISP_DIR = @UIMEL_LISP_DIR@
 
277
UIM_LIBEXECDIR = @UIM_LIBEXECDIR@
240
278
UIM_QT_CXXFLAGS = @UIM_QT_CXXFLAGS@
241
279
UIM_QT_LDFLAGS = @UIM_QT_LDFLAGS@
242
280
UIM_SCM_CFLAGS = @UIM_SCM_CFLAGS@
268
306
abs_srcdir = @abs_srcdir@
269
307
abs_top_builddir = @abs_top_builddir@
270
308
abs_top_srcdir = @abs_top_srcdir@
 
309
ac_ct_AR = @ac_ct_AR@
271
310
ac_ct_CC = @ac_ct_CC@
272
311
ac_ct_CXX = @ac_ct_CXX@
273
312
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
 
313
ac_ct_OBJC = @ac_ct_OBJC@
274
314
am__include = @am__include@
275
315
am__leading_dot = @am__leading_dot@
276
316
am__quote = @am__quote@
302
342
lispdir = @lispdir@
303
343
localedir = @localedir@
304
344
localstatedir = @localstatedir@
305
 
lt_ECHO = @lt_ECHO@
306
345
m17n_db_dir = @m17n_db_dir@
307
346
mandir = @mandir@
308
347
mkdir_p = @mkdir_p@
334
373
              exit 1;; \
335
374
          esac; \
336
375
        done; \
337
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  examples/Makefile'; \
338
 
        cd $(top_srcdir) && \
339
 
          $(AUTOMAKE) --foreign  examples/Makefile
 
376
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/Makefile'; \
 
377
        $(am__cd) $(top_srcdir) && \
 
378
          $(AUTOMAKE) --foreign examples/Makefile
340
379
.PRECIOUS: Makefile
341
380
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
342
381
        @case '$?' in \
354
393
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
355
394
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
356
395
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
396
$(am__aclocal_m4_deps):
357
397
 
358
398
mostlyclean-libtool:
359
399
        -rm -f *.lo
368
408
#     (which will cause the Makefiles to be regenerated when you run `make');
369
409
# (2) otherwise, pass the desired values on the `make' command line.
370
410
$(RECURSIVE_TARGETS):
371
 
        @failcom='exit 1'; \
 
411
        @fail= failcom='exit 1'; \
372
412
        for f in x $$MAKEFLAGS; do \
373
413
          case $$f in \
374
414
            *=* | --[!k]*);; \
385
425
          else \
386
426
            local_target="$$target"; \
387
427
          fi; \
388
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
428
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
389
429
          || eval $$failcom; \
390
430
        done; \
391
431
        if test "$$dot_seen" = "no"; then \
393
433
        fi; test -z "$$fail"
394
434
 
395
435
$(RECURSIVE_CLEAN_TARGETS):
396
 
        @failcom='exit 1'; \
 
436
        @fail= failcom='exit 1'; \
397
437
        for f in x $$MAKEFLAGS; do \
398
438
          case $$f in \
399
439
            *=* | --[!k]*);; \
419
459
          else \
420
460
            local_target="$$target"; \
421
461
          fi; \
422
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
462
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
423
463
          || eval $$failcom; \
424
464
        done && test -z "$$fail"
425
465
tags-recursive:
426
466
        list='$(SUBDIRS)'; for subdir in $$list; do \
427
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
467
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
428
468
        done
429
469
ctags-recursive:
430
470
        list='$(SUBDIRS)'; for subdir in $$list; do \
431
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
471
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
432
472
        done
433
473
 
434
474
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
443
483
 
444
484
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
445
485
                $(TAGS_FILES) $(LISP)
446
 
        tags=; \
 
486
        set x; \
447
487
        here=`pwd`; \
448
488
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
449
489
          include_option=--etags-include; \
455
495
        list='$(SUBDIRS)'; for subdir in $$list; do \
456
496
          if test "$$subdir" = .; then :; else \
457
497
            test ! -f $$subdir/TAGS || \
458
 
              tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
498
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
459
499
          fi; \
460
500
        done; \
461
501
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
464
504
          done | \
465
505
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
466
506
              END { if (nonempty) { for (i in files) print i; }; }'`; \
467
 
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
507
        shift; \
 
508
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
468
509
          test -n "$$unique" || unique=$$empty_fix; \
469
 
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
470
 
            $$tags $$unique; \
 
510
          if test $$# -gt 0; then \
 
511
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
512
              "$$@" $$unique; \
 
513
          else \
 
514
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
515
              $$unique; \
 
516
          fi; \
471
517
        fi
472
518
ctags: CTAGS
473
519
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
474
520
                $(TAGS_FILES) $(LISP)
475
 
        tags=; \
476
521
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
477
522
        unique=`for i in $$list; do \
478
523
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
479
524
          done | \
480
525
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
481
526
              END { if (nonempty) { for (i in files) print i; }; }'`; \
482
 
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
527
        test -z "$(CTAGS_ARGS)$$unique" \
483
528
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
484
 
             $$tags $$unique
 
529
             $$unique
485
530
 
486
531
GTAGS:
487
532
        here=`$(am__cd) $(top_builddir) && pwd` \
488
 
          && cd $(top_srcdir) \
489
 
          && gtags -i $(GTAGS_ARGS) $$here
 
533
          && $(am__cd) $(top_srcdir) \
 
534
          && gtags -i $(GTAGS_ARGS) "$$here"
490
535
 
491
536
distclean-tags:
492
537
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
507
552
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
508
553
          if test -d $$d/$$file; then \
509
554
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
555
            if test -d "$(distdir)/$$file"; then \
 
556
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
557
            fi; \
510
558
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
511
 
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
559
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
560
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
512
561
            fi; \
513
 
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
562
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
514
563
          else \
515
 
            test -f $(distdir)/$$file \
516
 
            || cp -p $$d/$$file $(distdir)/$$file \
 
564
            test -f "$(distdir)/$$file" \
 
565
            || cp -p $$d/$$file "$(distdir)/$$file" \
517
566
            || exit 1; \
518
567
          fi; \
519
568
        done
520
 
        list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
569
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
521
570
          if test "$$subdir" = .; then :; else \
522
571
            test -d "$(distdir)/$$subdir" \
523
572
            || $(MKDIR_P) "$(distdir)/$$subdir" \
524
573
            || exit 1; \
525
 
            distdir=`$(am__cd) $(distdir) && pwd`; \
526
 
            top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
527
 
            (cd $$subdir && \
 
574
          fi; \
 
575
        done
 
576
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
577
          if test "$$subdir" = .; then :; else \
 
578
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 
579
            $(am__relativize); \
 
580
            new_distdir=$$reldir; \
 
581
            dir1=$$subdir; dir2="$(top_distdir)"; \
 
582
            $(am__relativize); \
 
583
            new_top_distdir=$$reldir; \
 
584
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
 
585
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
 
586
            ($(am__cd) $$subdir && \
528
587
              $(MAKE) $(AM_MAKEFLAGS) \
529
 
                top_distdir="$$top_distdir" \
530
 
                distdir="$$distdir/$$subdir" \
 
588
                top_distdir="$$new_top_distdir" \
 
589
                distdir="$$new_distdir" \
531
590
                am__remove_distdir=: \
532
591
                am__skip_length_check=: \
 
592
                am__skip_mode_fix=: \
533
593
                distdir) \
534
594
              || exit 1; \
535
595
          fi; \
559
619
 
560
620
distclean-generic:
561
621
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
622
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
562
623
 
563
624
maintainer-clean-generic:
564
625
        @echo "This command is intended for maintainers to use"
577
638
 
578
639
html: html-recursive
579
640
 
 
641
html-am:
 
642
 
580
643
info: info-recursive
581
644
 
582
645
info-am:
585
648
 
586
649
install-dvi: install-dvi-recursive
587
650
 
 
651
install-dvi-am:
 
652
 
588
653
install-exec-am:
589
654
 
590
655
install-html: install-html-recursive
591
656
 
 
657
install-html-am:
 
658
 
592
659
install-info: install-info-recursive
593
660
 
 
661
install-info-am:
 
662
 
594
663
install-man:
595
664
 
596
665
install-pdf: install-pdf-recursive
597
666
 
 
667
install-pdf-am:
 
668
 
598
669
install-ps: install-ps-recursive
599
670
 
 
671
install-ps-am:
 
672
 
600
673
installcheck-am:
601
674
 
602
675
maintainer-clean: maintainer-clean-recursive
617
690
 
618
691
uninstall-am:
619
692
 
620
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
621
 
        install-strip
 
693
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
 
694
        install-am install-strip tags-recursive
622
695
 
623
696
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
624
697
        all all-am check check-am clean clean-generic clean-libtool \
634
707
        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
635
708
        uninstall uninstall-am
636
709
 
 
710
 
637
711
# Tell versions [3.59,3.63) of GNU make to not export all variables.
638
712
# Otherwise a system limit (for SysV at least) may be exceeded.
639
713
.NOEXPORT: