Deleted Added
full compact
bsd.own.mk (94940) bsd.own.mk (94982)
1# $FreeBSD: head/share/mk/bsd.own.mk 94940 2002-04-17 13:49:29Z ru $
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]

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

119# NLSOWN National Language Support files owner. [${SHAREOWN}]
120#
121# NLSGRP National Language Support files group. [${SHAREGRP}]
122#
123# NLSMODE National Language Support files mode. [${NOBINMODE}]
124#
125# INCLUDEDIR Base path for standard C include files [/usr/include]
126
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]

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

119# NLSOWN National Language Support files owner. [${SHAREOWN}]
120#
121# NLSGRP National Language Support files group. [${SHAREGRP}]
122#
123# NLSMODE National Language Support files mode. [${NOBINMODE}]
124#
125# INCLUDEDIR Base path for standard C include files [/usr/include]
126
127.if !target(__<bsd.own.mk>__)
128__<bsd.own.mk>__:
129
127# Binaries
128BINOWN?= root
129BINGRP?= wheel
130BINMODE?= 555
131NOBINMODE?= 444
132
133INCOWN?= root
134INCGRP?= wheel

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

185# Common variables
186.if !defined(DEBUG_FLAGS)
187STRIP?= -s
188.endif
189
190COPY?= -c
191COMPRESS_CMD?= gzip -cn
192COMPRESS_EXT?= .gz
130# Binaries
131BINOWN?= root
132BINGRP?= wheel
133BINMODE?= 555
134NOBINMODE?= 444
135
136INCOWN?= root
137INCGRP?= wheel

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

188# Common variables
189.if !defined(DEBUG_FLAGS)
190STRIP?= -s
191.endif
192
193COPY?= -c
194COMPRESS_CMD?= gzip -cn
195COMPRESS_EXT?= .gz
196
197.endif !target(__<bsd.own.mk>__)