~ubuntu-branches/ubuntu/raring/codeblocks/raring-proposed

« back to all changes in this revision

Viewing changes to src/src/resources/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Cosme Domínguez Díaz
  • Date: 2010-08-09 04:38:38 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100809043838-a59ygguym4eg0jgw
Tags: 10.05-0ubuntu1
* New upstream release. Closes (LP: #322350)
 - Switch to dpkg-source 3.0 (quilt) format
 - Remove unneeded README.source
 - Add debian/get-source-orig script that removes all
   Windows prebuilt binaries
* Bump Standards-Version to 3.9.1
 - Stop shipping *.la files
* debian/control
 - Add cdbs package as Build-Depend
 - Add libbz2-dev and zlib1g-dev packages as
   Build-Depends (needed by libhelp_plugin.so)
 - Remove dpatch package of Build-Depends
 - Add codeblocks-contrib-debug package
 - Split architecture-independent files of codeblocks
   package in codeblocks-common package
* debian/rules
 - Switch to CDBS rules system
 - Add parallel build support
 - Add a call to debian/get-source-orig script
 - Use lzma compression (saves 23,5 MB of free space)
* debian/patches
 - Refresh 01_codeblocks_plugin_path
 - Add 02_no_Makefiles_in_debian_dir to remove any link
   in codeblocks build system to deleted Makefiles of debian directory
 - Drop 02_ftbfs_gcc44 and 03_ftbfs_glib221 (merged in upstream)
* debian/watch
 - Update to use the new host (berlios.de)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.10 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  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.
16
17
 
17
18
VPATH = @srcdir@
18
19
pkgdatadir = $(datadir)/@PACKAGE@
 
20
pkgincludedir = $(includedir)/@PACKAGE@
19
21
pkglibdir = $(libdir)/@PACKAGE@
20
 
pkgincludedir = $(includedir)/@PACKAGE@
 
22
pkglibexecdir = $(libexecdir)/@PACKAGE@
21
23
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
22
24
install_sh_DATA = $(install_sh) -c -m 644
23
25
install_sh_PROGRAM = $(install_sh) -c
44
46
mkinstalldirs = $(install_sh) -d
45
47
CONFIG_HEADER = $(top_builddir)/src/include/config.h
46
48
CONFIG_CLEAN_FILES =
 
49
CONFIG_CLEAN_VPATH_FILES =
47
50
SOURCES =
48
51
DIST_SOURCES =
49
52
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
58
61
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
59
62
    *) f=$$p;; \
60
63
  esac;
61
 
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
 
64
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
 
65
am__install_max = 40
 
66
am__nobase_strip_setup = \
 
67
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
 
68
am__nobase_strip = \
 
69
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
 
70
am__nobase_list = $(am__nobase_strip_setup); \
 
71
  for p in $$list; do echo "$$p $$p"; done | \
 
72
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
 
73
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
 
74
    if (++n[$$2] == $(am__install_max)) \
 
75
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
 
76
    END { for (dir in files) print dir, files[dir] }'
 
77
am__base_list = \
 
78
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
 
79
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
62
80
am__installdirs = "$(DESTDIR)$(pkgdatadir)"
63
 
dist_pkgdataDATA_INSTALL = $(INSTALL_DATA)
64
81
DATA = $(dist_noinst_DATA) $(dist_pkgdata_DATA)
65
82
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
66
83
  distclean-recursive maintainer-clean-recursive
 
84
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 
85
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
86
        distdir
67
87
ETAGS = etags
68
88
CTAGS = ctags
69
89
DIST_SUBDIRS = $(SUBDIRS)
70
90
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
91
am__relativize = \
 
92
  dir0=`pwd`; \
 
93
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
 
94
  sed_rest='s,^[^/]*/*,,'; \
 
95
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
 
96
  sed_butlast='s,/*[^/]*$$,,'; \
 
97
  while test -n "$$dir1"; do \
 
98
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
 
99
    if test "$$first" != "."; then \
 
100
      if test "$$first" = ".."; then \
 
101
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
 
102
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
 
103
      else \
 
104
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
 
105
        if test "$$first2" = "$$first"; then \
 
106
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
 
107
        else \
 
108
          dir2="../$$dir2"; \
 
109
        fi; \
 
110
        dir0="$$dir0"/"$$first"; \
 
111
      fi; \
 
112
    fi; \
 
113
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
 
114
  done; \
 
115
  reldir="$$dir2"
71
116
ACLOCAL = @ACLOCAL@
72
117
AMTAR = @AMTAR@
73
118
AR = @AR@
79
124
BUILD_BROWSETRACKER = @BUILD_BROWSETRACKER@
80
125
BUILD_BYOGAMES = @BUILD_BYOGAMES@
81
126
BUILD_CBKODERS = @BUILD_CBKODERS@
 
127
BUILD_CCCC = @BUILD_CCCC@
82
128
BUILD_CODESNIPPETS = @BUILD_CODESNIPPETS@
83
129
BUILD_CODESTAT = @BUILD_CODESTAT@
84
130
BUILD_COPYSTRINGS = @BUILD_COPYSTRINGS@
 
131
BUILD_CPPCHECK = @BUILD_CPPCHECK@
85
132
BUILD_DRAGSCROLL = @BUILD_DRAGSCROLL@
86
133
BUILD_ENVVARS = @BUILD_ENVVARS@
87
134
BUILD_EXPORTER = @BUILD_EXPORTER@
 
135
BUILD_HEADERFIXUP = @BUILD_HEADERFIXUP@
88
136
BUILD_HELP = @BUILD_HELP@
 
137
BUILD_HEXEDITOR = @BUILD_HEXEDITOR@
 
138
BUILD_INCSEARCH = @BUILD_INCSEARCH@
89
139
BUILD_KEYBINDER = @BUILD_KEYBINDER@
90
140
BUILD_LIBFINDER = @BUILD_LIBFINDER@
 
141
BUILD_MOUSESAP = @BUILD_MOUSESAP@
91
142
BUILD_PROFILER = @BUILD_PROFILER@
92
143
BUILD_REGEX = @BUILD_REGEX@
93
144
BUILD_SYMTAB = @BUILD_SYMTAB@
94
145
BUILD_THREADSEARCH = @BUILD_THREADSEARCH@
 
146
BUILD_VALGRIND = @BUILD_VALGRIND@
95
147
BUILD_WXSMITH = @BUILD_WXSMITH@
 
148
BUILD_WXSMITHAUI = @BUILD_WXSMITHAUI@
 
149
BUILD_WXSMITHCONTRIB = @BUILD_WXSMITHCONTRIB@
96
150
CC = @CC@
97
151
CCDEPMODE = @CCDEPMODE@
98
152
CFLAGS = @CFLAGS@
108
162
DATE = @DATE@
109
163
DEFS = @DEFS@
110
164
DEPDIR = @DEPDIR@
111
 
ECHO = @ECHO@
 
165
DSYMUTIL = @DSYMUTIL@
 
166
DUMPBIN = @DUMPBIN@
112
167
ECHO_C = @ECHO_C@
113
168
ECHO_N = @ECHO_N@
114
169
ECHO_T = @ECHO_T@
115
170
EGREP = @EGREP@
116
171
EXEEXT = @EXEEXT@
117
 
F77 = @F77@
118
 
FFLAGS = @FFLAGS@
 
172
FGREP = @FGREP@
119
173
GREP = @GREP@
120
174
GTK2_CFLAGS = @GTK2_CFLAGS@
121
175
GTK2_LIBS = @GTK2_LIBS@
125
179
INSTALL_PROGRAM = @INSTALL_PROGRAM@
126
180
INSTALL_SCRIPT = @INSTALL_SCRIPT@
127
181
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
182
LD = @LD@
128
183
LDFLAGS = @LDFLAGS@
129
184
LIBOBJS = @LIBOBJS@
130
185
LIBS = @LIBS@
131
186
LIBTOOL = @LIBTOOL@
 
187
LIPO = @LIPO@
132
188
LN_S = @LN_S@
133
189
LTLIBOBJS = @LTLIBOBJS@
134
190
MACSETFILE = @MACSETFILE@
135
191
MAKEINFO = @MAKEINFO@
136
192
MKDIR_P = @MKDIR_P@
 
193
NM = @NM@
 
194
NMEDIT = @NMEDIT@
 
195
OBJDUMP = @OBJDUMP@
137
196
OBJEXT = @OBJEXT@
 
197
OTOOL = @OTOOL@
 
198
OTOOL64 = @OTOOL64@
138
199
PACKAGE = @PACKAGE@
139
200
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
140
201
PACKAGE_NAME = @PACKAGE_NAME@
141
202
PACKAGE_STRING = @PACKAGE_STRING@
142
203
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
204
PACKAGE_URL = @PACKAGE_URL@
143
205
PACKAGE_VERSION = @PACKAGE_VERSION@
144
206
PATH_SEPARATOR = @PATH_SEPARATOR@
145
207
PKG_CONFIG = @PKG_CONFIG@
 
208
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 
209
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
146
210
PLATFORM_CFLAGS = @PLATFORM_CFLAGS@
147
211
PLATFORM_LIBS = @PLATFORM_LIBS@
148
212
PLUGIN_FLAGS = @PLUGIN_FLAGS@
177
241
abs_top_srcdir = @abs_top_srcdir@
178
242
ac_ct_CC = @ac_ct_CC@
179
243
ac_ct_CXX = @ac_ct_CXX@
180
 
ac_ct_F77 = @ac_ct_F77@
 
244
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
181
245
am__include = @am__include@
182
246
am__leading_dot = @am__leading_dot@
183
247
am__quote = @am__quote@
209
273
libexecdir = @libexecdir@
210
274
localedir = @localedir@
211
275
localstatedir = @localstatedir@
 
276
lt_ECHO = @lt_ECHO@
212
277
mandir = @mandir@
213
278
mkdir_p = @mkdir_p@
214
279
oldincludedir = @oldincludedir@
225
290
target_cpu = @target_cpu@
226
291
target_os = @target_os@
227
292
target_vendor = @target_vendor@
 
293
top_build_prefix = @top_build_prefix@
228
294
top_builddir = @top_builddir@
229
295
top_srcdir = @top_srcdir@
230
296
SUBDIRS = icons images
242
308
        @for dep in $?; do \
243
309
          case '$(am__configure_deps)' in \
244
310
            *$$dep*) \
245
 
              cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
246
 
                && exit 0; \
 
311
              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
 
312
                && { if test -f $@; then exit 0; else break; fi; }; \
247
313
              exit 1;; \
248
314
          esac; \
249
315
        done; \
250
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/src/resources/Makefile'; \
251
 
        cd $(top_srcdir) && \
252
 
          $(AUTOMAKE) --foreign  src/src/resources/Makefile
 
316
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/src/resources/Makefile'; \
 
317
        $(am__cd) $(top_srcdir) && \
 
318
          $(AUTOMAKE) --foreign src/src/resources/Makefile
253
319
.PRECIOUS: Makefile
254
320
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
255
321
        @case '$?' in \
267
333
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
268
334
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
269
335
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
336
$(am__aclocal_m4_deps):
270
337
 
271
338
mostlyclean-libtool:
272
339
        -rm -f *.lo
276
343
install-dist_pkgdataDATA: $(dist_pkgdata_DATA)
277
344
        @$(NORMAL_INSTALL)
278
345
        test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
279
 
        @list='$(dist_pkgdata_DATA)'; for p in $$list; do \
 
346
        @list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
 
347
        for p in $$list; do \
280
348
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
281
 
          f=$(am__strip_dir) \
282
 
          echo " $(dist_pkgdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgdatadir)/$$f'"; \
283
 
          $(dist_pkgdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgdatadir)/$$f"; \
 
349
          echo "$$d$$p"; \
 
350
        done | $(am__base_list) | \
 
351
        while read files; do \
 
352
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdatadir)'"; \
 
353
          $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \
284
354
        done
285
355
 
286
356
uninstall-dist_pkgdataDATA:
287
357
        @$(NORMAL_UNINSTALL)
288
 
        @list='$(dist_pkgdata_DATA)'; for p in $$list; do \
289
 
          f=$(am__strip_dir) \
290
 
          echo " rm -f '$(DESTDIR)$(pkgdatadir)/$$f'"; \
291
 
          rm -f "$(DESTDIR)$(pkgdatadir)/$$f"; \
292
 
        done
 
358
        @list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
 
359
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 
360
        test -n "$$files" || exit 0; \
 
361
        echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$files ")"; \
 
362
        cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$files
293
363
 
294
364
# This directory's subdirectories are mostly independent; you can cd
295
365
# into them and run `make' without going through this Makefile.
298
368
#     (which will cause the Makefiles to be regenerated when you run `make');
299
369
# (2) otherwise, pass the desired values on the `make' command line.
300
370
$(RECURSIVE_TARGETS):
301
 
        @failcom='exit 1'; \
 
371
        @fail= failcom='exit 1'; \
302
372
        for f in x $$MAKEFLAGS; do \
303
373
          case $$f in \
304
374
            *=* | --[!k]*);; \
315
385
          else \
316
386
            local_target="$$target"; \
317
387
          fi; \
318
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
388
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
319
389
          || eval $$failcom; \
320
390
        done; \
321
391
        if test "$$dot_seen" = "no"; then \
323
393
        fi; test -z "$$fail"
324
394
 
325
395
$(RECURSIVE_CLEAN_TARGETS):
326
 
        @failcom='exit 1'; \
 
396
        @fail= failcom='exit 1'; \
327
397
        for f in x $$MAKEFLAGS; do \
328
398
          case $$f in \
329
399
            *=* | --[!k]*);; \
349
419
          else \
350
420
            local_target="$$target"; \
351
421
          fi; \
352
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
422
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
353
423
          || eval $$failcom; \
354
424
        done && test -z "$$fail"
355
425
tags-recursive:
356
426
        list='$(SUBDIRS)'; for subdir in $$list; do \
357
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
427
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
358
428
        done
359
429
ctags-recursive:
360
430
        list='$(SUBDIRS)'; for subdir in $$list; do \
361
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
431
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
362
432
        done
363
433
 
364
434
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
366
436
        unique=`for i in $$list; do \
367
437
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
368
438
          done | \
369
 
          $(AWK) '    { files[$$0] = 1; } \
370
 
               END { for (i in files) print i; }'`; \
 
439
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
440
              END { if (nonempty) { for (i in files) print i; }; }'`; \
371
441
        mkid -fID $$unique
372
442
tags: TAGS
373
443
 
374
444
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
375
445
                $(TAGS_FILES) $(LISP)
376
 
        tags=; \
 
446
        set x; \
377
447
        here=`pwd`; \
378
448
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
379
449
          include_option=--etags-include; \
385
455
        list='$(SUBDIRS)'; for subdir in $$list; do \
386
456
          if test "$$subdir" = .; then :; else \
387
457
            test ! -f $$subdir/TAGS || \
388
 
              tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
458
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
389
459
          fi; \
390
460
        done; \
391
461
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
392
462
        unique=`for i in $$list; do \
393
463
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
394
464
          done | \
395
 
          $(AWK) '    { files[$$0] = 1; } \
396
 
               END { for (i in files) print i; }'`; \
397
 
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
465
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
466
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
467
        shift; \
 
468
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
398
469
          test -n "$$unique" || unique=$$empty_fix; \
399
 
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
400
 
            $$tags $$unique; \
 
470
          if test $$# -gt 0; then \
 
471
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
472
              "$$@" $$unique; \
 
473
          else \
 
474
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
475
              $$unique; \
 
476
          fi; \
401
477
        fi
402
478
ctags: CTAGS
403
479
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
404
480
                $(TAGS_FILES) $(LISP)
405
 
        tags=; \
406
 
        here=`pwd`; \
407
481
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
408
482
        unique=`for i in $$list; do \
409
483
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
410
484
          done | \
411
 
          $(AWK) '    { files[$$0] = 1; } \
412
 
               END { for (i in files) print i; }'`; \
413
 
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
485
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
 
486
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
487
        test -z "$(CTAGS_ARGS)$$unique" \
414
488
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
415
 
             $$tags $$unique
 
489
             $$unique
416
490
 
417
491
GTAGS:
418
492
        here=`$(am__cd) $(top_builddir) && pwd` \
419
 
          && cd $(top_srcdir) \
420
 
          && gtags -i $(GTAGS_ARGS) $$here
 
493
          && $(am__cd) $(top_srcdir) \
 
494
          && gtags -i $(GTAGS_ARGS) "$$here"
421
495
 
422
496
distclean-tags:
423
497
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
438
512
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
439
513
          if test -d $$d/$$file; then \
440
514
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
515
            if test -d "$(distdir)/$$file"; then \
 
516
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
517
            fi; \
441
518
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
442
 
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
519
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
520
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
443
521
            fi; \
444
 
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
522
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
445
523
          else \
446
 
            test -f $(distdir)/$$file \
447
 
            || cp -p $$d/$$file $(distdir)/$$file \
 
524
            test -f "$(distdir)/$$file" \
 
525
            || cp -p $$d/$$file "$(distdir)/$$file" \
448
526
            || exit 1; \
449
527
          fi; \
450
528
        done
451
 
        list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
529
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
452
530
          if test "$$subdir" = .; then :; else \
453
531
            test -d "$(distdir)/$$subdir" \
454
532
            || $(MKDIR_P) "$(distdir)/$$subdir" \
455
533
            || exit 1; \
456
 
            distdir=`$(am__cd) $(distdir) && pwd`; \
457
 
            top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
458
 
            (cd $$subdir && \
 
534
          fi; \
 
535
        done
 
536
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
537
          if test "$$subdir" = .; then :; else \
 
538
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 
539
            $(am__relativize); \
 
540
            new_distdir=$$reldir; \
 
541
            dir1=$$subdir; dir2="$(top_distdir)"; \
 
542
            $(am__relativize); \
 
543
            new_top_distdir=$$reldir; \
 
544
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
 
545
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
 
546
            ($(am__cd) $$subdir && \
459
547
              $(MAKE) $(AM_MAKEFLAGS) \
460
 
                top_distdir="$$top_distdir" \
461
 
                distdir="$$distdir/$$subdir" \
 
548
                top_distdir="$$new_top_distdir" \
 
549
                distdir="$$new_distdir" \
462
550
                am__remove_distdir=: \
463
551
                am__skip_length_check=: \
 
552
                am__skip_mode_fix=: \
464
553
                distdir) \
465
554
              || exit 1; \
466
555
          fi; \
494
583
 
495
584
distclean-generic:
496
585
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
586
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
497
587
 
498
588
maintainer-clean-generic:
499
589
        @echo "This command is intended for maintainers to use"
512
602
 
513
603
html: html-recursive
514
604
 
 
605
html-am:
 
606
 
515
607
info: info-recursive
516
608
 
517
609
info-am:
520
612
 
521
613
install-dvi: install-dvi-recursive
522
614
 
 
615
install-dvi-am:
 
616
 
523
617
install-exec-am:
524
618
 
525
619
install-html: install-html-recursive
526
620
 
 
621
install-html-am:
 
622
 
527
623
install-info: install-info-recursive
528
624
 
 
625
install-info-am:
 
626
 
529
627
install-man:
530
628
 
531
629
install-pdf: install-pdf-recursive
532
630
 
 
631
install-pdf-am:
 
632
 
533
633
install-ps: install-ps-recursive
534
634
 
 
635
install-ps-am:
 
636
 
535
637
installcheck-am:
536
638
 
537
639
maintainer-clean: maintainer-clean-recursive
552
654
 
553
655
uninstall-am: uninstall-dist_pkgdataDATA
554
656
 
555
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
556
 
        install-strip
 
657
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
 
658
        install-am install-strip tags-recursive
557
659
 
558
660
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
559
661
        all all-am check check-am clean clean-generic clean-libtool \
576
678
 
577
679
start_here.zip: $(srcdir)/start_here/*.htm* $(srcdir)/start_here/*.png
578
680
        PWD=`pwd` cd $(srcdir)/start_here && zip $(PWD)/start_here.zip *.htm* *.png > /dev/null
 
681
 
579
682
# Tell versions [3.59,3.63) of GNU make to not export all variables.
580
683
# Otherwise a system limit (for SysV at least) may be exceeded.
581
684
.NOEXPORT: