[BACK]Return to bsd.own.mk CVS log [TXT][DIR] Up to [local] / src / share / mk

Annotation of src/share/mk/bsd.own.mk, Revision 1.3

1.2       deraadt     1: #      $NetBSD: bsd.own.mk,v 1.23 1995/11/03 23:33:33 cgd Exp $
1.1       deraadt     2:
                      3: # Defining `SKEY' causes support for S/key authentication to be compiled in.
                      4: SKEY=          yes
                      5: # Defining `KERBEROS' causes support for Kerberos authentication to be
                      6: # compiled in.
1.3     ! tholo       7: KERBEROS=      yes
1.1       deraadt     8: # Defining 'KERBEROS5' causes support for Kerberos5 authentication to be
                      9: # compiled in.
                     10: #KERBEROS5=    yes
                     11:
                     12: # where the system object and source trees are kept; can be configurable
                     13: # by the user in case they want them in ~/foosrc and ~/fooobj, for example
                     14: BSDSRCDIR?=    /usr/src
                     15: BSDOBJDIR?=    /usr/obj
                     16:
                     17: BINGRP?=       bin
                     18: BINOWN?=       bin
                     19: BINMODE?=      555
                     20: NONBINMODE?=   444
                     21:
                     22: # Define MANZ to have the man pages compressed (gzip)
                     23: #MANZ=         1
                     24:
                     25: MANDIR?=       /usr/share/man/cat
                     26: MANGRP?=       bin
                     27: MANOWN?=       bin
                     28: MANMODE?=      ${NONBINMODE}
                     29:
                     30: LIBDIR?=       /usr/lib
                     31: LINTLIBDIR?=   /usr/libdata/lint
                     32: LIBGRP?=       ${BINGRP}
                     33: LIBOWN?=       ${BINOWN}
                     34: LIBMODE?=      ${NONBINMODE}
                     35:
                     36: DOCDIR?=        /usr/share/doc
                     37: DOCGRP?=       bin
                     38: DOCOWN?=       bin
                     39: DOCMODE?=       ${NONBINMODE}
                     40:
                     41: NLSDIR?=       /usr/share/nls
                     42: NLSGRP?=       bin
                     43: NLSOWN?=       bin
                     44: NLSMODE?=      ${NONBINMODE}
                     45:
                     46: COPY?=         -c
                     47: STRIP?=                -s
                     48:
                     49: # Define SYS_INCLUDE to indicate whether you want symbolic links to the system
                     50: # source (``symlinks''), or a separate copy (``copies''); (latter useful
                     51: # in environments where it's not possible to keep /sys publicly readable)
                     52: #SYS_INCLUDE=  symlinks
                     53:
                     54: # don't try to generate PIC versions of libraries on machines
                     55: # which don't support PIC.
                     56: .if (${MACHINE_ARCH} == "mips") || (${MACHINE_ARCH} == "alpha") || \
                     57:     (${MACHINE_ARCH} == "vax")
                     58: NOPIC=
                     59: .endif
                     60:
                     61: # No lint, for now.
                     62: NOLINT=