blob: ab37c1b9b592f638365c83e3f7c311f3cd5738a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#
# http://docbook.sourceforge.net/release/xsl/current/README
#
RELNOTES=\
release-notes-0.7.1.html \
release-notes-0.8.html \
release-notes-0.9.html \
release-notes-0.9.2.html \
release-notes-1.0.1.html \
release-notes-1.0.2.html \
release-notes-1.0.3.html \
RELNOTES_XSL=$(RELNOTES:.html=.xsl)
HTML=altusmetrum.html altos.html telemetry.html $(RELNOTES)
PDF=altusmetrum.pdf altos.pdf telemetry.pdf
DOC=$(HTML) $(PDF)
HTMLSTYLE=/usr/share/xml/docbook/stylesheet/docbook-xsl/html/docbook.xsl
FOSTYLE=/usr/share/xml/docbook/stylesheet/docbook-xsl/fo/docbook.xsl
PDFSTYLE=
.SUFFIXES: .xsl .html .fo .pdf
XSLTFLAGS=--stringparam section.autolabel 1 --xinclude
.xsl.html:
xsltproc $(XSLTFLAGS) -o $@ $(HTMLSTYLE) $*.xsl
.xsl.fo:
xsltproc $(XSLTFLAGS) -o $@ $(FOSTYLE) $*.xsl
.fo.pdf:
fop -fo $*.fo -pdf $@
all: $(HTML) $(PDF)
install: all
publish: $(DOC)
cp $(DOC) /home/bdale/web/altusmetrum/AltOS/doc/
(cd /home/bdale/web/altusmetrum ; \
git add /home/bdale/web/altusmetrum/AltOS/doc/* ; \
echo "update docs" | \
git commit -F - /home/bdale/web/altusmetrum/AltOS/doc/* ; \
git push)
clean:
rm -f $(HTML) $(PDF) *.fo
distclean:
rm -f $(HTML) $(PDF) *.fo
altusmetrum.html: $(RELNOTES_XSL)
altusmetrum.fo: $(RELNOTES_XSL)
indent: altusmetrum.xsl
xmlindent -i 2 < altusmetrum.xsl > altusmetrum.new
|