calcurse-edge/doc/Makefile.am
Lukas Fleischer 51c6386a05 doc/: Add "submitting-patches.txt"
This short paper contains information on how to create and submit
patches to calcurse. This used to be on our website - "doc/" seems to be
a better place for this, though.

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
2011-10-05 12:20:41 +02:00

44 lines
568 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
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