calcurse-edge/doc/Makefile.am
Lukas Fleischer 08f5064ef7 Add introduction to the new online help system
This adds a very basic explanation of the new help command that can be
displayed using ":help intro". This introduction is also added as
default page so that users can simply type ":help" instead.

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
2013-07-17 14:03:53 +02:00

68 lines
894 B
Makefile

AUTOMAKE_OPTIONS = foreign
if HAVE_ASCIIDOC
ASCIIDOC_ARGS = \
-n \
-a toc \
-a icons
endif
if HAVE_A2X
A2X_ARGS = \
-d manpage \
-f manpage
endif
dist_doc_DATA = \
manual.html \
submitting-patches.html \
add.txt \
config.txt \
copy_paste.txt \
credits.txt \
delete.txt \
displacement.txt \
edit.txt \
enote.txt \
export.txt \
flag.txt \
general.txt \
goto.txt \
import.txt \
intro.txt \
main.txt \
manual.txt \
other.txt \
pipe.txt \
priority.txt \
repeat.txt \
save.txt \
tab.txt \
view.txt \
vnote.txt
dist_man_MANS = \
calcurse.1
EXTRA_DIST = \
manual.txt \
submitting-patches.txt \
calcurse.1.txt
CLEANFILES = \
manual.html \
submitting-patches.html \
calcurse.1
docdir = $(datadir)/doc/$(PACKAGE)
.txt.html:
if HAVE_ASCIIDOC
$(AM_V_GEN) $(ASCIIDOC) $(ASCIIDOC_ARGS) $<
endif
%.1: %.1.txt
if HAVE_A2X
$(AM_V_GEN) $(A2X) $(A2X_ARGS) $<
endif