1if WITH_MAN_PAGES
2
3# decide which pages to install
4man_MANS = madwimax.8
5
6CLEANFILES = madwimax.8 madwimax.8.xml
7
8madwimax.8.xml: $(srcdir)/madwimax.8.txt
9	asciidoc -b docbook -d manpage -o $@ $<
10
11madwimax.8: madwimax.8.xml
12	$(db2xman) $<
13
14endif
15
16# distribute the source in asciidoc format
17EXTRA_DIST = madwimax.8.txt
18