~noskcaj/ubuntu/trusty/thunar/lp-1277149

« back to all changes in this revision

Viewing changes to docs/reference/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Sean Davis
  • Date: 2013-08-15 21:37:17 UTC
  • mfrom: (2.3.12 sid)
  • Revision ID: package-import@ubuntu.com-20130815213717-1t7zctcoohkt9mue
Tags: 1.6.3-1ubuntu1
* Merge from Debian unstable (LP: #1212905), remaining changes:
  - debian/control: recommend udisks2 for mounting devices. lp: #1014632
  

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.12.6 from Makefile.am.
 
1
# Makefile.in generated by automake 1.13.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
53
53
host_triplet = @host@
54
54
target_triplet = @target@
55
55
subdir = docs/reference
56
 
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
57
 
        $(top_srcdir)/mkinstalldirs
 
56
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
58
57
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
59
58
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
60
59
        $(top_srcdir)/configure.ac
61
60
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
62
61
        $(ACLOCAL_M4)
63
 
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 
62
mkinstalldirs = $(install_sh) -d
64
63
CONFIG_HEADER = $(top_builddir)/config.h
65
64
CONFIG_CLEAN_FILES =
66
65
CONFIG_CLEAN_VPATH_FILES =
78
77
am__v_at_1 = 
79
78
SOURCES =
80
79
DIST_SOURCES =
81
 
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
82
 
        html-recursive info-recursive install-data-recursive \
83
 
        install-dvi-recursive install-exec-recursive \
84
 
        install-html-recursive install-info-recursive \
85
 
        install-pdf-recursive install-ps-recursive install-recursive \
86
 
        installcheck-recursive installdirs-recursive pdf-recursive \
87
 
        ps-recursive uninstall-recursive
 
80
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
 
81
        ctags-recursive dvi-recursive html-recursive info-recursive \
 
82
        install-data-recursive install-dvi-recursive \
 
83
        install-exec-recursive install-html-recursive \
 
84
        install-info-recursive install-pdf-recursive \
 
85
        install-ps-recursive install-recursive installcheck-recursive \
 
86
        installdirs-recursive pdf-recursive ps-recursive \
 
87
        tags-recursive uninstall-recursive
88
88
am__can_run_installinfo = \
89
89
  case $$AM_UPDATE_INFO_DIR in \
90
90
    n|no|NO) false;; \
92
92
  esac
93
93
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
94
94
  distclean-recursive maintainer-clean-recursive
95
 
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
96
 
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
95
am__recursive_targets = \
 
96
  $(RECURSIVE_TARGETS) \
 
97
  $(RECURSIVE_CLEAN_TARGETS) \
 
98
  $(am__extra_recursive_targets)
 
99
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
97
100
        distdir
 
101
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 
102
# Read a list of newline-separated strings from the standard input,
 
103
# and print each of them once, without duplicates.  Input order is
 
104
# *not* preserved.
 
105
am__uniquify_input = $(AWK) '\
 
106
  BEGIN { nonempty = 0; } \
 
107
  { items[$$0] = 1; nonempty = 1; } \
 
108
  END { if (nonempty) { for (i in items) print i; }; } \
 
109
'
 
110
# Make sure the list of sources is unique.  This is necessary because,
 
111
# e.g., the same source file might be shared among _SOURCES variables
 
112
# for different programs/libraries.
 
113
am__define_uniq_tagged_files = \
 
114
  list='$(am__tagged_files)'; \
 
115
  unique=`for i in $$list; do \
 
116
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
117
  done | $(am__uniquify_input)`
98
118
ETAGS = etags
99
119
CTAGS = ctags
100
120
DIST_SUBDIRS = $(SUBDIRS)
426
446
# (1) if the variable is set in 'config.status', edit 'config.status'
427
447
#     (which will cause the Makefiles to be regenerated when you run 'make');
428
448
# (2) otherwise, pass the desired values on the 'make' command line.
429
 
$(RECURSIVE_TARGETS) $(RECURSIVE_CLEAN_TARGETS):
 
449
$(am__recursive_targets):
430
450
        @fail= failcom='exit 1'; \
431
451
        for f in x $$MAKEFLAGS; do \
432
452
          case $$f in \
454
474
        if test "$$dot_seen" = "no"; then \
455
475
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
456
476
        fi; test -z "$$fail"
457
 
tags-recursive:
458
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
459
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
460
 
        done
461
 
ctags-recursive:
462
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
463
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
464
 
        done
465
 
cscopelist-recursive:
466
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
467
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) cscopelist); \
468
 
        done
469
 
 
470
 
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
471
 
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
472
 
        unique=`for i in $$list; do \
473
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
474
 
          done | \
475
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
476
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
477
 
        mkid -fID $$unique
478
 
tags: TAGS
479
 
 
480
 
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
481
 
                $(TAGS_FILES) $(LISP)
 
477
 
 
478
ID: $(am__tagged_files)
 
479
        $(am__define_uniq_tagged_files); mkid -fID $$unique
 
480
tags: tags-recursive
 
481
TAGS: tags
 
482
 
 
483
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
482
484
        set x; \
483
485
        here=`pwd`; \
484
486
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
494
496
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
495
497
          fi; \
496
498
        done; \
497
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
498
 
        unique=`for i in $$list; do \
499
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
500
 
          done | \
501
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
502
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
499
        $(am__define_uniq_tagged_files); \
503
500
        shift; \
504
501
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
505
502
          test -n "$$unique" || unique=$$empty_fix; \
511
508
              $$unique; \
512
509
          fi; \
513
510
        fi
514
 
ctags: CTAGS
515
 
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
516
 
                $(TAGS_FILES) $(LISP)
517
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
518
 
        unique=`for i in $$list; do \
519
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
520
 
          done | \
521
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
522
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
511
ctags: ctags-recursive
 
512
 
 
513
CTAGS: ctags
 
514
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 
515
        $(am__define_uniq_tagged_files); \
523
516
        test -z "$(CTAGS_ARGS)$$unique" \
524
517
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
525
518
             $$unique
528
521
        here=`$(am__cd) $(top_builddir) && pwd` \
529
522
          && $(am__cd) $(top_srcdir) \
530
523
          && gtags -i $(GTAGS_ARGS) "$$here"
 
524
cscopelist: cscopelist-recursive
531
525
 
532
 
cscopelist: cscopelist-recursive $(HEADERS) $(SOURCES) $(LISP)
533
 
        list='$(SOURCES) $(HEADERS) $(LISP)'; \
 
526
cscopelist-am: $(am__tagged_files)
 
527
        list='$(am__tagged_files)'; \
534
528
        case "$(srcdir)" in \
535
529
          [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
536
530
          *) sdir=$(subdir)/$(srcdir) ;; \
702
696
 
703
697
uninstall-am:
704
698
 
705
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) \
706
 
        cscopelist-recursive ctags-recursive install-am install-strip \
707
 
        tags-recursive
 
699
.MAKE: $(am__recursive_targets) install-am install-strip
708
700
 
709
 
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
710
 
        all all-am check check-am clean clean-generic clean-libtool \
711
 
        cscopelist cscopelist-recursive ctags ctags-recursive \
712
 
        distclean distclean-generic distclean-libtool distclean-tags \
713
 
        distdir dvi dvi-am html html-am info info-am install \
714
 
        install-am install-data install-data-am install-dvi \
 
701
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
 
702
        check-am clean clean-generic clean-libtool cscopelist-am ctags \
 
703
        ctags-am distclean distclean-generic distclean-libtool \
 
704
        distclean-tags distdir dvi dvi-am html html-am info info-am \
 
705
        install install-am install-data install-data-am install-dvi \
715
706
        install-dvi-am install-exec install-exec-am install-html \
716
707
        install-html-am install-info install-info-am install-man \
717
708
        install-pdf install-pdf-am install-ps install-ps-am \
718
709
        install-strip installcheck installcheck-am installdirs \
719
710
        installdirs-am maintainer-clean maintainer-clean-generic \
720
711
        mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
721
 
        ps ps-am tags tags-recursive uninstall uninstall-am
 
712
        ps ps-am tags tags-am uninstall uninstall-am
722
713
 
723
714
 
724
715
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: