~ubuntu-branches/ubuntu/vivid/yelp-xsl/vivid-proposed

« back to all changes in this revision

Viewing changes to xslt/docbook/html/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2010-11-29 10:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20101129100013-1fxze8fm1fegxl8w
Tags: upstream-2.31.6
ImportĀ upstreamĀ versionĀ 2.31.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
xsldir=$(datadir)/yelp-xsl/xslt/docbook/html
 
2
 
 
3
xsl_DATA =                              \
 
4
        db2html-autotoc.xsl             \
 
5
        db2html-bibliography.xsl        \
 
6
        db2html-block.xsl               \
 
7
        db2html-callout.xsl             \
 
8
        db2html-classsynopsis.xsl       \
 
9
        db2html-cmdsynopsis.xsl         \
 
10
        db2html-css.xsl                 \
 
11
        db2html-division.xsl            \
 
12
        db2html-ebnf.xsl                \
 
13
        db2html-footnote.xsl            \
 
14
        db2html-funcsynopsis.xsl        \
 
15
        db2html-index.xsl               \
 
16
        db2html-info.xsl                \
 
17
        db2html-inline.xsl              \
 
18
        db2html-l10n.xsl                \
 
19
        db2html-media.xsl               \
 
20
        db2html-list.xsl                \
 
21
        db2html-qanda.xsl               \
 
22
        db2html-refentry.xsl            \
 
23
        db2html-suppressed.xsl          \
 
24
        db2html-table.xsl               \
 
25
        db2html-title.xsl               \
 
26
        db2html-xref.xsl                \
 
27
        db2html.xsl                     \
 
28
        db2xhtml.xsl
 
29
 
 
30
EXTRA_DIST=$(xsl_DATA)
 
31
 
 
32
report.xml: $(wildcard db*.xsl) elements report.sh report.xslt
 
33
        ./report.sh | xsltproc -o report.xml report.xslt -
 
34
report.html: report.xml report.xslt
 
35
        xsltproc -o report.html report.xslt report.xml
 
36