65b1f0f74e
In "nroff" mode, italic font renders as an underlined text, which makes it indistinguishable from the bold text on color monitors (cons25 terminal type), yet it requires the less(1)'s -R option. (Refer to the new grotty(1) manpage for details.) So turn off the color support for now (when generating catpages), until we figure out what do we do with this new feature. I have a patch for grotty(1) that tells it to use the "reverse video" attribute to render the italic font. Once this is accepted, we can turn color support back on (if there won't be any objections from the community).
37 lines
922 B
Makefile
37 lines
922 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Set a bunch of things to hardcoded paths so that we don't accidently
|
|
# pick up a user's own version of some utility and hose ourselves.
|
|
#
|
|
libdir= /etc
|
|
bindir= ${BINDIR}
|
|
pager= more -s
|
|
manpath_config_file= /etc/manpath.config
|
|
troff= /usr/bin/groff -S -man
|
|
# -Tascii or localized encoding added automatically
|
|
nroff= /usr/bin/groff -P-c -S -Wall -mtty-char -man
|
|
apropos= /usr/bin/apropos
|
|
whatis= /usr/bin/whatis
|
|
eqn= /usr/bin/eqn
|
|
# -Tascii or localized encoding added automatically
|
|
neqn= /usr/bin/eqn
|
|
tbl= /usr/bin/tbl
|
|
col= /usr/bin/col
|
|
vgrind= /usr/bin/vgrind
|
|
refer= /usr/bin/refer
|
|
grap= # no grap
|
|
pic= /usr/bin/pic
|
|
zcat= /usr/bin/zcat
|
|
compress= /usr/bin/gzip -c
|
|
compext= .gz
|
|
|
|
.if exists(${.OBJDIR}/../lib)
|
|
LIBDESTDIR= ${.OBJDIR}/../lib
|
|
.else
|
|
LIBDESTDIR= ${.CURDIR}/../lib
|
|
.endif
|
|
|
|
LIBMAN= ${LIBDESTDIR}/libman.a
|
|
|
|
.include "../Makefile.inc"
|