21eb6c6e63
now, DO_COMPRESS. This controls whether or not catpages are compressed or not (on by default, since little else uses the catpages and those few things that do can always configure in a `zmore' in place of more or something, and saving space is more important, IMHO). Uncompression support is now on by default since that's the only way to support mixed-mode environments. If you don't like it, just don't compress your man pages and it won't be used! :-). Supports gzip. You can also compress the man pages themselves (or gzip them) now and it will work.
18 lines
457 B
Makefile
18 lines
457 B
Makefile
# @(#)Makefile 5.6 (Berkeley) 6/23/90
|
|
|
|
NOMAN= noman
|
|
CLEANFILES= makewhatis
|
|
|
|
beforeinstall: makewhatis
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/makewhatis ${DESTDIR}${BINDIR}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
makewhatis: makewhatis.sh
|
|
sed -e 's/%sections%/ "1", "n", "l", "6", "8", "2", "3", "4", "5", "7", "p", "o", NULL/' \
|
|
-e 's,%zcat%,${zcat},' \
|
|
-e 's,%compext%,${compext},' \
|
|
${.CURDIR}/makewhatis.sh > makewhatis
|
|
|