~ubuntu-branches/ubuntu/vivid/nbdkit/vivid

« back to all changes in this revision

Viewing changes to plugins/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Hilko Bengen
  • Date: 2013-10-06 15:25:05 UTC
  • mto: (10.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: package-import@ubuntu.com-20131006152505-iul8k8f2rvyahg1c
Tags: upstream-1.1.3
ImportĀ upstreamĀ versionĀ 1.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.12.2 from Makefile.am.
 
1
# Makefile.in generated by automake 1.13.4 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
 
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
 
4
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
5
5
 
6
6
# This Makefile.in is free software; the Free Software Foundation
7
7
# gives unlimited permission to copy and/or distribute it,
46
46
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
47
47
# SUCH DAMAGE.
48
48
VPATH = @srcdir@
49
 
am__make_dryrun = \
50
 
  { \
51
 
    am__dry=no; \
 
49
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
 
50
am__make_running_with_option = \
 
51
  case $${target_option-} in \
 
52
      ?) ;; \
 
53
      *) echo "am__make_running_with_option: internal error: invalid" \
 
54
              "target option '$${target_option-}' specified" >&2; \
 
55
         exit 1;; \
 
56
  esac; \
 
57
  has_opt=no; \
 
58
  sane_makeflags=$$MAKEFLAGS; \
 
59
  if $(am__is_gnu_make); then \
 
60
    sane_makeflags=$$MFLAGS; \
 
61
  else \
52
62
    case $$MAKEFLAGS in \
53
63
      *\\[\ \   ]*) \
54
 
        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
55
 
          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
56
 
      *) \
57
 
        for am__flg in $$MAKEFLAGS; do \
58
 
          case $$am__flg in \
59
 
            *=*|--*) ;; \
60
 
            *n*) am__dry=yes; break;; \
61
 
          esac; \
62
 
        done;; \
63
 
    esac; \
64
 
    test $$am__dry = yes; \
65
 
  }
 
64
        bs=\\; \
 
65
        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
 
66
          | sed "s/$$bs$$bs[$$bs $$bs   ]*//g"`;; \
 
67
    esac; \
 
68
  fi; \
 
69
  skip_next=no; \
 
70
  strip_trailopt () \
 
71
  { \
 
72
    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
 
73
  }; \
 
74
  for flg in $$sane_makeflags; do \
 
75
    test $$skip_next = yes && { skip_next=no; continue; }; \
 
76
    case $$flg in \
 
77
      *=*|--*) continue;; \
 
78
        -*I) strip_trailopt 'I'; skip_next=yes;; \
 
79
      -*I?*) strip_trailopt 'I';; \
 
80
        -*O) strip_trailopt 'O'; skip_next=yes;; \
 
81
      -*O?*) strip_trailopt 'O';; \
 
82
        -*l) strip_trailopt 'l'; skip_next=yes;; \
 
83
      -*l?*) strip_trailopt 'l';; \
 
84
      -[dEDm]) skip_next=yes;; \
 
85
      -[JT]) skip_next=yes;; \
 
86
    esac; \
 
87
    case $$flg in \
 
88
      *$$target_option*) has_opt=yes; break;; \
 
89
    esac; \
 
90
  done; \
 
91
  test $$has_opt = yes
 
92
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
 
93
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
66
94
pkgdatadir = $(datadir)/@PACKAGE@
67
95
pkgincludedir = $(includedir)/@PACKAGE@
68
96
pkglibdir = $(libdir)/@PACKAGE@
82
110
build_triplet = @build@
83
111
host_triplet = @host@
84
112
subdir = plugins
85
 
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
113
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
86
114
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
87
115
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
88
116
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
94
122
CONFIG_HEADER = $(top_builddir)/config.h
95
123
CONFIG_CLEAN_FILES =
96
124
CONFIG_CLEAN_VPATH_FILES =
 
125
AM_V_P = $(am__v_P_@AM_V@)
 
126
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
 
127
am__v_P_0 = false
 
128
am__v_P_1 = :
 
129
AM_V_GEN = $(am__v_GEN_@AM_V@)
 
130
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
 
131
am__v_GEN_0 = @echo "  GEN     " $@;
 
132
am__v_GEN_1 = 
 
133
AM_V_at = $(am__v_at_@AM_V@)
 
134
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
 
135
am__v_at_0 = @
 
136
am__v_at_1 = 
97
137
SOURCES =
98
138
DIST_SOURCES =
99
 
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
100
 
        html-recursive info-recursive install-data-recursive \
101
 
        install-dvi-recursive install-exec-recursive \
102
 
        install-html-recursive install-info-recursive \
103
 
        install-pdf-recursive install-ps-recursive install-recursive \
104
 
        installcheck-recursive installdirs-recursive pdf-recursive \
105
 
        ps-recursive uninstall-recursive
 
139
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
 
140
        ctags-recursive dvi-recursive html-recursive info-recursive \
 
141
        install-data-recursive install-dvi-recursive \
 
142
        install-exec-recursive install-html-recursive \
 
143
        install-info-recursive install-pdf-recursive \
 
144
        install-ps-recursive install-recursive installcheck-recursive \
 
145
        installdirs-recursive pdf-recursive ps-recursive \
 
146
        tags-recursive uninstall-recursive
106
147
am__can_run_installinfo = \
107
148
  case $$AM_UPDATE_INFO_DIR in \
108
149
    n|no|NO) false;; \
110
151
  esac
111
152
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
112
153
  distclean-recursive maintainer-clean-recursive
113
 
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
114
 
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
154
am__recursive_targets = \
 
155
  $(RECURSIVE_TARGETS) \
 
156
  $(RECURSIVE_CLEAN_TARGETS) \
 
157
  $(am__extra_recursive_targets)
 
158
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
115
159
        distdir
 
160
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 
161
# Read a list of newline-separated strings from the standard input,
 
162
# and print each of them once, without duplicates.  Input order is
 
163
# *not* preserved.
 
164
am__uniquify_input = $(AWK) '\
 
165
  BEGIN { nonempty = 0; } \
 
166
  { items[$$0] = 1; nonempty = 1; } \
 
167
  END { if (nonempty) { for (i in items) print i; }; } \
 
168
'
 
169
# Make sure the list of sources is unique.  This is necessary because,
 
170
# e.g., the same source file might be shared among _SOURCES variables
 
171
# for different programs/libraries.
 
172
am__define_uniq_tagged_files = \
 
173
  list='$(am__tagged_files)'; \
 
174
  unique=`for i in $$list; do \
 
175
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
176
  done | $(am__uniquify_input)`
116
177
ETAGS = etags
117
178
CTAGS = ctags
118
179
DIST_SUBDIRS = $(SUBDIRS)
144
205
  reldir="$$dir2"
145
206
ACLOCAL = @ACLOCAL@
146
207
AMTAR = @AMTAR@
 
208
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
147
209
AR = @AR@
148
210
AUTOCONF = @AUTOCONF@
149
211
AUTOHEADER = @AUTOHEADER@
328
390
# (1) if the variable is set in 'config.status', edit 'config.status'
329
391
#     (which will cause the Makefiles to be regenerated when you run 'make');
330
392
# (2) otherwise, pass the desired values on the 'make' command line.
331
 
$(RECURSIVE_TARGETS) $(RECURSIVE_CLEAN_TARGETS):
332
 
        @fail= failcom='exit 1'; \
333
 
        for f in x $$MAKEFLAGS; do \
334
 
          case $$f in \
335
 
            *=* | --[!k]*);; \
336
 
            *k*) failcom='fail=yes';; \
337
 
          esac; \
338
 
        done; \
 
393
$(am__recursive_targets):
 
394
        @fail=; \
 
395
        if $(am__make_keepgoing); then \
 
396
          failcom='fail=yes'; \
 
397
        else \
 
398
          failcom='exit 1'; \
 
399
        fi; \
339
400
        dot_seen=no; \
340
401
        target=`echo $@ | sed s/-recursive//`; \
341
402
        case "$@" in \
356
417
        if test "$$dot_seen" = "no"; then \
357
418
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
358
419
        fi; test -z "$$fail"
359
 
tags-recursive:
360
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
361
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
362
 
        done
363
 
ctags-recursive:
364
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
365
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
366
 
        done
367
 
cscopelist-recursive:
368
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
369
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) cscopelist); \
370
 
        done
371
 
 
372
 
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
373
 
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
374
 
        unique=`for i in $$list; do \
375
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
376
 
          done | \
377
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
378
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
379
 
        mkid -fID $$unique
380
 
tags: TAGS
381
 
 
382
 
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
383
 
                $(TAGS_FILES) $(LISP)
 
420
 
 
421
ID: $(am__tagged_files)
 
422
        $(am__define_uniq_tagged_files); mkid -fID $$unique
 
423
tags: tags-recursive
 
424
TAGS: tags
 
425
 
 
426
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
384
427
        set x; \
385
428
        here=`pwd`; \
386
429
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
396
439
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
397
440
          fi; \
398
441
        done; \
399
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
400
 
        unique=`for i in $$list; do \
401
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
402
 
          done | \
403
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
404
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
442
        $(am__define_uniq_tagged_files); \
405
443
        shift; \
406
444
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
407
445
          test -n "$$unique" || unique=$$empty_fix; \
413
451
              $$unique; \
414
452
          fi; \
415
453
        fi
416
 
ctags: CTAGS
417
 
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
418
 
                $(TAGS_FILES) $(LISP)
419
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
420
 
        unique=`for i in $$list; do \
421
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
422
 
          done | \
423
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
424
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
454
ctags: ctags-recursive
 
455
 
 
456
CTAGS: ctags
 
457
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 
458
        $(am__define_uniq_tagged_files); \
425
459
        test -z "$(CTAGS_ARGS)$$unique" \
426
460
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
427
461
             $$unique
430
464
        here=`$(am__cd) $(top_builddir) && pwd` \
431
465
          && $(am__cd) $(top_srcdir) \
432
466
          && gtags -i $(GTAGS_ARGS) "$$here"
 
467
cscopelist: cscopelist-recursive
433
468
 
434
 
cscopelist: cscopelist-recursive $(HEADERS) $(SOURCES) $(LISP)
435
 
        list='$(SOURCES) $(HEADERS) $(LISP)'; \
 
469
cscopelist-am: $(am__tagged_files)
 
470
        list='$(am__tagged_files)'; \
436
471
        case "$(srcdir)" in \
437
472
          [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
438
473
          *) sdir=$(subdir)/$(srcdir) ;; \
604
639
 
605
640
uninstall-am:
606
641
 
607
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) \
608
 
        cscopelist-recursive ctags-recursive install-am install-strip \
609
 
        tags-recursive
 
642
.MAKE: $(am__recursive_targets) install-am install-strip
610
643
 
611
 
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
612
 
        all all-am check check-am clean clean-generic clean-libtool \
613
 
        cscopelist cscopelist-recursive ctags ctags-recursive \
614
 
        distclean distclean-generic distclean-libtool distclean-tags \
615
 
        distdir dvi dvi-am html html-am info info-am install \
616
 
        install-am install-data install-data-am install-dvi \
 
644
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
 
645
        check-am clean clean-generic clean-libtool cscopelist-am ctags \
 
646
        ctags-am distclean distclean-generic distclean-libtool \
 
647
        distclean-tags distdir dvi dvi-am html html-am info info-am \
 
648
        install install-am install-data install-data-am install-dvi \
617
649
        install-dvi-am install-exec install-exec-am install-html \
618
650
        install-html-am install-info install-info-am install-man \
619
651
        install-pdf install-pdf-am install-ps install-ps-am \
620
652
        install-strip installcheck installcheck-am installdirs \
621
653
        installdirs-am maintainer-clean maintainer-clean-generic \
622
654
        mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
623
 
        ps ps-am tags tags-recursive uninstall uninstall-am
 
655
        ps ps-am tags tags-am uninstall uninstall-am
624
656
 
625
657
 
626
658
# Tell versions [3.59,3.63) of GNU make to not export all variables.