~ubuntu-branches/debian/experimental/file-roller/experimental

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson
  • Date: 2013-03-25 14:07:41 UTC
  • mfrom: (1.6.95)
  • Revision ID: package-import@ubuntu.com-20130325140741-fn92im56sms30zkg
Tags: 3.7.92-1
* New upstream release.
* Drop debian/patches/git_handle_cab.patch, from upstream now in release.
* Bump libgtk-3-dev build-dependency to (>= 3.6.0)
  - source uses GtkMenuButton which is new in 3.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.12.5 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.
50
50
build_triplet = @build@
51
51
host_triplet = @host@
52
52
subdir = .
53
 
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
54
 
        $(srcdir)/Makefile.in $(srcdir)/config.h.in \
55
 
        $(srcdir)/file-roller.spec.in $(top_srcdir)/configure AUTHORS \
56
 
        COPYING ChangeLog INSTALL NEWS TODO config.guess config.sub \
57
 
        depcomp install-sh ltmain.sh missing
 
53
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
 
54
        $(top_srcdir)/configure $(am__configure_deps) \
 
55
        $(srcdir)/config.h.in $(srcdir)/file-roller.spec.in AUTHORS \
 
56
        COPYING ChangeLog INSTALL NEWS README TODO config.guess \
 
57
        config.sub depcomp install-sh missing ltmain.sh
58
58
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
59
59
am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
60
60
        $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
82
82
am__v_at_1 = 
83
83
SOURCES =
84
84
DIST_SOURCES =
85
 
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
86
 
        html-recursive info-recursive install-data-recursive \
87
 
        install-dvi-recursive install-exec-recursive \
88
 
        install-html-recursive install-info-recursive \
89
 
        install-pdf-recursive install-ps-recursive install-recursive \
90
 
        installcheck-recursive installdirs-recursive pdf-recursive \
91
 
        ps-recursive uninstall-recursive
 
85
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
 
86
        ctags-recursive dvi-recursive html-recursive info-recursive \
 
87
        install-data-recursive install-dvi-recursive \
 
88
        install-exec-recursive install-html-recursive \
 
89
        install-info-recursive install-pdf-recursive \
 
90
        install-ps-recursive install-recursive installcheck-recursive \
 
91
        installdirs-recursive pdf-recursive ps-recursive \
 
92
        tags-recursive uninstall-recursive
92
93
am__can_run_installinfo = \
93
94
  case $$AM_UPDATE_INFO_DIR in \
94
95
    n|no|NO) false;; \
96
97
  esac
97
98
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
98
99
  distclean-recursive maintainer-clean-recursive
99
 
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
100
 
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
100
am__recursive_targets = \
 
101
  $(RECURSIVE_TARGETS) \
 
102
  $(RECURSIVE_CLEAN_TARGETS) \
 
103
  $(am__extra_recursive_targets)
 
104
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
101
105
        cscope distdir dist dist-all distcheck
 
106
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
 
107
        $(LISP)config.h.in
 
108
# Read a list of newline-separated strings from the standard input,
 
109
# and print each of them once, without duplicates.  Input order is
 
110
# *not* preserved.
 
111
am__uniquify_input = $(AWK) '\
 
112
  BEGIN { nonempty = 0; } \
 
113
  { items[$$0] = 1; nonempty = 1; } \
 
114
  END { if (nonempty) { for (i in items) print i; }; } \
 
115
'
 
116
# Make sure the list of sources is unique.  This is necessary because,
 
117
# e.g., the same source file might be shared among _SOURCES variables
 
118
# for different programs/libraries.
 
119
am__define_uniq_tagged_files = \
 
120
  list='$(am__tagged_files)'; \
 
121
  unique=`for i in $$list; do \
 
122
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
123
  done | $(am__uniquify_input)`
102
124
ETAGS = etags
103
125
CTAGS = ctags
104
126
CSCOPE = cscope
442
464
# (1) if the variable is set in 'config.status', edit 'config.status'
443
465
#     (which will cause the Makefiles to be regenerated when you run 'make');
444
466
# (2) otherwise, pass the desired values on the 'make' command line.
445
 
$(RECURSIVE_TARGETS) $(RECURSIVE_CLEAN_TARGETS):
 
467
$(am__recursive_targets):
446
468
        @fail= failcom='exit 1'; \
447
469
        for f in x $$MAKEFLAGS; do \
448
470
          case $$f in \
470
492
        if test "$$dot_seen" = "no"; then \
471
493
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
472
494
        fi; test -z "$$fail"
473
 
tags-recursive:
474
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
475
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
476
 
        done
477
 
ctags-recursive:
478
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
479
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
480
 
        done
481
 
cscopelist-recursive:
482
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
483
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) cscopelist); \
484
 
        done
485
 
 
486
 
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
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; }; }'`; \
493
 
        mkid -fID $$unique
494
 
tags: TAGS
495
 
 
496
 
TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
497
 
                $(TAGS_FILES) $(LISP)
 
495
 
 
496
ID: $(am__tagged_files)
 
497
        $(am__define_uniq_tagged_files); mkid -fID $$unique
 
498
tags: tags-recursive
 
499
TAGS: tags
 
500
 
 
501
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
498
502
        set x; \
499
503
        here=`pwd`; \
500
504
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
510
514
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
511
515
          fi; \
512
516
        done; \
513
 
        list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
514
 
        unique=`for i in $$list; do \
515
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
516
 
          done | \
517
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
518
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
517
        $(am__define_uniq_tagged_files); \
519
518
        shift; \
520
519
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
521
520
          test -n "$$unique" || unique=$$empty_fix; \
527
526
              $$unique; \
528
527
          fi; \
529
528
        fi
530
 
ctags: CTAGS
531
 
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
532
 
                $(TAGS_FILES) $(LISP)
533
 
        list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
534
 
        unique=`for i in $$list; do \
535
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
536
 
          done | \
537
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
538
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
529
ctags: ctags-recursive
 
530
 
 
531
CTAGS: ctags
 
532
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 
533
        $(am__define_uniq_tagged_files); \
539
534
        test -z "$(CTAGS_ARGS)$$unique" \
540
535
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
541
536
             $$unique
544
539
        here=`$(am__cd) $(top_builddir) && pwd` \
545
540
          && $(am__cd) $(top_srcdir) \
546
541
          && gtags -i $(GTAGS_ARGS) "$$here"
547
 
 
548
542
cscope: cscope.files
549
543
        test ! -s cscope.files \
550
544
          || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
551
 
 
552
545
clean-cscope:
553
546
        -rm -f cscope.files
554
 
 
555
 
cscope.files: clean-cscope cscopelist-recursive cscopelist
556
 
 
557
 
cscopelist: cscopelist-recursive $(HEADERS) $(SOURCES) $(LISP)
558
 
        list='$(SOURCES) $(HEADERS) $(LISP)'; \
 
547
cscope.files: clean-cscope cscopelist
 
548
cscopelist: cscopelist-recursive
 
549
 
 
550
cscopelist-am: $(am__tagged_files)
 
551
        list='$(am__tagged_files)'; \
559
552
        case "$(srcdir)" in \
560
553
          [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
561
554
          *) sdir=$(subdir)/$(srcdir) ;; \
860
853
 
861
854
uninstall-am:
862
855
 
863
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
864
 
        cscopelist-recursive ctags-recursive install-am install-strip \
865
 
        tags-recursive
 
856
.MAKE: $(am__recursive_targets) all install-am install-strip
866
857
 
867
 
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
868
 
        all all-am am--refresh check check-am clean clean-cscope \
869
 
        clean-generic clean-libtool cscope cscopelist \
870
 
        cscopelist-recursive ctags ctags-recursive dist dist-all \
871
 
        dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ dist-xz \
872
 
        dist-zip distcheck distclean distclean-generic distclean-hdr \
873
 
        distclean-libtool distclean-tags distcleancheck distdir \
874
 
        distuninstallcheck dvi dvi-am html html-am info info-am \
875
 
        install install-am install-data install-data-am install-dvi \
876
 
        install-dvi-am install-exec install-exec-am install-html \
877
 
        install-html-am install-info install-info-am install-man \
878
 
        install-pdf install-pdf-am install-ps install-ps-am \
879
 
        install-strip installcheck installcheck-am installdirs \
880
 
        installdirs-am maintainer-clean maintainer-clean-generic \
881
 
        mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
882
 
        ps ps-am tags tags-recursive uninstall uninstall-am
 
858
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
 
859
        am--refresh check check-am clean clean-cscope clean-generic \
 
860
        clean-libtool cscope cscopelist-am ctags ctags-am dist \
 
861
        dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
 
862
        dist-xz dist-zip distcheck distclean distclean-generic \
 
863
        distclean-hdr distclean-libtool distclean-tags distcleancheck \
 
864
        distdir distuninstallcheck dvi dvi-am html html-am info \
 
865
        info-am install install-am install-data install-data-am \
 
866
        install-dvi install-dvi-am install-exec install-exec-am \
 
867
        install-html install-html-am install-info install-info-am \
 
868
        install-man install-pdf install-pdf-am install-ps \
 
869
        install-ps-am install-strip installcheck installcheck-am \
 
870
        installdirs installdirs-am maintainer-clean \
 
871
        maintainer-clean-generic mostlyclean mostlyclean-generic \
 
872
        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
 
873
        uninstall-am
883
874
 
884
875
 
885
876
# Build ChangeLog from GIT history