mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-02 08:35:06 -04:00
d70116bfbc
Instead of doing the doxygen work in the libalpm/ dir, do it with the rest of the docs in the doc/ dir. Signed-off-by: Dan McGee <dan@archlinux.org>
26 lines
324 B
Makefile
26 lines
324 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 = $(man_MANS) Doxyfile
|
|
|
|
if HAS_DOXYGEN
|
|
all: doxygen.in
|
|
|
|
doxygen.in:
|
|
doxygen $(srcdir)/Doxyfile
|
|
endif
|
|
|
|
clean-local:
|
|
$(RM) man3/*.3
|
|
|
|
# vim:set ts=2 sw=2 noet:
|