blob: e1caf901ef6a3a90d940893a1c561f20fcfc943e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# $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 -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
LIBDESTDIR= ${.OBJDIR}/../lib
LIBMAN= ${LIBDESTDIR}/libman.a
.include "../Makefile.inc"
|