xref: /netbsd-src/share/mk/bsd.own.mk (revision ae9172d6cd9432a6a1a56760d86b32c57a66c39c)
1#	$NetBSD: bsd.own.mk,v 1.13 1994/09/28 15:59:28 mycroft Exp $
2
3# Defining `SKEY' causes support for S/key authentication to be compiled in.
4SKEY=		yes
5# Defining `KERBEROS' causes support for Kerberos authentication to be
6# compiled in.
7#KERBEROS=	yes
8
9# where the system object and source trees are kept; can be configurable
10# by the user in case they want them in ~/foosrc and ~/fooobj, for example
11BSDSRCDIR?=	/usr/src
12BSDOBJDIR?=	/usr/obj
13
14BINGRP?=	bin
15BINOWN?=	bin
16BINMODE?=	555
17NONBINMODE?=	444
18
19MANDIR?=	/usr/share/man/cat
20MANGRP?=	bin
21MANOWN?=	bin
22MANMODE?=	${NONBINMODE}
23
24LIBDIR?=	/usr/lib
25LINTLIBDIR?=	/usr/libdata/lint
26LIBGRP?=	${BINGRP}
27LIBOWN?=	${BINOWN}
28LIBMODE?=	${NONBINMODE}
29
30DOCDIR?=        /usr/share/doc
31DOCGRP?=	bin
32DOCOWN?=	bin
33DOCMODE?=       ${NONBINMODE}
34
35COPY?=		-c
36STRIP?=		-s
37
38# Define SYS_INCLUDE to indicate whether you want symbolic links to the system
39# source (``symlinks''), or a separate copy (``copies''); (latter useful
40# in environments where it's not possible to keep /sys publicly readable)
41#SYS_INCLUDE= 	symlinks
42
43# don't try to generate PIC versions of libraries on machines
44# which don't support PIC.
45.if (${MACHINE_ARCH} == "ns32k") || (${MACHINE_ARCH} == "mips") || \
46	(${MACHINE_ARCH} == "alpha")
47NOPIC=
48.endif
49