mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-15 22:05:02 -05:00
82de7efbf9
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.
27 lines
410 B
Makefile
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)
|