~ubuntu-branches/ubuntu/vivid/xfce4-panel/vivid

« back to all changes in this revision

Viewing changes to docs/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Lionel Le Folgoc
  • Date: 2013-07-07 10:54:09 UTC
  • mfrom: (4.2.15 sid)
  • Revision ID: package-import@ubuntu.com-20130707105409-nam2sh68h1reuiv4
Tags: 4.10.1-1ubuntu1
* Merge from Debian unstable, remaining Ubuntu changes:
  - debian/patches:
    + xubuntu_migrate-tasklist-separator.patch: added, try to be smart and
      work around the non-expandable tasklist plugin from 4.10 by setting
      as expandable the separator next to it (should work with the default
      panel layouts from Xubuntu, Mythbuntu and UbuntuStudio).
    + xubuntu_add-calendar-popup-to-clock-plugin.patch: added, taken from
      upstream git to show a calendar when left-clicking on the clock plugin
      (so we don't need orage/xfce4-datetime-plugin for this feature only).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.11.5 from Makefile.am.
 
1
# Makefile.in generated by automake 1.13.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
 
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6
 
# Foundation, Inc.
 
4
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
 
5
 
7
6
# This Makefile.in is free software; the Free Software Foundation
8
7
# gives unlimited permission to copy and/or distribute it,
9
8
# with or without modifications, as long as this notice is preserved.
51
50
build_triplet = @build@
52
51
host_triplet = @host@
53
52
subdir = docs
54
 
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
53
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
55
54
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
56
55
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
57
56
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
58
57
        $(ACLOCAL_M4)
59
 
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 
58
mkinstalldirs = $(install_sh) -d
60
59
CONFIG_HEADER = $(top_builddir)/config.h
61
60
CONFIG_CLEAN_FILES =
62
61
CONFIG_CLEAN_VPATH_FILES =
 
62
AM_V_P = $(am__v_P_@AM_V@)
 
63
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
 
64
am__v_P_0 = false
 
65
am__v_P_1 = :
63
66
AM_V_GEN = $(am__v_GEN_@AM_V@)
64
67
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
65
 
am__v_GEN_0 = @echo "  GEN   " $@;
 
68
am__v_GEN_0 = @echo "  GEN     " $@;
 
69
am__v_GEN_1 = 
66
70
AM_V_at = $(am__v_at_@AM_V@)
67
71
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
68
72
am__v_at_0 = @
 
73
am__v_at_1 = 
69
74
SOURCES =
70
75
DIST_SOURCES =
71
 
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
72
 
        html-recursive info-recursive install-data-recursive \
73
 
        install-dvi-recursive install-exec-recursive \
74
 
        install-html-recursive install-info-recursive \
75
 
        install-pdf-recursive install-ps-recursive install-recursive \
76
 
        installcheck-recursive installdirs-recursive pdf-recursive \
77
 
        ps-recursive uninstall-recursive
 
76
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
 
77
        ctags-recursive dvi-recursive html-recursive info-recursive \
 
78
        install-data-recursive install-dvi-recursive \
 
79
        install-exec-recursive install-html-recursive \
 
80
        install-info-recursive install-pdf-recursive \
 
81
        install-ps-recursive install-recursive installcheck-recursive \
 
82
        installdirs-recursive pdf-recursive ps-recursive \
 
83
        tags-recursive uninstall-recursive
78
84
am__can_run_installinfo = \
79
85
  case $$AM_UPDATE_INFO_DIR in \
80
86
    n|no|NO) false;; \
82
88
  esac
83
89
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
84
90
  distclean-recursive maintainer-clean-recursive
85
 
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
86
 
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
91
am__recursive_targets = \
 
92
  $(RECURSIVE_TARGETS) \
 
93
  $(RECURSIVE_CLEAN_TARGETS) \
 
94
  $(am__extra_recursive_targets)
 
95
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
87
96
        distdir
 
97
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 
98
# Read a list of newline-separated strings from the standard input,
 
99
# and print each of them once, without duplicates.  Input order is
 
100
# *not* preserved.
 
101
am__uniquify_input = $(AWK) '\
 
102
  BEGIN { nonempty = 0; } \
 
103
  { items[$$0] = 1; nonempty = 1; } \
 
104
  END { if (nonempty) { for (i in items) print i; }; } \
 
105
'
 
106
# Make sure the list of sources is unique.  This is necessary because,
 
107
# e.g., the same source file might be shared among _SOURCES variables
 
108
# for different programs/libraries.
 
109
am__define_uniq_tagged_files = \
 
110
  list='$(am__tagged_files)'; \
 
111
  unique=`for i in $$list; do \
 
112
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
113
  done | $(am__uniquify_input)`
88
114
ETAGS = etags
89
115
CTAGS = ctags
90
116
DIST_SUBDIRS = $(SUBDIRS)
388
414
        -rm -rf .libs _libs
389
415
 
390
416
# This directory's subdirectories are mostly independent; you can cd
391
 
# into them and run `make' without going through this Makefile.
392
 
# To change the values of `make' variables: instead of editing Makefiles,
393
 
# (1) if the variable is set in `config.status', edit `config.status'
394
 
#     (which will cause the Makefiles to be regenerated when you run `make');
395
 
# (2) otherwise, pass the desired values on the `make' command line.
396
 
$(RECURSIVE_TARGETS):
 
417
# into them and run 'make' without going through this Makefile.
 
418
# To change the values of 'make' variables: instead of editing Makefiles,
 
419
# (1) if the variable is set in 'config.status', edit 'config.status'
 
420
#     (which will cause the Makefiles to be regenerated when you run 'make');
 
421
# (2) otherwise, pass the desired values on the 'make' command line.
 
422
$(am__recursive_targets):
397
423
        @fail= failcom='exit 1'; \
398
424
        for f in x $$MAKEFLAGS; do \
399
425
          case $$f in \
403
429
        done; \
404
430
        dot_seen=no; \
405
431
        target=`echo $@ | sed s/-recursive//`; \
406
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
432
        case "$@" in \
 
433
          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
434
          *) list='$(SUBDIRS)' ;; \
 
435
        esac; \
 
436
        for subdir in $$list; do \
407
437
          echo "Making $$target in $$subdir"; \
408
438
          if test "$$subdir" = "."; then \
409
439
            dot_seen=yes; \
418
448
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
419
449
        fi; test -z "$$fail"
420
450
 
421
 
$(RECURSIVE_CLEAN_TARGETS):
422
 
        @fail= failcom='exit 1'; \
423
 
        for f in x $$MAKEFLAGS; do \
424
 
          case $$f in \
425
 
            *=* | --[!k]*);; \
426
 
            *k*) failcom='fail=yes';; \
427
 
          esac; \
428
 
        done; \
429
 
        dot_seen=no; \
430
 
        case "$@" in \
431
 
          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
432
 
          *) list='$(SUBDIRS)' ;; \
433
 
        esac; \
434
 
        rev=''; for subdir in $$list; do \
435
 
          if test "$$subdir" = "."; then :; else \
436
 
            rev="$$subdir $$rev"; \
437
 
          fi; \
438
 
        done; \
439
 
        rev="$$rev ."; \
440
 
        target=`echo $@ | sed s/-recursive//`; \
441
 
        for subdir in $$rev; do \
442
 
          echo "Making $$target in $$subdir"; \
443
 
          if test "$$subdir" = "."; then \
444
 
            local_target="$$target-am"; \
445
 
          else \
446
 
            local_target="$$target"; \
447
 
          fi; \
448
 
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
449
 
          || eval $$failcom; \
450
 
        done && test -z "$$fail"
451
 
tags-recursive:
452
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
453
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
454
 
        done
455
 
ctags-recursive:
456
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
457
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
458
 
        done
459
 
 
460
 
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
461
 
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
462
 
        unique=`for i in $$list; do \
463
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
464
 
          done | \
465
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
466
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
467
 
        mkid -fID $$unique
468
 
tags: TAGS
469
 
 
470
 
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
471
 
                $(TAGS_FILES) $(LISP)
 
451
ID: $(am__tagged_files)
 
452
        $(am__define_uniq_tagged_files); mkid -fID $$unique
 
453
tags: tags-recursive
 
454
TAGS: tags
 
455
 
 
456
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
472
457
        set x; \
473
458
        here=`pwd`; \
474
459
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
484
469
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
485
470
          fi; \
486
471
        done; \
487
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
488
 
        unique=`for i in $$list; do \
489
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
490
 
          done | \
491
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
492
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
472
        $(am__define_uniq_tagged_files); \
493
473
        shift; \
494
474
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
495
475
          test -n "$$unique" || unique=$$empty_fix; \
501
481
              $$unique; \
502
482
          fi; \
503
483
        fi
504
 
ctags: CTAGS
505
 
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
506
 
                $(TAGS_FILES) $(LISP)
507
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
508
 
        unique=`for i in $$list; do \
509
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
510
 
          done | \
511
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
512
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
484
ctags: ctags-recursive
 
485
 
 
486
CTAGS: ctags
 
487
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 
488
        $(am__define_uniq_tagged_files); \
513
489
        test -z "$(CTAGS_ARGS)$$unique" \
514
490
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
515
491
             $$unique
518
494
        here=`$(am__cd) $(top_builddir) && pwd` \
519
495
          && $(am__cd) $(top_srcdir) \
520
496
          && gtags -i $(GTAGS_ARGS) "$$here"
 
497
cscopelist: cscopelist-recursive
 
498
 
 
499
cscopelist-am: $(am__tagged_files)
 
500
        list='$(am__tagged_files)'; \
 
501
        case "$(srcdir)" in \
 
502
          [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
 
503
          *) sdir=$(subdir)/$(srcdir) ;; \
 
504
        esac; \
 
505
        for i in $$list; do \
 
506
          if test -f "$$i"; then \
 
507
            echo "$(subdir)/$$i"; \
 
508
          else \
 
509
            echo "$$sdir/$$i"; \
 
510
          fi; \
 
511
        done >> $(top_builddir)/cscope.files
521
512
 
522
513
distclean-tags:
523
514
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
678
669
 
679
670
uninstall-am:
680
671
 
681
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
682
 
        install-am install-strip tags-recursive
 
672
.MAKE: $(am__recursive_targets) install-am install-strip
683
673
 
684
 
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
685
 
        all all-am check check-am clean clean-generic clean-libtool \
686
 
        ctags ctags-recursive distclean distclean-generic \
687
 
        distclean-libtool distclean-tags distdir dvi dvi-am html \
688
 
        html-am info info-am install install-am install-data \
689
 
        install-data-am install-dvi install-dvi-am install-exec \
690
 
        install-exec-am install-html install-html-am install-info \
691
 
        install-info-am install-man install-pdf install-pdf-am \
692
 
        install-ps install-ps-am install-strip installcheck \
693
 
        installcheck-am installdirs installdirs-am maintainer-clean \
694
 
        maintainer-clean-generic mostlyclean mostlyclean-generic \
695
 
        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
696
 
        uninstall uninstall-am
 
674
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
 
675
        check-am clean clean-generic clean-libtool cscopelist-am ctags \
 
676
        ctags-am distclean distclean-generic distclean-libtool \
 
677
        distclean-tags distdir dvi dvi-am html html-am info info-am \
 
678
        install install-am install-data install-data-am install-dvi \
 
679
        install-dvi-am install-exec install-exec-am install-html \
 
680
        install-html-am install-info install-info-am install-man \
 
681
        install-pdf install-pdf-am install-ps install-ps-am \
 
682
        install-strip installcheck installcheck-am installdirs \
 
683
        installdirs-am maintainer-clean maintainer-clean-generic \
 
684
        mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
 
685
        ps ps-am tags tags-am uninstall uninstall-am
697
686
 
698
687
 
699
688
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: