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.
34 lines
944 B
Makefile
34 lines
944 B
Makefile
LIB = man
|
|
|
|
.if exists(${.CURDIR}/obj)
|
|
CONFH= ${.CURDIR}/obj/config.h
|
|
.else
|
|
CONFH= ${.CURDIR}/config.h
|
|
.endif
|
|
|
|
NOPROFILE= YES
|
|
|
|
CFLAGS+= -I${.CURDIR} -DSTDC_HEADERS -DPOSIX -DHAS_TROFF -DDO_COMPRESS -DALT_SYSTEMS
|
|
CLEANFILES+= ${CONFH}
|
|
SRCS = util.c gripes.c
|
|
|
|
libman.a:: ${CONFH}
|
|
|
|
install:
|
|
@echo -n
|
|
|
|
depend ${CONFH}: ${.CURDIR}/config.h_dist ../Makefile.inc
|
|
sed -e 's,%apropos%,${apropos},' -e 's,%whatis%,${whatis},' \
|
|
-e 's,%pager%,${pager},' -e 's,%troff%,${troff},' \
|
|
-e 's,%nroff%,${nroff},' -e 's,%tbl%,${tbl},' \
|
|
-e 's,%col%,${col},' -e 's,%pic%,${pic},' \
|
|
-e 's,%eqn%,${eqn},' -e 's,%neqn%,${neqn},' \
|
|
-e 's,%vgrind%,${vgrind},' -e 's,%refer%,${refer},' \
|
|
-e 's,%grap%,${grap},' -e 's,%zcat%,${zcat},' \
|
|
-e 's,%manpath_config_file%,${manpath_config_file},' \
|
|
-e 's,%compress%,${compress},' \
|
|
-e 's,%compext%,${compext},' \
|
|
${.CURDIR}/config.h_dist > ${CONFH}
|
|
|
|
.include <bsd.lib.mk>
|