1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-11-10 03:25:01 -05:00
pacman/doc/Makefile.am
Dan McGee 332c127109 Big commit here, I'll try to cover all the bases.
* Updated all of the language files, as the POT file was updated. NOTE FOR
  TRANSLATORS, try to base your next contribution off of these, notice how
  some msgids and messages have been wrapped to the next line- it makes it
  easier to read anyway.
* More Makefile.am/configure.ac updates. 'make dist' and 'make distclean' now
  work properly, with only one caveat- the automatic testing in distclean
  doesn't do so hot as it is compiled with a default configure, which includes
  the fakeroot-proof code (which does not cooperate with pactest).
* Added a Makefile.am for the pactest directory.
2007-02-22 21:34:51 +00:00

38 lines
597 B
Makefile

all: makepkg.8 pacman.8 PKGBUILD.5 makepkg.conf.5 pacman.conf.5
if HAS_MAN2HTML
makepkg.8:
man2html makepkg.8 > html/makepkg.8.html
pacman.8:
man2html pacman.8 > html/pacman.8.html
PKGBUILD.5:
man2html PKGBUILD.5 > html/PKGBUILD.5.html
makepkg.conf.5:
man2html makepkg.8 > html/makepkg.8.html
pacman.conf.5:
man2html pacman.conf.5 > html/pacman.conf.5.html
endif
clean:
rm -f html/*.html
rm -f man3/*.3
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)