mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 23:03:23 +00:00
51cac900aa
- 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>
24 lines
474 B
Makefile
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
|