2007-02-21 23:36:02 -05:00
|
|
|
man_MANS = \
|
|
|
|
pacman.8 \
|
|
|
|
makepkg.8 \
|
|
|
|
PKGBUILD.5 \
|
|
|
|
makepkg.conf.5 \
|
|
|
|
pacman.conf.5 \
|
|
|
|
libalpm.3
|
2006-02-17 15:48:45 -05:00
|
|
|
|
2006-02-20 15:08:24 -05:00
|
|
|
if HAS_DOXYGEN
|
2007-02-22 16:34:51 -05:00
|
|
|
man_MANS += $(wildcard man3/*.3)
|
2006-02-20 15:08:24 -05:00
|
|
|
endif
|
2006-02-17 15:48:45 -05:00
|
|
|
|
2007-07-01 17:55:44 -04:00
|
|
|
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
|
2007-07-01 18:40:43 -04:00
|
|
|
|
|
|
|
if HAS_DOXYGEN
|
|
|
|
all: doxygen.in
|
|
|
|
|
|
|
|
doxygen.in:
|
|
|
|
doxygen $(srcdir)/Doxyfile
|
|
|
|
endif
|
2007-02-22 22:23:06 -05:00
|
|
|
|
2007-07-01 17:55:44 -04:00
|
|
|
$(man_MANS):
|
|
|
|
a2x -d manpage -f manpage --asciidoc-opts="-f asciidoc.conf" $@.txt
|
2007-02-22 22:23:06 -05:00
|
|
|
|
2007-06-04 17:49:09 -04:00
|
|
|
# vim:set ts=2 sw=2 noet:
|