xref: /original-bsd/share/man/Makefile (revision c3e32dec)
1#	@(#)Makefile	8.1 (Berkeley) 06/05/93
2
3SUBDIR=	man1 man3 man3f man4 man5 man7 man8
4
5afterinstall:
6	install -c -o ${BINOWN} -g ${BINGRP} -m 444 makewhatis.sed \
7	    ${DESTDIR}/usr/share/man/makewhatis.sed
8
9makedb:
10	for file in `find /usr/share/man -type f -name '*.0' -print`; do \
11		sed -n -f /usr/share/man/makewhatis.sed $$file; \
12	done | col -b | sort -u > /tmp/whatis.db
13	install -o ${BINOWN} -g ${BINGRP} -m 444 /tmp/whatis.db \
14	    ${DESTDIR}/usr/share/man
15
16.include <bsd.subdir.mk>
17