]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/bsd.own.mk
Update llvm to trunk r256633.
[FreeBSD/FreeBSD.git] / share / mk / bsd.own.mk
1 # $FreeBSD$
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]
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"
128 CTFCONVERT_CMD= ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
129 .elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
130 CTFCONVERT_CMD=
131 .else
132 CTFCONVERT_CMD= @:
133 .endif 
134
135 .if ${MK_INSTALL_AS_USER} != "no"
136 .if !defined(_uid)
137 _uid!=  id -u
138 .export _uid
139 .endif
140 .if ${_uid} != 0
141 .if !defined(USER)
142 # Avoid exporting USER
143 .if !defined(_USER)
144 _USER!= id -un
145 .export _USER
146 .endif
147 USER=   ${_USER}
148 .endif
149 .if !defined(_gid)
150 _gid!=  id -g
151 .export _gid
152 .endif
153 .for x in BIN CONF DOC DTB INFO KMOD LIB MAN NLS SHARE
154 $xOWN=  ${USER}
155 $xGRP=  ${_gid}
156 .endfor
157 .endif
158 .endif
159
160 .endif # !_WITHOUT_SRCCONF
161
162 # Binaries
163 BINOWN?=        root
164 BINGRP?=        wheel
165 BINMODE?=       555
166 NOBINMODE?=     444
167
168 .if defined(MODULES_WITH_WORLD)
169 KMODDIR?=       /boot/modules
170 .else
171 KMODDIR?=       /boot/kernel
172 .endif
173 KMODOWN?=       ${BINOWN}
174 KMODGRP?=       ${BINGRP}
175 KMODMODE?=      ${BINMODE}
176 DTBDIR?=        /boot/dtb
177 DTBOWN?=        root
178 DTBGRP?=        wheel
179 DTBMODE?=       444
180
181 LIBDIR?=        /usr/lib
182 LIBCOMPATDIR?=  /usr/lib/compat
183 LIBDATADIR?=    /usr/libdata
184 LIBEXECDIR?=    /usr/libexec
185 LINTLIBDIR?=    /usr/libdata/lint
186 SHLIBDIR?=      ${LIBDIR}
187 LIBOWN?=        ${BINOWN}
188 LIBGRP?=        ${BINGRP}
189 LIBMODE?=       ${NOBINMODE}
190
191 DEBUGDIR?=      /usr/lib/debug
192 DEBUGMODE?=     ${NOBINMODE}
193
194
195 # Share files
196 SHAREDIR?=      /usr/share
197 SHAREOWN?=      root
198 SHAREGRP?=      wheel
199 SHAREMODE?=     ${NOBINMODE}
200
201 CONFDIR?=       /etc
202 CONFOWN?=       root
203 CONFGRP?=       wheel
204 CONFMODE?=      644
205
206 MANDIR?=        ${SHAREDIR}/man/man
207 MANOWN?=        ${SHAREOWN}
208 MANGRP?=        ${SHAREGRP}
209 MANMODE?=       ${NOBINMODE}
210
211 DOCDIR?=        ${SHAREDIR}/doc
212 DOCOWN?=        ${SHAREOWN}
213 DOCGRP?=        ${SHAREGRP}
214 DOCMODE?=       ${NOBINMODE}
215
216 INFODIR?=       ${SHAREDIR}/info
217 INFOOWN?=       ${SHAREOWN}
218 INFOGRP?=       ${SHAREGRP}
219 INFOMODE?=      ${NOBINMODE}
220
221 NLSDIR?=        ${SHAREDIR}/nls
222 NLSOWN?=        ${SHAREOWN}
223 NLSGRP?=        ${SHAREGRP}
224 NLSMODE?=       ${NOBINMODE}
225
226 INCLUDEDIR?=    /usr/include
227
228 #
229 # install(1) parameters.
230 #
231 HRDLINK?=       -l h
232 SYMLINK?=       -l s
233 RSYMLINK?=      -l rs
234
235 INSTALL_LINK?=          ${INSTALL} ${HRDLINK}
236 INSTALL_SYMLINK?=       ${INSTALL} ${SYMLINK}
237 INSTALL_RSYMLINK?=      ${INSTALL} ${RSYMLINK}
238
239 # Common variables
240 .if !defined(DEBUG_FLAGS)
241 STRIP?=         -s
242 .endif
243
244 COMPRESS_CMD?=  gzip -cn
245 COMPRESS_EXT?=  .gz
246
247 # Set XZ_THREADS to 1 to disable multi-threading.
248 XZ_THREADS?=    0
249
250 .if !empty(XZ_THREADS)
251 XZ_CMD?=        xz -T ${XZ_THREADS}
252 .else
253 XZ_CMD?=        xz
254 .endif
255
256 # Pointer to the top directory into which tests are installed.  Should not be
257 # overriden by Makefiles, but the user may choose to set this in src.conf(5).
258 TESTSBASE?= /usr/tests
259
260 # Compat for the moment -- old bsd.own.mk only included this when _WITHOUT_SRCCONF
261 # wasn't defined. bsd.ports.mk and friends depend on this behavior. Remove in 12.
262 .if !defined(_WITHOUT_SRCCONF)
263 .include <bsd.compiler.mk>
264 .endif # !_WITHOUT_SRCCONF
265
266 .endif  # !target(__<bsd.own.mk>__)