~ubuntu-branches/ubuntu/saucy/brasero/saucy-proposed

« back to all changes in this revision

Viewing changes to help/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-04-17 14:41:53 UTC
  • mfrom: (1.1.54)
  • Revision ID: package-import@ubuntu.com-20120417144153-tuyvgt9jp2fr738k
Tags: 3.4.1-0ubuntu1
* New upstream release:
  - Translation updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
INTLTOOL_MERGE = @INTLTOOL_MERGE@
170
170
INTLTOOL_PERL = @INTLTOOL_PERL@
171
171
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
 
172
INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
 
173
INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
 
174
INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
 
175
INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
172
176
INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
173
177
INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
174
178
INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
265
269
includedir = @includedir@
266
270
infodir = @infodir@
267
271
install_sh = @install_sh@
 
272
intltool__v_merge_options_ = @intltool__v_merge_options_@
 
273
intltool__v_merge_options_0 = @intltool__v_merge_options_0@
268
274
libdir = @libdir@
269
275
libexecdir = @libexecdir@
270
276
localedir = @localedir@
295
301
@ENABLE_SK_TRUE@_ENABLE_SK = true
296
302
 
297
303
################################################################################
 
304
GDU_V_XML2PO = $(GDU__v_XML2PO_$(V))
 
305
GDU__v_XML2PO_ = $(GDU__v_XML2PO_$(AM_DEFAULT_VERBOSITY))
 
306
GDU__v_XML2PO_0 = @echo "  XML2PO" $@;
 
307
GDU_V_MSGFMT = $(GDU__v_MSGFMT_$(V))
 
308
GDU__v_MSGFMT_ = $(GDU__v_MSGFMT_$(AM_DEFAULT_VERBOSITY))
 
309
GDU__v_MSGFMT_0 = @echo "  MSGFMT" $@;
 
310
GDU_V_DB2OMF = $(GDU__v_DB2OMF_$(V))
 
311
GDU__v_DB2OMF_ = $(GDU__v_DB2OMF_$(AM_DEFAULT_VERBOSITY))
 
312
GDU__v_DB2OMF_0 = @echo "  DB2OMF" $@;
 
313
GDU_V_DB2HTM = $(GDU__v_DB2HTM_$(V))
 
314
GDU__v_DB2HTM_ = $(GDU__v_DB2HTM_$(AM_DEFAULT_VERBOSITY))
 
315
GDU__v_DB2HTM_0 = @echo "  DB2HTM" $@;
 
316
 
 
317
################################################################################
298
318
db2omf_args = \
299
319
        --stringparam db2omf.basename $(DOC_MODULE)                             \
300
320
        --stringparam db2omf.format $(3)                                        \
705
725
          echo "The file '$(_skcontentslist)' does not exist." >&2;             \
706
726
          echo "Please check your ScrollKeeper installation." >&2;              \
707
727
          exit 1; }
708
 
        xsltproc -o $@ $(call db2omf_args,$@,$<,'docbook') || { rm -f "$@"; exit 1; }
 
728
        $(GDU_V_DB2OMF)xsltproc -o $@ $(call db2omf_args,$@,$<,'docbook') || { rm -f "$@"; exit 1; }
709
729
 
710
730
$(_DOC_OMF_HTML) : $(_DOC_OMF_IN)
711
731
$(_DOC_OMF_HTML) : $(DOC_MODULE)-html-%.omf : %/$(DOC_MODULE).xml
713
733
@ENABLE_SK_TRUE@          echo "The file '$(_skcontentslist)' does not exist" >&2;              \
714
734
@ENABLE_SK_TRUE@          echo "Please check your ScrollKeeper installation." >&2;              \
715
735
@ENABLE_SK_TRUE@          exit 1; }
716
 
        xsltproc -o $@ $(call db2omf_args,$@,$<,'xhtml') || { rm -f "$@"; exit 1; }
 
736
        $(GDU_V_DB2OMF)xsltproc -o $@ $(call db2omf_args,$@,$<,'xhtml') || { rm -f "$@"; exit 1; }
717
737
 
718
738
.PHONY: omf
719
739
omf: $(_DOC_OMF_ALL)
752
772
        fi
753
773
 
754
774
$(_DOC_MOFILES): %.mo: %.po
755
 
        @if ! test -d $(dir $@); then \
756
 
          echo "mkdir $(dir $@)"; \
757
 
          mkdir "$(dir $@)"; \
758
 
        fi
759
 
        msgfmt -o $@ $<
 
775
        $(AM_V_at)if ! test -d $(dir $@); then mkdir "$(dir $@)"; fi
 
776
        $(GDU_V_MSGFMT)msgfmt -o $@ $<
760
777
 
761
778
# FIXME: fix the dependancy
762
779
# FIXME: hook xml2po up
763
780
$(_DOC_LC_DOCS) : $(_DOC_MOFILES)
764
781
$(_DOC_LC_DOCS) : $(_DOC_C_DOCS)
765
 
        if ! test -d $(dir $@); then mkdir $(dir $@); fi
766
 
        if [ -f "C/$(notdir $@)" ]; then d="../"; else d="$(_DOC_ABS_SRCDIR)/"; fi; \
 
782
        $(AM_V_at)if ! test -d $(dir $@); then mkdir $(dir $@); fi
 
783
        $(GDU_V_XML2PO)if [ -f "C/$(notdir $@)" ]; then d="../"; else d="$(_DOC_ABS_SRCDIR)/"; fi; \
767
784
        mo="$(dir $@)$(patsubst %/$(notdir $@),%,$@).mo"; \
768
785
        if [ -f "$${mo}" ]; then mo="../$${mo}"; else mo="$(_DOC_ABS_SRCDIR)/$${mo}"; fi; \
769
786
        (cd $(dir $@) && \
773
790
.PHONY: pot
774
791
pot: $(_DOC_POT)
775
792
$(_DOC_POT): $(_DOC_C_DOCS_NOENT)
776
 
        $(_xml2po) -m $(_xml2po_mode) -e -o $@ $^
 
793
        $(GDU_V_XML2PO)$(_xml2po) -m $(_xml2po_mode) -e -o $@ $^
777
794
 
778
795
$(_DOC_HTML_TOPS): $(_DOC_C_DOCS) $(_DOC_LC_DOCS)
779
 
        xsltproc -o $@ --xinclude --param db.chunk.chunk_top "false()" --stringparam db.chunk.basename "$(DOC_MODULE)" --stringparam db.chunk.extension ".xhtml" $(_db2html) $(patsubst %.xhtml,%.xml,$@)
 
796
        $(GDU_V_DB2HTM)xsltproc -o $@ --xinclude --param db.chunk.chunk_top "false()" --stringparam db.chunk.basename "$(DOC_MODULE)" --stringparam db.chunk.extension ".xhtml" $(_db2html) $(patsubst %.xhtml,%.xml,$@)
780
797
 
781
798
################################################################################
782
799