summaryrefslogtreecommitdiffstats
path: root/doc/Makefile.am
blob: ead359c3d3a789b0f7f63cc96c0f41bbc2d4d939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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