chiark / gitweb /
henrich: update japanese translation
[developers-reference.git] / Makefile
1 # Makefile, used for the developers-reference in DocBook XML
2
3 # Note: This Makefile should work perfectly without the debian/ directory.
4
5 SOURCES         := $(wildcard *.dbk) common.ent version.ent
6
7 FORMATS         := html txt pdf
8 LANGS           := fr ja
9 TARGETS         := $(foreach fmt,$(FORMATS),developers-reference.$(fmt)) \
10                    $(foreach lng,$(LANGS), \
11                        $(foreach fmt,$(FORMATS), \
12                            $(lng)/developers-reference.$(fmt)))
13 # list of targets, that currently cannot build
14 BLACKLIST       := ja/developers-reference.pdf
15
16 # hopefully overwritten by caller, e.g. debian/rules
17 VERSION=unknown
18 PUBDATE=unknown
19
20 # programs for creating output
21 XP=xsltproc --nonet --novalid --xinclude
22 XL=xmllint --nonet --noout --postvalid --xinclude
23 # dblatex 0.2.8 has some problems (e.g. #465221 and Japanese does
24 # not build)
25 # Alternatives:
26 # - docbook2pdf (seems to die on UTF-8, #431085); and
27 # - fop is currently in contrib, but can go to main, see #366783
28 # - xmlroff (not mature enough, #182445)
29 DBLATEX=dblatex --style=db2latex
30 # The "--keep 0" should be removed as soon as the translations are ready
31 TRANSLATE=po4a-translate --format docbook --keep 0
32
33 # XSL files and parameters
34 # note: the URL is used as identifier, no HTTP is used!
35 DOCBOOK_XSL=http://docbook.sourceforge.net/release/xsl/current
36 # for HTML output
37 DBK2HTML=$(CURDIR)/html.xsl
38 # all in one file for text output
39 DBK2HTML1=$(CURDIR)/txt.xsl
40
41 .PHONY: all
42 all:    $(filter-out $(BLACKLIST), $(TARGETS))
43
44 .PHONY: validate
45 validate:                       $(SOURCES)
46         $(XL) index.dbk
47
48 %/validate:                     $(addprefix %/,$(SOURCES))
49         cd $(@D) && $(XL) index.dbk
50
51 # This rule controls the build and installation on the website
52 # Logs are here: http://www-master.debian.org/build-logs/ddp/
53 .PHONY: publish
54 publish:        all
55         [ -d $(PUBLISHDIR) ] || exit 1
56         install -d -m 755 $(PUBLISHDIR)/developers-reference
57         rm -f $(PUBLISHDIR)/developers-reference/*.html
58         rm -f en && ln -sf . en
59         $(foreach format,$(FORMATS),$(foreach lang,en $(LANGS),for file in $(lang)/*.$(format); do if [ -e "$$file" ]; then cp $$file $(PUBLISHDIR)/developers-reference/$$(basename $$file .$(format)).$(lang).$(format); fi; done;))
60         ln -sf index.en.html $(PUBLISHDIR)/developers-reference/index.html
61         ln -sf developers-reference.en.pdf $(PUBLISHDIR)/developers-reference/developers-reference.pdf
62         ln -sf developers-reference.en.txt $(PUBLISHDIR)/developers-reference/developers-reference.txt
63
64 .PHONY: developers-reference.html %/developers-reference.html
65 developers-reference.html:      $(CURDIR)/index.html
66 %/developers-reference.html:    $(addprefix %/,index.html)
67         @true
68
69 .PRECIOUS:                      %/index.html
70 index.html:                     $(CURDIR)/developers-reference.html
71 %/index.html:                   $(addprefix %/,$(SOURCES))
72         cd $(@D) && $(XP) $(DBK2HTML) index.dbk
73
74 # There must be an easier way than recursive make!
75 .PRECIOUS:              %.dbk %.ent
76 ifndef LINGUA
77 %.dbk %.ent: FORCE
78         $(MAKE) $@ LINGUA=`basename $(@D)`
79
80 FORCE:
81 else
82 $(LINGUA)/%.dbk:        %.dbk $(patsubst %.dbk,po4a/$(LINGUA)/%.po,%.dbk)
83         $(TRANSLATE) -m $< -p po4a/$(@:.dbk=.po) -l $@
84
85 $(LINGUA)/common.ent:   common.ent
86         cd $(@D) && ln -sf ../$(@F) .
87 endif
88
89 developers-reference.txt:       $(CURDIR)/developers-reference.txt
90 %/developers-reference.txt:     $(addprefix %/,$(SOURCES))
91         $(XP) $(DBK2HTML1) $(@D)/index.dbk \
92             | w3m -cols 70 -dump -no-graph -T text/html > $@
93
94 developers-reference.pdf:       $(CURDIR)/developers-reference.pdf
95 %/developers-reference.pdf:     $(addprefix %/,$(SOURCES))
96         TOP=`pwd` && cd $(@D) && $(DBLATEX) index.dbk \
97             && mv index.dbk.pdf $(@F)
98
99 .PHONY: pot
100 pot:                            $(patsubst %.dbk,po4a/po/%.pot,$(SOURCES))
101 po4a/po/%.pot:                  %.dbk
102         po4a-gettextize --format docbook --master $< --po $@
103
104 ifdef LINGUA
105 .PHONY: updatepo
106 updatepo:                       $(patsubst %.dbk,po4a/$(LINGUA)/%.po,$(SOURCES))
107 po4a/$(LINGUA)/%.po:            %.dbk
108         po4a-updatepo --format docbook --master $< --po $@
109 endif
110
111 tidypo:
112         for po in $(wildcard po4a/*/*.po po4a/*/*.pot); do \
113             msgcat $$po > $$po.tmp && mv $$po.tmp $$po; \
114         done
115
116 checkpo:
117         @for po in $(wildcard po4a/*/*.po po4a/*/*.pot); do \
118             echo $$po; \
119             msgfmt --check --verbose $$po; \
120         done
121
122 %/version.ent:
123         echo '<!ENTITY version "$(VERSION)">' >  $@
124         echo '<!ENTITY pubdate "$(PUBDATE)">' >> $@
125
126 .PHONY: clean
127 clean:
128         rm -f *.fo *.html *.pdf *.txt
129         for L in $(LANGS); do rm -rf `basename ./"$$L"/`; done
130         rm -f version.ent
131         rm -f `find . -name "*~" -o -name "*.bak"`
132         rm -f *~ *.bak .#* core
133
134 .PHONY: distclean
135 distclean: clean
136         rm -f *.rej *.orig
137
138 # if rule bomb out, delete the target
139 .DELETE_ON_ERROR: