blob: 2cf6099827048255d533f6e5e60b4bee52f7a400 (
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
|
ASCIIDOC=asciidoc
A2X=a2x
BROWSER=firefox
doc: user-manual.html
show: user-manual.html
$(BROWSER) user-manual.html
user-manual.html: user-manual.txt
$(ASCIIDOC) user-manual.txt
# Alternatively::
user-manual.xhtml: user-manual.txt
$(A2X) --icons -f xhtml user-manual.txt
user-manual.text: user-manual.txt
$(A2X) -f text user-manual.txt
user-manual.pdf: user-manual.txt
$(A2X) -f pdf user-manual.txt
clean:
rm -f user-manual.html user-manual.pdf user-manual.text
|