Deleted Added
full compact
bsd.own.mk (255384) bsd.own.mk (255597)
1# $FreeBSD: head/share/mk/bsd.own.mk 255384 2013-09-08 09:40:23Z des $
1# $FreeBSD: head/share/mk/bsd.own.mk 255597 2013-09-15 14:51:23Z des $
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# LIBPRIVATEDIR Base path for private libraries. [/usr/lib/private]
32#
33# LIBDATADIR Base path for misc. utility data files. [/usr/libdata]
34#
35# LIBEXECDIR Base path for system daemons and utilities. [/usr/libexec]
36#
37# LINTLIBDIR Base path for lint libraries. [/usr/libdata/lint]
38#
39# SHLIBDIR Base path for shared libraries. [${LIBDIR}]
40#
41# LIBOWN Library owner. [${BINOWN}]
42#
43# LIBGRP Library group. [${BINGRP}]
44#
45# LIBMODE Library mode. [${NOBINMODE}]
46#
47#
48# DEBUGDIR Base path for standalone debug files. [/usr/lib/debug]
49#
50# DEBUGMODE Mode for debug files. [${NOBINMODE}]
51#
52#
53# KMODDIR Base path for loadable kernel modules
54# (see kld(4)). [/boot/kernel]
55#
56# KMODOWN Kernel and KLD owner. [${BINOWN}]
57#
58# KMODGRP Kernel and KLD group. [${BINGRP}]
59#
60# KMODMODE KLD mode. [${BINMODE}]
61#
62#
63# SHAREDIR Base path for architecture-independent ascii
64# text files. [/usr/share]
65#
66# SHAREOWN ASCII text file owner. [root]
67#
68# SHAREGRP ASCII text file group. [wheel]
69#
70# SHAREMODE ASCII text file mode. [${NOBINMODE}]
71#
72#
73# CONFDIR Base path for configuration files. [/etc]
74#
75# CONFOWN Configuration file owner. [root]
76#
77# CONFGRP Configuration file group. [wheel]
78#
79# CONFMODE Configuration file mode. [644]
80#
81#
82# DOCDIR Base path for system documentation (e.g. PSD, USD,
83# handbook, FAQ etc.). [${SHAREDIR}/doc]
84#
85# DOCOWN Documentation owner. [${SHAREOWN}]
86#
87# DOCGRP Documentation group. [${SHAREGRP}]
88#
89# DOCMODE Documentation mode. [${NOBINMODE}]
90#
91#
92# INFODIR Base path for GNU's hypertext system
93# called Info (see info(1)). [${SHAREDIR}/info]
94#
95# INFOOWN Info owner. [${SHAREOWN}]
96#
97# INFOGRP Info group. [${SHAREGRP}]
98#
99# INFOMODE Info mode. [${NOBINMODE}]
100#
101#
102# MANDIR Base path for manual installation. [${SHAREDIR}/man/man]
103#
104# MANOWN Manual owner. [${SHAREOWN}]
105#
106# MANGRP Manual group. [${SHAREGRP}]
107#
108# MANMODE Manual mode. [${NOBINMODE}]
109#
110#
111# NLSDIR Base path for National Language Support files
112# installation. [${SHAREDIR}/nls]
113#
114# NLSOWN National Language Support files owner. [${SHAREOWN}]
115#
116# NLSGRP National Language Support files group. [${SHAREGRP}]
117#
118# NLSMODE National Language Support files mode. [${NOBINMODE}]
119#
120# INCLUDEDIR Base path for standard C include files [/usr/include]
121
122.if !target(__<bsd.own.mk>__)
123__<bsd.own.mk>__:
124
125.if !defined(_WITHOUT_SRCCONF)
126SRCCONF?= /etc/src.conf
127.if exists(${SRCCONF}) || ${SRCCONF} != "/etc/src.conf"
128.include "${SRCCONF}"
129.endif
130.endif
131
132# Binaries
133BINOWN?= root
134BINGRP?= wheel
135BINMODE?= 555
136NOBINMODE?= 444
137
138.if defined(MODULES_WITH_WORLD)
139KMODDIR?= /boot/modules
140.else
141KMODDIR?= /boot/kernel
142.endif
143KMODOWN?= ${BINOWN}
144KMODGRP?= ${BINGRP}
145KMODMODE?= ${BINMODE}
146
147LIBDIR?= /usr/lib
148LIBCOMPATDIR?= /usr/lib/compat
149LIBPRIVATEDIR?= /usr/lib/private
150LIBDATADIR?= /usr/libdata
151LIBEXECDIR?= /usr/libexec
152LINTLIBDIR?= /usr/libdata/lint
153SHLIBDIR?= ${LIBDIR}
154LIBOWN?= ${BINOWN}
155LIBGRP?= ${BINGRP}
156LIBMODE?= ${NOBINMODE}
157
158DEBUGDIR?= /usr/lib/debug
159DEBUGMODE?= ${NOBINMODE}
160
161
162# Share files
163SHAREDIR?= /usr/share
164SHAREOWN?= root
165SHAREGRP?= wheel
166SHAREMODE?= ${NOBINMODE}
167
168CONFDIR?= /etc
169CONFOWN?= root
170CONFGRP?= wheel
171CONFMODE?= 644
172
173MANDIR?= ${SHAREDIR}/man/man
174MANOWN?= ${SHAREOWN}
175MANGRP?= ${SHAREGRP}
176MANMODE?= ${NOBINMODE}
177
178DOCDIR?= ${SHAREDIR}/doc
179DOCOWN?= ${SHAREOWN}
180DOCGRP?= ${SHAREGRP}
181DOCMODE?= ${NOBINMODE}
182
183INFODIR?= ${SHAREDIR}/info
184INFOOWN?= ${SHAREOWN}
185INFOGRP?= ${SHAREGRP}
186INFOMODE?= ${NOBINMODE}
187
188NLSDIR?= ${SHAREDIR}/nls
189NLSOWN?= ${SHAREOWN}
190NLSGRP?= ${SHAREGRP}
191NLSMODE?= ${NOBINMODE}
192
193INCLUDEDIR?= /usr/include
194
195#
196# install(1) parameters.
197#
198HRDLINK?= -l h
199SYMLINK?= -l s
200
201INSTALL_LINK?= ${INSTALL} ${HRDLINK}
202INSTALL_SYMLINK?= ${INSTALL} ${SYMLINK}
203
204# Common variables
205.if !defined(DEBUG_FLAGS)
206STRIP?= -s
207.endif
208
209COMPRESS_CMD?= gzip -cn
210COMPRESS_EXT?= .gz
211
212.if !defined(_WITHOUT_SRCCONF)
213#
214# Define MK_* variables (which are either "yes" or "no") for users
215# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
216# make(1) environment.
217# These should be tested with `== "no"' or `!= "no"' in makefiles.
218# The NO_* variables should only be set by makefiles.
219#
220
221#
222# Supported NO_* options (if defined, MK_* will be forced to "no",
223# regardless of user's setting).
224#
225.for var in \
226 CTF \
227 DEBUG_FILES \
228 INSTALLLIB \
229 MAN \
230 PROFILE
231.if defined(NO_${var})
232.if defined(WITH_${var})
233.undef WITH_${var}
234.endif
235WITHOUT_${var}=
236.endif
237.endfor
238
239#
240# Older-style variables that enabled behaviour when set.
241#
242.if defined(YES_HESIOD)
243WITH_HESIOD=
244.endif
245
246__DEFAULT_YES_OPTIONS = \
247 ACCT \
248 ACPI \
249 AMD \
250 APM \
251 ARM_EABI \
252 ASSERT_DEBUG \
253 AT \
254 ATF \
255 ATM \
256 AUDIT \
257 AUTHPF \
258 BIND \
259 BIND_DNSSEC \
260 BIND_ETC \
261 BIND_LIBS_LWRES \
262 BIND_MTREE \
263 BIND_NAMED \
264 BIND_UTILS \
265 BINUTILS \
266 BLUETOOTH \
267 BMAKE \
268 BOOT \
269 BSD_CPIO \
270 BSNMP \
271 BZIP2 \
272 CALENDAR \
273 CAPSICUM \
274 CDDL \
275 CPP \
276 CROSS_COMPILER \
277 CRYPT \
278 CTM \
279 CXX \
280 DICT \
281 DYNAMICROOT \
282 ED_CRYPTO \
283 EXAMPLES \
284 FLOPPY \
285 FORMAT_EXTENSIONS \
286 FORTH \
287 FP_LIBC \
288 FREEBSD_UPDATE \
289 GAMES \
290 GCOV \
291 GDB \
292 GNU \
293 GPIB \
294 GPIO \
295 GROFF \
296 HTML \
297 ICONV \
298 INET \
299 INET6 \
300 INFO \
301 INSTALLLIB \
302 IPFILTER \
303 IPFW \
304 IPX \
305 JAIL \
306 KDUMP \
307 KERBEROS \
308 KERNEL_SYMBOLS \
309 KVM \
310 LDNS \
311 LEGACY_CONSOLE \
312 LIB32 \
313 LIBPTHREAD \
314 LIBTHR \
315 LOCALES \
316 LOCATE \
317 LPR \
318 LS_COLORS \
319 MAIL \
320 MAILWRAPPER \
321 MAKE \
322 MAN \
323 NDIS \
324 NETCAT \
325 NETGRAPH \
326 NIS \
327 NLS \
328 NLS_CATALOGS \
329 NS_CACHING \
330 NTP \
331 OPENSSH \
332 OPENSSL \
333 PAM \
334 PC_SYSINSTALL \
335 PF \
336 PKGBOOTSTRAP \
337 PMC \
338 PORTSNAP \
339 PPP \
340 PROFILE \
341 QUOTAS \
342 RCMDS \
343 RCS \
344 RESCUE \
345 ROUTED \
346 SENDMAIL \
347 SETUID_LOGIN \
348 SHAREDOCS \
349 SOURCELESS \
350 SOURCELESS_HOST \
351 SOURCELESS_UCODE \
352 SSP \
353 SVNLITE \
354 SYMVER \
355 SYSCONS \
356 SYSINSTALL \
357 TCSH \
358 TELNET \
359 TEXTPROC \
360 TOOLCHAIN \
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# LIBPRIVATEDIR Base path for private libraries. [/usr/lib/private]
32#
33# LIBDATADIR Base path for misc. utility data files. [/usr/libdata]
34#
35# LIBEXECDIR Base path for system daemons and utilities. [/usr/libexec]
36#
37# LINTLIBDIR Base path for lint libraries. [/usr/libdata/lint]
38#
39# SHLIBDIR Base path for shared libraries. [${LIBDIR}]
40#
41# LIBOWN Library owner. [${BINOWN}]
42#
43# LIBGRP Library group. [${BINGRP}]
44#
45# LIBMODE Library mode. [${NOBINMODE}]
46#
47#
48# DEBUGDIR Base path for standalone debug files. [/usr/lib/debug]
49#
50# DEBUGMODE Mode for debug files. [${NOBINMODE}]
51#
52#
53# KMODDIR Base path for loadable kernel modules
54# (see kld(4)). [/boot/kernel]
55#
56# KMODOWN Kernel and KLD owner. [${BINOWN}]
57#
58# KMODGRP Kernel and KLD group. [${BINGRP}]
59#
60# KMODMODE KLD mode. [${BINMODE}]
61#
62#
63# SHAREDIR Base path for architecture-independent ascii
64# text files. [/usr/share]
65#
66# SHAREOWN ASCII text file owner. [root]
67#
68# SHAREGRP ASCII text file group. [wheel]
69#
70# SHAREMODE ASCII text file mode. [${NOBINMODE}]
71#
72#
73# CONFDIR Base path for configuration files. [/etc]
74#
75# CONFOWN Configuration file owner. [root]
76#
77# CONFGRP Configuration file group. [wheel]
78#
79# CONFMODE Configuration file mode. [644]
80#
81#
82# DOCDIR Base path for system documentation (e.g. PSD, USD,
83# handbook, FAQ etc.). [${SHAREDIR}/doc]
84#
85# DOCOWN Documentation owner. [${SHAREOWN}]
86#
87# DOCGRP Documentation group. [${SHAREGRP}]
88#
89# DOCMODE Documentation mode. [${NOBINMODE}]
90#
91#
92# INFODIR Base path for GNU's hypertext system
93# called Info (see info(1)). [${SHAREDIR}/info]
94#
95# INFOOWN Info owner. [${SHAREOWN}]
96#
97# INFOGRP Info group. [${SHAREGRP}]
98#
99# INFOMODE Info mode. [${NOBINMODE}]
100#
101#
102# MANDIR Base path for manual installation. [${SHAREDIR}/man/man]
103#
104# MANOWN Manual owner. [${SHAREOWN}]
105#
106# MANGRP Manual group. [${SHAREGRP}]
107#
108# MANMODE Manual mode. [${NOBINMODE}]
109#
110#
111# NLSDIR Base path for National Language Support files
112# installation. [${SHAREDIR}/nls]
113#
114# NLSOWN National Language Support files owner. [${SHAREOWN}]
115#
116# NLSGRP National Language Support files group. [${SHAREGRP}]
117#
118# NLSMODE National Language Support files mode. [${NOBINMODE}]
119#
120# INCLUDEDIR Base path for standard C include files [/usr/include]
121
122.if !target(__<bsd.own.mk>__)
123__<bsd.own.mk>__:
124
125.if !defined(_WITHOUT_SRCCONF)
126SRCCONF?= /etc/src.conf
127.if exists(${SRCCONF}) || ${SRCCONF} != "/etc/src.conf"
128.include "${SRCCONF}"
129.endif
130.endif
131
132# Binaries
133BINOWN?= root
134BINGRP?= wheel
135BINMODE?= 555
136NOBINMODE?= 444
137
138.if defined(MODULES_WITH_WORLD)
139KMODDIR?= /boot/modules
140.else
141KMODDIR?= /boot/kernel
142.endif
143KMODOWN?= ${BINOWN}
144KMODGRP?= ${BINGRP}
145KMODMODE?= ${BINMODE}
146
147LIBDIR?= /usr/lib
148LIBCOMPATDIR?= /usr/lib/compat
149LIBPRIVATEDIR?= /usr/lib/private
150LIBDATADIR?= /usr/libdata
151LIBEXECDIR?= /usr/libexec
152LINTLIBDIR?= /usr/libdata/lint
153SHLIBDIR?= ${LIBDIR}
154LIBOWN?= ${BINOWN}
155LIBGRP?= ${BINGRP}
156LIBMODE?= ${NOBINMODE}
157
158DEBUGDIR?= /usr/lib/debug
159DEBUGMODE?= ${NOBINMODE}
160
161
162# Share files
163SHAREDIR?= /usr/share
164SHAREOWN?= root
165SHAREGRP?= wheel
166SHAREMODE?= ${NOBINMODE}
167
168CONFDIR?= /etc
169CONFOWN?= root
170CONFGRP?= wheel
171CONFMODE?= 644
172
173MANDIR?= ${SHAREDIR}/man/man
174MANOWN?= ${SHAREOWN}
175MANGRP?= ${SHAREGRP}
176MANMODE?= ${NOBINMODE}
177
178DOCDIR?= ${SHAREDIR}/doc
179DOCOWN?= ${SHAREOWN}
180DOCGRP?= ${SHAREGRP}
181DOCMODE?= ${NOBINMODE}
182
183INFODIR?= ${SHAREDIR}/info
184INFOOWN?= ${SHAREOWN}
185INFOGRP?= ${SHAREGRP}
186INFOMODE?= ${NOBINMODE}
187
188NLSDIR?= ${SHAREDIR}/nls
189NLSOWN?= ${SHAREOWN}
190NLSGRP?= ${SHAREGRP}
191NLSMODE?= ${NOBINMODE}
192
193INCLUDEDIR?= /usr/include
194
195#
196# install(1) parameters.
197#
198HRDLINK?= -l h
199SYMLINK?= -l s
200
201INSTALL_LINK?= ${INSTALL} ${HRDLINK}
202INSTALL_SYMLINK?= ${INSTALL} ${SYMLINK}
203
204# Common variables
205.if !defined(DEBUG_FLAGS)
206STRIP?= -s
207.endif
208
209COMPRESS_CMD?= gzip -cn
210COMPRESS_EXT?= .gz
211
212.if !defined(_WITHOUT_SRCCONF)
213#
214# Define MK_* variables (which are either "yes" or "no") for users
215# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
216# make(1) environment.
217# These should be tested with `== "no"' or `!= "no"' in makefiles.
218# The NO_* variables should only be set by makefiles.
219#
220
221#
222# Supported NO_* options (if defined, MK_* will be forced to "no",
223# regardless of user's setting).
224#
225.for var in \
226 CTF \
227 DEBUG_FILES \
228 INSTALLLIB \
229 MAN \
230 PROFILE
231.if defined(NO_${var})
232.if defined(WITH_${var})
233.undef WITH_${var}
234.endif
235WITHOUT_${var}=
236.endif
237.endfor
238
239#
240# Older-style variables that enabled behaviour when set.
241#
242.if defined(YES_HESIOD)
243WITH_HESIOD=
244.endif
245
246__DEFAULT_YES_OPTIONS = \
247 ACCT \
248 ACPI \
249 AMD \
250 APM \
251 ARM_EABI \
252 ASSERT_DEBUG \
253 AT \
254 ATF \
255 ATM \
256 AUDIT \
257 AUTHPF \
258 BIND \
259 BIND_DNSSEC \
260 BIND_ETC \
261 BIND_LIBS_LWRES \
262 BIND_MTREE \
263 BIND_NAMED \
264 BIND_UTILS \
265 BINUTILS \
266 BLUETOOTH \
267 BMAKE \
268 BOOT \
269 BSD_CPIO \
270 BSNMP \
271 BZIP2 \
272 CALENDAR \
273 CAPSICUM \
274 CDDL \
275 CPP \
276 CROSS_COMPILER \
277 CRYPT \
278 CTM \
279 CXX \
280 DICT \
281 DYNAMICROOT \
282 ED_CRYPTO \
283 EXAMPLES \
284 FLOPPY \
285 FORMAT_EXTENSIONS \
286 FORTH \
287 FP_LIBC \
288 FREEBSD_UPDATE \
289 GAMES \
290 GCOV \
291 GDB \
292 GNU \
293 GPIB \
294 GPIO \
295 GROFF \
296 HTML \
297 ICONV \
298 INET \
299 INET6 \
300 INFO \
301 INSTALLLIB \
302 IPFILTER \
303 IPFW \
304 IPX \
305 JAIL \
306 KDUMP \
307 KERBEROS \
308 KERNEL_SYMBOLS \
309 KVM \
310 LDNS \
311 LEGACY_CONSOLE \
312 LIB32 \
313 LIBPTHREAD \
314 LIBTHR \
315 LOCALES \
316 LOCATE \
317 LPR \
318 LS_COLORS \
319 MAIL \
320 MAILWRAPPER \
321 MAKE \
322 MAN \
323 NDIS \
324 NETCAT \
325 NETGRAPH \
326 NIS \
327 NLS \
328 NLS_CATALOGS \
329 NS_CACHING \
330 NTP \
331 OPENSSH \
332 OPENSSL \
333 PAM \
334 PC_SYSINSTALL \
335 PF \
336 PKGBOOTSTRAP \
337 PMC \
338 PORTSNAP \
339 PPP \
340 PROFILE \
341 QUOTAS \
342 RCMDS \
343 RCS \
344 RESCUE \
345 ROUTED \
346 SENDMAIL \
347 SETUID_LOGIN \
348 SHAREDOCS \
349 SOURCELESS \
350 SOURCELESS_HOST \
351 SOURCELESS_UCODE \
352 SSP \
353 SVNLITE \
354 SYMVER \
355 SYSCONS \
356 SYSINSTALL \
357 TCSH \
358 TELNET \
359 TEXTPROC \
360 TOOLCHAIN \
361 UNBOUND \
361 USB \
362 UTMPX \
363 WIRELESS \
364 WPA_SUPPLICANT_EAPOL \
365 ZFS \
366 ZONEINFO
367
368__DEFAULT_NO_OPTIONS = \
369 BIND_IDN \
370 BIND_LARGE_FILE \
371 BIND_LIBS \
372 BIND_SIGCHASE \
373 BIND_XML \
374 BSD_GREP \
375 CLANG_EXTRAS \
376 CTF \
377 DEBUG_FILES \
378 GPL_DTC \
379 HESIOD \
380 LIBICONV_COMPAT \
381 INSTALL_AS_USER \
382 LDNS_UTILS \
383 NMTREE \
384 NAND \
385 OFED \
386 OPENSSH_NONE_CIPHER \
387 PKGTOOLS \
388 SHARED_TOOLCHAIN \
389 SVN \
390 USB_GADGET_EXAMPLES
391
392#
393# Default behaviour of some options depends on the architecture. Unfortunately
394# this means that we have to test TARGET_ARCH (the buildworld case) as well
395# as MACHINE_ARCH (the non-buildworld case). Normally TARGET_ARCH is not
396# used at all in bsd.*.mk, but we have to make an exception here if we want
397# to allow defaults for some things like clang and fdt to vary by target
398# architecture.
399#
400.if defined(TARGET_ARCH)
401__T=${TARGET_ARCH}
402.else
403__T=${MACHINE_ARCH}
404.endif
405.if defined(TARGET)
406__TT=${TARGET}
407.else
408__TT=${MACHINE}
409.endif
410# Clang is only for x86, powerpc and little-endian arm right now, by default.
411.if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*}
412__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL
413.elif ${__T} == "arm" || ${__T} == "armv6"
414__DEFAULT_YES_OPTIONS+=CLANG
415# GCC is unable to build the full clang on arm, disable it by default.
416__DEFAULT_NO_OPTIONS+=CLANG_FULL
417.else
418__DEFAULT_NO_OPTIONS+=CLANG CLANG_FULL
419.endif
420# Clang the default system compiler only on little-endian arm and x86.
421.if ${__T} == "amd64" || ${__T} == "arm" || ${__T} == "armv6" || \
422 ${__T} == "i386"
423__DEFAULT_YES_OPTIONS+=CLANG_IS_CC
424# The pc98 bootloader requires gcc to build and so we must leave gcc enabled
425# for pc98 for now.
426.if ${__TT} == "pc98"
427__DEFAULT_NO_OPTIONS+=GNUCXX
428__DEFAULT_YES_OPTIONS+=GCC
429.else
430__DEFAULT_NO_OPTIONS+=GCC GNUCXX
431.endif
432# The libc++ headers use c++11 extensions. These are normally silenced because
433# they are treated as system headers, but we explicitly disable that warning
434# suppression when building the base system to catch bugs in our headers.
435# Eventually we'll want to start building the base system C++ code as C++11,
436# but not yet.
437_COMPVERSION!= ${CC} --version
438.if ${_COMPVERSION:Mclang}
439CXXFLAGS+= -Wno-c++11-extensions
440.endif
441.else
442# If clang is not cc, then build gcc by default
443__DEFAULT_NO_OPTIONS+=CLANG_IS_CC
444__DEFAULT_YES_OPTIONS+=GCC
445# And if g++ is c++, build the rest of the GNU C++ stack
446.if defined(WITHOUT_CXX)
447__DEFAULT_NO_OPTIONS+=GNUCXX
448.else
449__DEFAULT_YES_OPTIONS+=GNUCXX
450.endif
451.endif
452# FDT is needed only for arm, mips and powerpc
453.if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*}
454__DEFAULT_YES_OPTIONS+=FDT
455.else
456__DEFAULT_NO_OPTIONS+=FDT
457.endif
458.undef __T
459
460#
461# MK_* options which default to "yes".
462#
463.for var in ${__DEFAULT_YES_OPTIONS}
464.if defined(WITH_${var}) && defined(WITHOUT_${var})
465.error WITH_${var} and WITHOUT_${var} can't both be set.
466.endif
467.if defined(MK_${var})
468.error MK_${var} can't be set by a user.
469.endif
470.if defined(WITHOUT_${var})
471MK_${var}:= no
472.else
473MK_${var}:= yes
474.endif
475.endfor
476.undef __DEFAULT_YES_OPTIONS
477
478#
479# MK_* options which default to "no".
480#
481.for var in ${__DEFAULT_NO_OPTIONS}
482.if defined(WITH_${var}) && defined(WITHOUT_${var})
483.error WITH_${var} and WITHOUT_${var} can't both be set.
484.endif
485.if defined(MK_${var})
486.error MK_${var} can't be set by a user.
487.endif
488.if defined(WITH_${var})
489MK_${var}:= yes
490.else
491MK_${var}:= no
492.endif
493.endfor
494.undef __DEFAULT_NO_OPTIONS
495
496#
497# Force some options off if their dependencies are off.
498# Order is somewhat important.
499#
500.if ${MK_LIBPTHREAD} == "no"
501MK_LIBTHR:= no
502.endif
503
504.if ${MK_LIBTHR} == "no"
505MK_BIND:= no
506.endif
507
508.if ${MK_BIND} == "no"
509MK_BIND_DNSSEC:= no
510MK_BIND_ETC:= no
511MK_BIND_LIBS:= no
512MK_BIND_LIBS_LWRES:= no
513MK_BIND_MTREE:= no
514MK_BIND_NAMED:= no
515MK_BIND_UTILS:= no
516.endif
517
518.if ${MK_ICONV} == "no"
519MK_LIBICONV_COMPAT:= no
520.endif
521
522.if ${MK_LDNS} == "no"
523MK_LDNS_UTILS:= no
362 USB \
363 UTMPX \
364 WIRELESS \
365 WPA_SUPPLICANT_EAPOL \
366 ZFS \
367 ZONEINFO
368
369__DEFAULT_NO_OPTIONS = \
370 BIND_IDN \
371 BIND_LARGE_FILE \
372 BIND_LIBS \
373 BIND_SIGCHASE \
374 BIND_XML \
375 BSD_GREP \
376 CLANG_EXTRAS \
377 CTF \
378 DEBUG_FILES \
379 GPL_DTC \
380 HESIOD \
381 LIBICONV_COMPAT \
382 INSTALL_AS_USER \
383 LDNS_UTILS \
384 NMTREE \
385 NAND \
386 OFED \
387 OPENSSH_NONE_CIPHER \
388 PKGTOOLS \
389 SHARED_TOOLCHAIN \
390 SVN \
391 USB_GADGET_EXAMPLES
392
393#
394# Default behaviour of some options depends on the architecture. Unfortunately
395# this means that we have to test TARGET_ARCH (the buildworld case) as well
396# as MACHINE_ARCH (the non-buildworld case). Normally TARGET_ARCH is not
397# used at all in bsd.*.mk, but we have to make an exception here if we want
398# to allow defaults for some things like clang and fdt to vary by target
399# architecture.
400#
401.if defined(TARGET_ARCH)
402__T=${TARGET_ARCH}
403.else
404__T=${MACHINE_ARCH}
405.endif
406.if defined(TARGET)
407__TT=${TARGET}
408.else
409__TT=${MACHINE}
410.endif
411# Clang is only for x86, powerpc and little-endian arm right now, by default.
412.if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*}
413__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL
414.elif ${__T} == "arm" || ${__T} == "armv6"
415__DEFAULT_YES_OPTIONS+=CLANG
416# GCC is unable to build the full clang on arm, disable it by default.
417__DEFAULT_NO_OPTIONS+=CLANG_FULL
418.else
419__DEFAULT_NO_OPTIONS+=CLANG CLANG_FULL
420.endif
421# Clang the default system compiler only on little-endian arm and x86.
422.if ${__T} == "amd64" || ${__T} == "arm" || ${__T} == "armv6" || \
423 ${__T} == "i386"
424__DEFAULT_YES_OPTIONS+=CLANG_IS_CC
425# The pc98 bootloader requires gcc to build and so we must leave gcc enabled
426# for pc98 for now.
427.if ${__TT} == "pc98"
428__DEFAULT_NO_OPTIONS+=GNUCXX
429__DEFAULT_YES_OPTIONS+=GCC
430.else
431__DEFAULT_NO_OPTIONS+=GCC GNUCXX
432.endif
433# The libc++ headers use c++11 extensions. These are normally silenced because
434# they are treated as system headers, but we explicitly disable that warning
435# suppression when building the base system to catch bugs in our headers.
436# Eventually we'll want to start building the base system C++ code as C++11,
437# but not yet.
438_COMPVERSION!= ${CC} --version
439.if ${_COMPVERSION:Mclang}
440CXXFLAGS+= -Wno-c++11-extensions
441.endif
442.else
443# If clang is not cc, then build gcc by default
444__DEFAULT_NO_OPTIONS+=CLANG_IS_CC
445__DEFAULT_YES_OPTIONS+=GCC
446# And if g++ is c++, build the rest of the GNU C++ stack
447.if defined(WITHOUT_CXX)
448__DEFAULT_NO_OPTIONS+=GNUCXX
449.else
450__DEFAULT_YES_OPTIONS+=GNUCXX
451.endif
452.endif
453# FDT is needed only for arm, mips and powerpc
454.if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*}
455__DEFAULT_YES_OPTIONS+=FDT
456.else
457__DEFAULT_NO_OPTIONS+=FDT
458.endif
459.undef __T
460
461#
462# MK_* options which default to "yes".
463#
464.for var in ${__DEFAULT_YES_OPTIONS}
465.if defined(WITH_${var}) && defined(WITHOUT_${var})
466.error WITH_${var} and WITHOUT_${var} can't both be set.
467.endif
468.if defined(MK_${var})
469.error MK_${var} can't be set by a user.
470.endif
471.if defined(WITHOUT_${var})
472MK_${var}:= no
473.else
474MK_${var}:= yes
475.endif
476.endfor
477.undef __DEFAULT_YES_OPTIONS
478
479#
480# MK_* options which default to "no".
481#
482.for var in ${__DEFAULT_NO_OPTIONS}
483.if defined(WITH_${var}) && defined(WITHOUT_${var})
484.error WITH_${var} and WITHOUT_${var} can't both be set.
485.endif
486.if defined(MK_${var})
487.error MK_${var} can't be set by a user.
488.endif
489.if defined(WITH_${var})
490MK_${var}:= yes
491.else
492MK_${var}:= no
493.endif
494.endfor
495.undef __DEFAULT_NO_OPTIONS
496
497#
498# Force some options off if their dependencies are off.
499# Order is somewhat important.
500#
501.if ${MK_LIBPTHREAD} == "no"
502MK_LIBTHR:= no
503.endif
504
505.if ${MK_LIBTHR} == "no"
506MK_BIND:= no
507.endif
508
509.if ${MK_BIND} == "no"
510MK_BIND_DNSSEC:= no
511MK_BIND_ETC:= no
512MK_BIND_LIBS:= no
513MK_BIND_LIBS_LWRES:= no
514MK_BIND_MTREE:= no
515MK_BIND_NAMED:= no
516MK_BIND_UTILS:= no
517.endif
518
519.if ${MK_ICONV} == "no"
520MK_LIBICONV_COMPAT:= no
521.endif
522
523.if ${MK_LDNS} == "no"
524MK_LDNS_UTILS:= no
525MK_UNBOUND:= no
524.endif
525
526.if ${MK_LDNS_UTILS} != "no"
527MK_BIND_UTILS:= no
528.endif
529
530.if ${MK_BIND_MTREE} == "no"
531MK_BIND_ETC:= no
532.endif
533
534.if ${MK_SOURCELESS} == "no"
535MK_SOURCELESS_HOST:= no
536MK_SOURCELESS_UCODE:= no
537.endif
538
539.if ${MK_CDDL} == "no"
540MK_ZFS:= no
541MK_CTF:= no
542.endif
543
544.if ${MK_CRYPT} == "no"
545MK_OPENSSL:= no
546MK_OPENSSH:= no
547MK_KERBEROS:= no
548.endif
549
550.if ${MK_CXX} == "no"
551MK_CLANG:= no
552MK_GROFF:= no
553.endif
554
555.if ${MK_MAIL} == "no"
556MK_MAILWRAPPER:= no
557MK_SENDMAIL:= no
558.endif
559
560.if ${MK_NETGRAPH} == "no"
561MK_ATM:= no
562MK_BLUETOOTH:= no
563.endif
564
565.if ${MK_OPENSSL} == "no"
566MK_OPENSSH:= no
567MK_KERBEROS:= no
568.endif
569
570.if ${MK_PF} == "no"
571MK_AUTHPF:= no
572.endif
573
574.if ${MK_TEXTPROC} == "no"
575MK_GROFF:= no
576.endif
577
578.if ${MK_TOOLCHAIN} == "no"
579MK_BINUTILS:= no
580MK_CLANG:= no
581MK_GCC:= no
582MK_GDB:= no
583.endif
584
585.if ${MK_CLANG} == "no"
586MK_CLANG_EXTRAS:= no
587MK_CLANG_FULL:= no
588MK_CLANG_IS_CC:= no
589.endif
590
591#
592# Set defaults for the MK_*_SUPPORT variables.
593#
594
595#
596# MK_*_SUPPORT options which default to "yes" unless their corresponding
597# MK_* variable is set to "no".
598#
599.for var in \
600 BZIP2 \
601 GNU \
602 INET \
603 INET6 \
604 IPX \
605 KERBEROS \
606 KVM \
607 NETGRAPH \
608 PAM \
609 WIRELESS
610.if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT)
611.error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set.
612.endif
613.if defined(MK_${var}_SUPPORT)
614.error MK_${var}_SUPPORT can't be set by a user.
615.endif
616.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
617MK_${var}_SUPPORT:= no
618.else
619MK_${var}_SUPPORT:= yes
620.endif
621.endfor
622
623#
624# MK_* options whose default value depends on another option.
625#
626.for vv in \
627 GSSAPI/KERBEROS \
628 MAN_UTILS/MAN
629.if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H})
630.error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set.
631.endif
632.if defined(MK_${vv:H})
633.error MK_${vv:H} can't be set by a user.
634.endif
635.if defined(WITH_${vv:H})
636MK_${vv:H}:= yes
637.elif defined(WITHOUT_${vv:H})
638MK_${vv:H}:= no
639.else
640MK_${vv:H}:= ${MK_${vv:T}}
641.endif
642.endfor
643
644#
645# MK_* options that default to "yes" if the compiler is a C++11 compiler.
646#
647.include <bsd.compiler.mk>
648.for var in \
649 LIBCPLUSPLUS
650.if defined(WITH_${var}) && defined(WITHOUT_${var})
651.error WITH_${var} and WITHOUT_${var} can't both be set.
652.endif
653.if defined(MK_${var})
654.error MK_${var} can't be set by a user.
655.endif
656.if ${COMPILER_FEATURES:Mc++11}
657.if defined(WITHOUT_${var})
658MK_${var}:= no
659.else
660MK_${var}:= yes
661.endif
662.else
663.if defined(WITH_${var})
664MK_${var}:= yes
665.else
666MK_${var}:= no
667.endif
668.endif
669.endfor
670
671.if ${MK_CTF} != "no"
672CTFCONVERT_CMD= ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
673.elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
674CTFCONVERT_CMD=
675.else
676CTFCONVERT_CMD= @:
677.endif
678
679.if ${MK_INSTALL_AS_USER} != "no"
680_uid!= id -u
681.if ${_uid} != 0
682.if !defined(USER)
683USER!= id -un
684.endif
685_gid!= id -gn
686.for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE
687$xOWN= ${USER}
688$xGRP= ${_gid}
689.endfor
690.endif
691.endif
692
693.endif # !_WITHOUT_SRCCONF
694
695.endif # !target(__<bsd.own.mk>__)
526.endif
527
528.if ${MK_LDNS_UTILS} != "no"
529MK_BIND_UTILS:= no
530.endif
531
532.if ${MK_BIND_MTREE} == "no"
533MK_BIND_ETC:= no
534.endif
535
536.if ${MK_SOURCELESS} == "no"
537MK_SOURCELESS_HOST:= no
538MK_SOURCELESS_UCODE:= no
539.endif
540
541.if ${MK_CDDL} == "no"
542MK_ZFS:= no
543MK_CTF:= no
544.endif
545
546.if ${MK_CRYPT} == "no"
547MK_OPENSSL:= no
548MK_OPENSSH:= no
549MK_KERBEROS:= no
550.endif
551
552.if ${MK_CXX} == "no"
553MK_CLANG:= no
554MK_GROFF:= no
555.endif
556
557.if ${MK_MAIL} == "no"
558MK_MAILWRAPPER:= no
559MK_SENDMAIL:= no
560.endif
561
562.if ${MK_NETGRAPH} == "no"
563MK_ATM:= no
564MK_BLUETOOTH:= no
565.endif
566
567.if ${MK_OPENSSL} == "no"
568MK_OPENSSH:= no
569MK_KERBEROS:= no
570.endif
571
572.if ${MK_PF} == "no"
573MK_AUTHPF:= no
574.endif
575
576.if ${MK_TEXTPROC} == "no"
577MK_GROFF:= no
578.endif
579
580.if ${MK_TOOLCHAIN} == "no"
581MK_BINUTILS:= no
582MK_CLANG:= no
583MK_GCC:= no
584MK_GDB:= no
585.endif
586
587.if ${MK_CLANG} == "no"
588MK_CLANG_EXTRAS:= no
589MK_CLANG_FULL:= no
590MK_CLANG_IS_CC:= no
591.endif
592
593#
594# Set defaults for the MK_*_SUPPORT variables.
595#
596
597#
598# MK_*_SUPPORT options which default to "yes" unless their corresponding
599# MK_* variable is set to "no".
600#
601.for var in \
602 BZIP2 \
603 GNU \
604 INET \
605 INET6 \
606 IPX \
607 KERBEROS \
608 KVM \
609 NETGRAPH \
610 PAM \
611 WIRELESS
612.if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT)
613.error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set.
614.endif
615.if defined(MK_${var}_SUPPORT)
616.error MK_${var}_SUPPORT can't be set by a user.
617.endif
618.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
619MK_${var}_SUPPORT:= no
620.else
621MK_${var}_SUPPORT:= yes
622.endif
623.endfor
624
625#
626# MK_* options whose default value depends on another option.
627#
628.for vv in \
629 GSSAPI/KERBEROS \
630 MAN_UTILS/MAN
631.if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H})
632.error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set.
633.endif
634.if defined(MK_${vv:H})
635.error MK_${vv:H} can't be set by a user.
636.endif
637.if defined(WITH_${vv:H})
638MK_${vv:H}:= yes
639.elif defined(WITHOUT_${vv:H})
640MK_${vv:H}:= no
641.else
642MK_${vv:H}:= ${MK_${vv:T}}
643.endif
644.endfor
645
646#
647# MK_* options that default to "yes" if the compiler is a C++11 compiler.
648#
649.include <bsd.compiler.mk>
650.for var in \
651 LIBCPLUSPLUS
652.if defined(WITH_${var}) && defined(WITHOUT_${var})
653.error WITH_${var} and WITHOUT_${var} can't both be set.
654.endif
655.if defined(MK_${var})
656.error MK_${var} can't be set by a user.
657.endif
658.if ${COMPILER_FEATURES:Mc++11}
659.if defined(WITHOUT_${var})
660MK_${var}:= no
661.else
662MK_${var}:= yes
663.endif
664.else
665.if defined(WITH_${var})
666MK_${var}:= yes
667.else
668MK_${var}:= no
669.endif
670.endif
671.endfor
672
673.if ${MK_CTF} != "no"
674CTFCONVERT_CMD= ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
675.elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
676CTFCONVERT_CMD=
677.else
678CTFCONVERT_CMD= @:
679.endif
680
681.if ${MK_INSTALL_AS_USER} != "no"
682_uid!= id -u
683.if ${_uid} != 0
684.if !defined(USER)
685USER!= id -un
686.endif
687_gid!= id -gn
688.for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE
689$xOWN= ${USER}
690$xGRP= ${_gid}
691.endfor
692.endif
693.endif
694
695.endif # !_WITHOUT_SRCCONF
696
697.endif # !target(__<bsd.own.mk>__)