subsurface/Documentation/Makefile
Reinout Hoornweg 51cac900aa Updates to the user-manual: DivePlanning
- Added some more text to Miika's great start describing the planner.
- Tried doing something more with the formatting options asciidoc give us.

[Dirk Hohndel: merged with my earlier changes to the same section]

Signed-off-by: Reinout Hoornweg <reinout@xs4all.nl>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2013-02-18 13:28:25 -08:00

24 lines
474 B
Makefile

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