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