bsd.own.mk revision 287108
1# $FreeBSD: head/share/mk/bsd.own.mk 287108 2015-08-24 13:46:12Z bapt $
2#
3# The include file <src.opts.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]
10#
11# DISTDIR	Change the tree where the file for a distribution
12# 		gets installed (see /usr/src/release/Makefile). [not set]
13#
14# COMPRESS_CMD	Program to compress documents.
15#		Output is to stdout. [gzip -cn]
16#
17# COMPRESS_EXT	File name extension of ${COMPRESS_CMD} command. [.gz]
18#
19# BINOWN	Binary owner. [root]
20#
21# BINGRP	Binary group. [wheel]
22#
23# BINMODE	Binary mode. [555]
24#
25# NOBINMODE	Mode for non-executable files. [444]
26#
27# LIBDIR	Base path for libraries. [/usr/lib]
28#
29# LIBCOMPATDIR	Base path for compat libraries. [/usr/lib/compat]
30#
31# LIBDATADIR	Base path for misc. utility data files. [/usr/libdata]
32#
33# LIBEXECDIR	Base path for system daemons and utilities. [/usr/libexec]
34#
35# LINTLIBDIR	Base path for lint libraries. [/usr/libdata/lint]
36#
37# SHLIBDIR	Base path for shared libraries. [${LIBDIR}]
38#
39# LIBOWN	Library owner. [${BINOWN}]
40#
41# LIBGRP	Library group. [${BINGRP}]
42#
43# LIBMODE	Library mode. [${NOBINMODE}]
44#
45#
46# DEBUGDIR	Base path for standalone debug files. [/usr/lib/debug]
47#
48# DEBUGMODE	Mode for debug files. [${NOBINMODE}]
49#
50#
51# KMODDIR	Base path for loadable kernel modules
52#		(see kld(4)). [/boot/kernel]
53#
54# KMODOWN	Kernel and KLD owner. [${BINOWN}]
55#
56# KMODGRP	Kernel and KLD group. [${BINGRP}]
57#
58# KMODMODE	KLD mode. [${BINMODE}]
59#
60#
61# SHAREDIR	Base path for architecture-independent ascii
62#		text files. [/usr/share]
63#
64# SHAREOWN	ASCII text file owner. [root]
65#
66# SHAREGRP	ASCII text file group. [wheel]
67#
68# SHAREMODE	ASCII text file mode. [${NOBINMODE}]
69#
70#
71# CONFDIR	Base path for configuration files. [/etc]
72#
73# CONFOWN	Configuration file owner. [root]
74#
75# CONFGRP	Configuration file group. [wheel]
76#
77# CONFMODE	Configuration file mode. [644]
78#
79#
80# DOCDIR	Base path for system documentation (e.g. PSD, USD,
81#		handbook, FAQ etc.). [${SHAREDIR}/doc]
82#
83# DOCOWN	Documentation owner. [${SHAREOWN}]
84#
85# DOCGRP	Documentation group. [${SHAREGRP}]
86#
87# DOCMODE	Documentation mode. [${NOBINMODE}]
88#
89#
90# INFODIR	Base path for GNU's hypertext system
91#		called Info (see info(1)). [${SHAREDIR}/info]
92#
93# INFOOWN	Info owner. [${SHAREOWN}]
94#
95# INFOGRP	Info group. [${SHAREGRP}]
96#
97# INFOMODE	Info mode. [${NOBINMODE}]
98#
99#
100# MANDIR	Base path for manual installation. [${SHAREDIR}/man/man]
101#
102# MANOWN	Manual owner. [${SHAREOWN}]
103#
104# MANGRP	Manual group. [${SHAREGRP}]
105#
106# MANMODE	Manual mode. [${NOBINMODE}]
107#
108#
109# NLSDIR	Base path for National Language Support files
110#		installation. [${SHAREDIR}/nls]
111#
112# NLSOWN	National Language Support files owner. [${SHAREOWN}]
113#
114# NLSGRP	National Language Support files group. [${SHAREGRP}]
115#
116# NLSMODE	National Language Support files mode. [${NOBINMODE}]
117#
118# INCLUDEDIR	Base path for standard C include files [/usr/include]
119
120.if !target(__<bsd.own.mk>__)
121__<bsd.own.mk>__:
122
123.include <bsd.opts.mk>		# options now here or src.opts.mk
124
125.if !defined(_WITHOUT_SRCCONF)
126
127.if ${MK_CTF} != "no"
128CTFCONVERT_CMD=	${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
129.elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
130CTFCONVERT_CMD=
131.else
132CTFCONVERT_CMD=	@:
133.endif 
134
135.if ${MK_INSTALL_AS_USER} != "no"
136_uid!=	id -u
137.if ${_uid} != 0
138.if !defined(USER)
139USER!=	id -un
140.endif
141_gid!=	id -g
142.for x in BIN CONF DOC DTB INFO KMOD LIB MAN NLS SHARE
143$xOWN=	${USER}
144$xGRP=	${_gid}
145.endfor
146.endif
147.endif
148
149.endif # !_WITHOUT_SRCCONF
150
151# Binaries
152BINOWN?=	root
153BINGRP?=	wheel
154BINMODE?=	555
155NOBINMODE?=	444
156
157.if defined(MODULES_WITH_WORLD)
158KMODDIR?=	/boot/modules
159.else
160KMODDIR?=	/boot/kernel
161.endif
162KMODOWN?=	${BINOWN}
163KMODGRP?=	${BINGRP}
164KMODMODE?=	${BINMODE}
165DTBDIR?=	/boot/dtb
166DTBOWN?=	root
167DTBGRP?=	wheel
168DTBMODE?=	444
169
170LIBDIR?=	/usr/lib
171LIBCOMPATDIR?=	/usr/lib/compat
172LIBDATADIR?=	/usr/libdata
173LIBEXECDIR?=	/usr/libexec
174LINTLIBDIR?=	/usr/libdata/lint
175SHLIBDIR?=	${LIBDIR}
176LIBOWN?=	${BINOWN}
177LIBGRP?=	${BINGRP}
178LIBMODE?=	${NOBINMODE}
179
180DEBUGDIR?=	/usr/lib/debug
181DEBUGMODE?=	${NOBINMODE}
182
183
184# Share files
185SHAREDIR?=	/usr/share
186SHAREOWN?=	root
187SHAREGRP?=	wheel
188SHAREMODE?=	${NOBINMODE}
189
190CONFDIR?=	/etc
191CONFOWN?=	root
192CONFGRP?=	wheel
193CONFMODE?=	644
194
195MANDIR?=	${SHAREDIR}/man/man
196MANOWN?=	${SHAREOWN}
197MANGRP?=	${SHAREGRP}
198MANMODE?=	${NOBINMODE}
199
200DOCDIR?=	${SHAREDIR}/doc
201DOCOWN?=	${SHAREOWN}
202DOCGRP?=	${SHAREGRP}
203DOCMODE?=	${NOBINMODE}
204
205INFODIR?=	${SHAREDIR}/info
206INFOOWN?=	${SHAREOWN}
207INFOGRP?=	${SHAREGRP}
208INFOMODE?=	${NOBINMODE}
209
210NLSDIR?=	${SHAREDIR}/nls
211NLSOWN?=	${SHAREOWN}
212NLSGRP?=	${SHAREGRP}
213NLSMODE?=	${NOBINMODE}
214
215INCLUDEDIR?=	/usr/include
216
217#
218# install(1) parameters.
219#
220HRDLINK?=	-l h
221SYMLINK?=	-l s
222RSYMLINK?=	-l rs
223
224INSTALL_LINK?=		${INSTALL} ${HRDLINK}
225INSTALL_SYMLINK?=	${INSTALL} ${SYMLINK}
226INSTALL_RSYMLINK?=	${INSTALL} ${RSYMLINK}
227
228# Common variables
229.if !defined(DEBUG_FLAGS)
230STRIP?=		-s
231.endif
232
233COMPRESS_CMD?=	gzip -cn
234COMPRESS_EXT?=	.gz
235
236# Set XZ_THREADS to 1 to disable multi-threading.
237XZ_THREADS?=	0
238
239.if !empty(XZ_THREADS)
240XZ_CMD?=	xz -T ${XZ_THREADS}
241.else
242XZ_CMD?=	xz
243.endif
244
245# Pointer to the top directory into which tests are installed.  Should not be
246# overriden by Makefiles, but the user may choose to set this in src.conf(5).
247TESTSBASE?= /usr/tests
248
249# Compat for the moment
250.include <bsd.compiler.mk>
251
252.endif	# !target(__<bsd.own.mk>__)
253