2007-02-09 18:37:27 +00:00
|
|
|
all: makepkg.8 pacman.8 PKGBUILD.5 makepkg.conf.5 pacman.conf.5
|
2006-10-15 18:58:23 +00:00
|
|
|
|
2005-10-17 18:52:43 +00:00
|
|
|
if HAS_MAN2HTML
|
|
|
|
makepkg.8:
|
|
|
|
man2html makepkg.8 > html/makepkg.8.html
|
|
|
|
|
2007-02-09 18:37:27 +00:00
|
|
|
pacman.8:
|
|
|
|
man2html pacman.8 > html/pacman.8.html
|
|
|
|
|
2007-02-06 20:23:41 +00:00
|
|
|
PKGBUILD.5:
|
|
|
|
man2html PKGBUILD.5 > html/PKGBUILD.5.html
|
2006-10-15 18:58:23 +00:00
|
|
|
|
2007-02-09 18:37:27 +00:00
|
|
|
makepkg.conf.5:
|
|
|
|
man2html makepkg.8 > html/makepkg.8.html
|
|
|
|
|
|
|
|
pacman.conf.5:
|
|
|
|
man2html pacman.conf.5 > html/pacman.conf.5.html
|
|
|
|
|
2005-10-17 18:52:43 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
clean:
|
2006-10-16 00:02:43 +00:00
|
|
|
rm -f html/*.html
|
2006-10-15 23:51:18 +00:00
|
|
|
rm -f man3/*.3
|
2005-10-17 18:52:43 +00:00
|
|
|
|
2007-02-22 04:36:02 +00:00
|
|
|
man_MANS = \
|
|
|
|
pacman.8 \
|
|
|
|
makepkg.8 \
|
|
|
|
PKGBUILD.5 \
|
|
|
|
makepkg.conf.5 \
|
|
|
|
pacman.conf.5 \
|
|
|
|
libalpm.3
|
2006-02-17 20:48:45 +00:00
|
|
|
|
2006-02-20 20:08:24 +00:00
|
|
|
if HAS_DOXYGEN
|
2007-02-22 21:34:51 +00:00
|
|
|
man_MANS += $(wildcard man3/*.3)
|
2006-02-20 20:08:24 +00:00
|
|
|
endif
|
2006-02-17 20:48:45 +00:00
|
|
|
|
2007-02-07 22:29:21 +00:00
|
|
|
EXTRA_DIST = $(man_MANS)
|