xref: /netbsd-src/share/mk/bsd.own.mk (revision ce0bb6e8d2e560ecacbe865a848624f94498063b)
1#	$NetBSD: bsd.own.mk,v 1.15 1995/02/20 21:26:33 jtc 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
35NLSDIR?=	/usr/share/nls
36NLSGRP?=	bin
37NLSOWN?=	bin
38NLSMODE?=	${NONBINMODE}
39
40COPY?=		-c
41STRIP?=		-s
42
43# Define SYS_INCLUDE to indicate whether you want symbolic links to the system
44# source (``symlinks''), or a separate copy (``copies''); (latter useful
45# in environments where it's not possible to keep /sys publicly readable)
46#SYS_INCLUDE= 	symlinks
47
48# don't try to generate PIC versions of libraries on machines
49# which don't support PIC.
50.if (${MACHINE_ARCH} == "mips") || (${MACHINE_ARCH} == "alpha")
51NOPIC=
52.endif
53