Deleted Added
sdiff udiff text old ( 94982 ) new ( 96462 )
full compact
1# $FreeBSD: head/share/mk/bsd.own.mk 94982 2002-04-18 06:37:48Z ru $
2#
3# The include file <bsd.own.mk> set common variables for owner,
4# group, mode, and directories. Defaults are in brackets.
5#
6#
7# +++ variables +++
8#
9# DESTDIR Change the tree where the file gets installed. [not set]

--- 24 unchanged lines hidden (view full) ---

34# BINOWN Binary owner. [root]
35#
36# BINGRP Binary group. [wheel]
37#
38# BINMODE Binary mode. [555]
39#
40# NOBINMODE Mode for non-executable files. [444]
41#
42# INCOWN Include owner. [root]
43#
44# INCGRP Include group. [wheel]
45#
46# INCMODE Include mode. [444]
47#
48# INCDIR Base path for include files. [/usr/include]
49#
50# LIBDIR Base path for libraries. [/usr/lib]
51#
52# LIBCOMPATDIR Base path for compat libraries. [/usr/lib/compat]
53#
54# LIBDATADIR Base path for misc. utility data files. [/usr/libdata]
55#
56# LINTLIBDIR Base path for lint libraries. [/usr/libdata/lint]
57#

--- 70 unchanged lines hidden (view full) ---

128__<bsd.own.mk>__:
129
130# Binaries
131BINOWN?= root
132BINGRP?= wheel
133BINMODE?= 555
134NOBINMODE?= 444
135
136INCOWN?= root
137INCGRP?= wheel
138INCMODE?= 444
139INCDIR?= /usr/include
140
141KMODDIR?= /boot/kernel
142KMODOWN?= ${BINOWN}
143KMODGRP?= ${BINGRP}
144KMODMODE?= ${BINMODE}
145
146.if ${OBJFORMAT} == aout
147LIBDIR?= /usr/lib/aout
148.else

--- 49 unchanged lines hidden ---