mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 03:25:01 -05:00
168b795f9e
Add some asciidoc generation stuff to the doc/ Makefile.am so we can get some manpages up and working. Add necessary stuff to gitignore, and check in the asciidoc.conf file along with the footer for all of the manpages. Signed-off-by: Dan McGee <dan@archlinux.org>
37 lines
606 B
Makefile
37 lines
606 B
Makefile
man_MANS = \
|
|
pacman.8 \
|
|
makepkg.8 \
|
|
PKGBUILD.5 \
|
|
makepkg.conf.5 \
|
|
pacman.conf.5 \
|
|
libalpm.3
|
|
|
|
if HAS_DOXYGEN
|
|
man_MANS += $(wildcard man3/*.3)
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
pacman.8.txt \
|
|
makepkg.8.txt \
|
|
PKGBUILD.5.txt \
|
|
makepkg.conf.5.txt \
|
|
pacman.conf.5.txt \
|
|
libalpm.3.txt \
|
|
footer.txt \
|
|
Doxyfile
|
|
|
|
# Files that should be removed, but which Automake does not know.
|
|
MOSTLYCLEANFILES = $(man_MANS) man3/*.3 *.xml
|
|
|
|
if HAS_DOXYGEN
|
|
all: doxygen.in
|
|
|
|
doxygen.in:
|
|
doxygen $(srcdir)/Doxyfile
|
|
endif
|
|
|
|
$(man_MANS):
|
|
a2x -d manpage -f manpage --asciidoc-opts="-f asciidoc.conf" $@.txt
|
|
|
|
# vim:set ts=2 sw=2 noet:
|