This commit was manufactured by cvs2svn to create tag 'FreeBSD-release/1.0'.
[unix-history] / gnu / usr.bin / man / Makefile.inc
CommitLineData
78ed81a3 1#
2# Set a bunch of things to hardcoded paths so that we don't accidently
3# pick up a user's own version of some utility and hose ourselves.
4#
00ba3d1d
JH
5BINDIR?= /usr/bin
6libdir= /etc
7bindir= ${BINDIR}
78ed81a3 8pager= more -cs
00ba3d1d
JH
9manpath_config_file= /etc/manpath.config
10troff= /usr/bin/groff -Tps -man
78ed81a3 11nroff= /usr/bin/groff -Tascii -man
12apropos= /usr/bin/apropos
13whatis= /usr/bin/whatis
14neqn= /usr/bin/eqn -Tascii
15tbl= /usr/bin/tbl
16col= /usr/bin/col
17vgrind= /usr/bin/vgrind
18refer= /usr/bin/refer
19grap= # no grap
20pic= /usr/bin/pic
21zcat= /usr/bin/zcat
22
23# For scripts.
24.if !target(obj)
25obj:
26 @cd ${.CURDIR}; rm -rf obj; \
27 here=`pwd`; dest=/usr/obj/`echo $$here | sed 's,/usr/src/,,'`; \
28 echo "$$here -> $$dest"; ln -s $$dest obj; \
29 if test -d /usr/obj -a ! -d $$dest; then \
30 mkdir -p $$dest; \
31 else \
32 true; \
33 fi;
34.endif