1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00
pacman/doc/Makefile.am
Dan McGee 6fc803258a * Removed man2html stuff from configure. It is now available in the doc/
directory by running the target man2html, e.g. 'make man2html'.
* Slightly fixed up the bottom of the manpages.
2007-02-23 03:23:06 +00:00

38 lines
664 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)
MAN2HTML=man2html -r
SUFFIXES=.3 .5 .8 .3.html .5.html .8.html
# targets for each man section, sed removes a weird artifact left by man2html
.3.3.html:
$(RM) $@
-${MAN2HTML} $< | sed '1,2d' > $@
.5.5.html:
$(RM) $@
-${MAN2HTML} $< | sed '1,2d' > $@
.8.8.html:
$(RM) $@
-${MAN2HTML} $< | sed '1,2d' > $@
man2html: pacman.8.html makepkg.8.html PKGBUILD.5.html makepkg.conf.5.html pacman.conf.5.html libalpm.3.html
clean-local:
$(RM) *.html
$(RM) man3/*.3
.PHONY: man2html