~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to src/Makefile.in

  • Committer: Matthew Fischer
  • Date: 2013-05-26 19:48:27 UTC
  • mfrom: (1.1.56)
  • Revision ID: matthew.fischer@canonical.com-20130526194827-9bx3owseaxxa3o2i
* New upstream release (LP: #1184409)
  - Documentation fixes
  - Translation updates
  - Add a question mark to a question
  - Support notification filtering
  - Remove nonexisting options from the man page
  - Fix while loop in `brasero_libisofs_write_image_to_fd_thread
* Refreshed patches
* 99_fix-mp3-projects.patch: Removed, already applied upstream

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.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
60
60
@BUILD_TRACKER_TRUE@               brasero-search-tracker.c
61
61
 
62
62
subdir = src
63
 
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
64
 
        $(top_srcdir)/depcomp $(top_srcdir)/mkinstalldirs
 
63
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
 
64
        $(top_srcdir)/depcomp
65
65
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
66
 
am__aclocal_m4_deps = $(top_srcdir)/configure.in
 
66
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
67
67
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
68
68
        $(ACLOCAL_M4)
69
 
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 
69
mkinstalldirs = $(install_sh) -d
70
70
CONFIG_HEADER = $(top_builddir)/config.h
71
71
CONFIG_CLEAN_FILES =
72
72
CONFIG_CLEAN_VPATH_FILES =
196
196
    n|no|NO) false;; \
197
197
    *) (install-info --version) >/dev/null 2>&1;; \
198
198
  esac
 
199
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 
200
# Read a list of newline-separated strings from the standard input,
 
201
# and print each of them once, without duplicates.  Input order is
 
202
# *not* preserved.
 
203
am__uniquify_input = $(AWK) '\
 
204
  BEGIN { nonempty = 0; } \
 
205
  { items[$$0] = 1; nonempty = 1; } \
 
206
  END { if (nonempty) { for (i in items) print i; }; } \
 
207
'
 
208
# Make sure the list of sources is unique.  This is necessary because,
 
209
# e.g., the same source file might be shared among _SOURCES variables
 
210
# for different programs/libraries.
 
211
am__define_uniq_tagged_files = \
 
212
  list='$(am__tagged_files)'; \
 
213
  unique=`for i in $$list; do \
 
214
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
215
  done | $(am__uniquify_input)`
199
216
ETAGS = etags
200
217
CTAGS = ctags
201
218
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
425
442
        -DBRASERO_SYSCONFDIR=\"$(sysconfdir)\"                          \
426
443
        -DBRASERO_DATADIR=\"$(datadir)/brasero\"                        \
427
444
        -DBRASERO_LIBDIR=\"$(libdir)\"                                  \
 
445
        -DEGG_SM_CLIENT_BACKEND_XSMP                                    \
428
446
        $(WARN_CFLAGS)                                                  \
429
447
        $(DISABLE_DEPRECATED)                                           \
430
448
        $(BRASERO_GLIB_CFLAGS)                                          \
543
561
        fi; \
544
562
        for p in $$list; do echo "$$p $$p"; done | \
545
563
        sed 's/$(EXEEXT)$$//' | \
546
 
        while read p p1; do if test -f $$p || test -f $$p1; \
547
 
          then echo "$$p"; echo "$$p"; else :; fi; \
 
564
        while read p p1; do if test -f $$p \
 
565
         || test -f $$p1 \
 
566
          ; then echo "$$p"; echo "$$p"; else :; fi; \
548
567
        done | \
549
 
        sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
 
568
        sed -e 'p;s,.*/,,;n;h' \
 
569
            -e 's|.*|.|' \
550
570
            -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
551
571
        sed 'N;N;N;s,\n, ,g' | \
552
572
        $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
567
587
        @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
568
588
        files=`for p in $$list; do echo "$$p"; done | \
569
589
          sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
570
 
              -e 's/$$/$(EXEEXT)/' `; \
 
590
              -e 's/$$/$(EXEEXT)/' \
 
591
        `; \
571
592
        test -n "$$list" || exit 0; \
572
593
        echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
573
594
        cd "$(DESTDIR)$(bindir)" && rm -f $$files
664
685
clean-libtool:
665
686
        -rm -rf .libs _libs
666
687
 
667
 
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
668
 
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
669
 
        unique=`for i in $$list; do \
670
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
671
 
          done | \
672
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
673
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
674
 
        mkid -fID $$unique
675
 
tags: TAGS
 
688
ID: $(am__tagged_files)
 
689
        $(am__define_uniq_tagged_files); mkid -fID $$unique
 
690
tags: tags-am
 
691
TAGS: tags
676
692
 
677
 
TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
678
 
                $(TAGS_FILES) $(LISP)
 
693
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
679
694
        set x; \
680
695
        here=`pwd`; \
681
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
682
 
        unique=`for i in $$list; do \
683
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
684
 
          done | \
685
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
686
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
696
        $(am__define_uniq_tagged_files); \
687
697
        shift; \
688
698
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
689
699
          test -n "$$unique" || unique=$$empty_fix; \
695
705
              $$unique; \
696
706
          fi; \
697
707
        fi
698
 
ctags: CTAGS
699
 
CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
700
 
                $(TAGS_FILES) $(LISP)
701
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
702
 
        unique=`for i in $$list; do \
703
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
704
 
          done | \
705
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
706
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
708
ctags: ctags-am
 
709
 
 
710
CTAGS: ctags
 
711
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 
712
        $(am__define_uniq_tagged_files); \
707
713
        test -z "$(CTAGS_ARGS)$$unique" \
708
714
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
709
715
             $$unique
712
718
        here=`$(am__cd) $(top_builddir) && pwd` \
713
719
          && $(am__cd) $(top_srcdir) \
714
720
          && gtags -i $(GTAGS_ARGS) "$$here"
 
721
cscopelist: cscopelist-am
715
722
 
716
 
cscopelist:  $(HEADERS) $(SOURCES) $(LISP)
717
 
        list='$(SOURCES) $(HEADERS) $(LISP)'; \
 
723
cscopelist-am: $(am__tagged_files)
 
724
        list='$(am__tagged_files)'; \
718
725
        case "$(srcdir)" in \
719
726
          [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
720
727
          *) sdir=$(subdir)/$(srcdir) ;; \
870
877
 
871
878
.MAKE: install-am install-strip
872
879
 
873
 
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
874
 
        clean-generic clean-libtool cscopelist ctags distclean \
875
 
        distclean-compile distclean-generic distclean-libtool \
876
 
        distclean-tags distdir dvi dvi-am html html-am info info-am \
877
 
        install install-am install-binPROGRAMS install-data \
878
 
        install-data-am install-dvi install-dvi-am install-exec \
879
 
        install-exec-am install-html install-html-am install-info \
880
 
        install-info-am install-man install-pdf install-pdf-am \
881
 
        install-ps install-ps-am install-strip installcheck \
882
 
        installcheck-am installdirs maintainer-clean \
 
880
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
 
881
        clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
 
882
        ctags ctags-am distclean distclean-compile distclean-generic \
 
883
        distclean-libtool distclean-tags distdir dvi dvi-am html \
 
884
        html-am info info-am install install-am install-binPROGRAMS \
 
885
        install-data install-data-am install-dvi install-dvi-am \
 
886
        install-exec install-exec-am install-html install-html-am \
 
887
        install-info install-info-am install-man install-pdf \
 
888
        install-pdf-am install-ps install-ps-am install-strip \
 
889
        installcheck installcheck-am installdirs maintainer-clean \
883
890
        maintainer-clean-generic mostlyclean mostlyclean-compile \
884
891
        mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
885
 
        tags uninstall uninstall-am uninstall-binPROGRAMS
 
892
        tags tags-am uninstall uninstall-am uninstall-binPROGRAMS
886
893
 
887
894
 
888
895
brasero-marshal.h: brasero-marshal.list