1*66802Spendry# @(#)Makefile 8.2 (Berkeley) 04/16/94 233035Sbostic 350350SbosticSUBDIR= man1 man3 man3f man4 man5 man7 man8 4*66802SpendrySEDF= /usr/share/man/makewhatis.sed 533035Sbostic 641645Sbosticafterinstall: 741645Sbostic install -c -o ${BINOWN} -g ${BINGRP} -m 444 makewhatis.sed \ 8*66802Spendry ${DESTDIR}${SEDF} 941645Sbostic 1041645Sbosticmakedb: 11*66802Spendry find /usr/share/man -type f -name '*.0' -print | \ 12*66802Spendry while read file; \ 13*66802Spendry do \ 14*66802Spendry sed -n -f ${SEDF} $$file; \ 1555494Sbostic done | col -b | sort -u > /tmp/whatis.db 1655340Sbostic install -o ${BINOWN} -g ${BINGRP} -m 444 /tmp/whatis.db \ 1741645Sbostic ${DESTDIR}/usr/share/man 1833035Sbostic 1941645Sbostic.include <bsd.subdir.mk> 20