~ubuntu-branches/ubuntu/precise/rhythmbox/precise-201203091205

« back to all changes in this revision

Viewing changes to help/ja/Makefile.am

Tags: upstream-0.9.5
ImportĀ upstreamĀ versionĀ 0.9.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## arch-tag: Automake rules for Japanese help files
2
 
 
3
 
figdir = figures
4
 
docname = rhythmbox
5
 
lang = ja
6
 
omffile = rhythmbox-ja.omf
7
 
entities = fdl-appendix.xml legal.xml authors.xml quick-reference.xml user-guide.xml
8
 
 
9
 
authors.xml: $(top_srcdir)/AUTHORS $(top_srcdir)/MAINTAINERS $(top_srcdir)/DOCUMENTERS
10
 
        (echo '<?xml version="1.0" encoding="UTF-8"?>'; \
11
 
         echo '<sect2 id="authors">'; \
12
 
         echo '<title>Authors</title>'; \
13
 
         echo '<sect3>'; \
14
 
         echo '<title>Lead Developers:</title>'; \
15
 
         echo '<para><simplelist>') > $@.tmp
16
 
        sed -e 's/>/<\/email><\/member>/' -e 's/ </ <email>/' -e 's/^/<member>/'  < $(top_srcdir)/MAINTAINERS >> $@.tmp
17
 
        (echo '</simplelist></para></sect3><sect3>'; \
18
 
         echo '<title>Contributors</title>'; \
19
 
         echo '<para><simplelist>') >> $@.tmp
20
 
        sed -e 's/>/<\/email><\/member>/' -e 's/ </ <email>/' -e 's/^/<member>/'  < $(top_srcdir)/AUTHORS >> $@.tmp
21
 
        (echo '</simplelist></para></sect3>'; \
22
 
         echo '<sect3><title>Documentation</title>'; \
23
 
         echo '<para><simplelist>') >> $@.tmp
24
 
        sed -e 's/>/<\/email><\/member>/' -e 's/ </ <email>/' -e 's/^/<member>/'  < $(top_srcdir)/DOCUMENTERS >> $@.tmp
25
 
        (echo '</simplelist></para></sect3>'; \
26
 
         echo '</sect2>') >> $@.tmp
27
 
        mv $@.tmp $@
28
 
 
29
 
all-am: authors.xml
30
 
 
31
 
include $(top_srcdir)/xmldocs.make
32
 
 
33
 
CLEANFILES += authors.xml
34
 
 
35
 
dist-hook: app-dist-hook
36
 
 
37