1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00
pacman/doc/Makefile.am
Dan McGee 82de7efbf9 Greatly simplify the way our non-existant translated manpages were being
made. Ripped out all the po4a stuff, letting us cut down on yet another
makedepends.
Also moved all of the manpages to non-.in names.
2007-02-07 22:29:21 +00:00

27 lines
410 B
Makefile

all: makepkg.8 PKGBUILD.5 pacman.8
if HAS_MAN2HTML
makepkg.8:
man2html makepkg.8 > html/makepkg.8.html
PKGBUILD.5:
man2html PKGBUILD.5 > html/PKGBUILD.5.html
pacman.8:
man2html pacman.8 > html/pacman.8.html
endif
clean:
rm -f html/*.html
rm -f man3/*.3
rm -f man5/*.5
rm -f man8/*.8
man_MANS = pacman.8 makepkg.8 PKGBUILD.5 libalpm.3
if HAS_DOXYGEN
man_MANS += *.3
endif
EXTRA_DIST = $(man_MANS)