Deleted Added
full compact
bsd.opts.mk (255597) bsd.opts.mk (255722)
1# $FreeBSD: head/share/mk/bsd.own.mk 255597 2013-09-15 14:51:23Z des $
1# $FreeBSD: head/share/mk/bsd.own.mk 255722 2013-09-20 01:52:02Z emaste $
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 \
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 \
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 \
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 LLDB \
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
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
385 NMTREE \
386 NAND \
387 OFED \
388 OPENSSH_NONE_CIPHER \
389 PKGTOOLS \
390 SHARED_TOOLCHAIN \
391 SVN \
392 USB_GADGET_EXAMPLES
393
394#
395# Default behaviour of some options depends on the architecture. Unfortunately
396# this means that we have to test TARGET_ARCH (the buildworld case) as well
397# as MACHINE_ARCH (the non-buildworld case). Normally TARGET_ARCH is not
398# used at all in bsd.*.mk, but we have to make an exception here if we want
399# to allow defaults for some things like clang and fdt to vary by target
400# architecture.
401#
402.if defined(TARGET_ARCH)
403__T=${TARGET_ARCH}
404.else
405__T=${MACHINE_ARCH}
406.endif
407.if defined(TARGET)
408__TT=${TARGET}
409.else
410__TT=${MACHINE}
411.endif
412# Clang is only for x86, powerpc and little-endian arm right now, by default.
413.if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*}
414__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL
415.elif ${__T} == "arm" || ${__T} == "armv6"
416__DEFAULT_YES_OPTIONS+=CLANG
417# GCC is unable to build the full clang on arm, disable it by default.
418__DEFAULT_NO_OPTIONS+=CLANG_FULL
419.else
420__DEFAULT_NO_OPTIONS+=CLANG CLANG_FULL
421.endif
422# Clang the default system compiler only on little-endian arm and x86.
423.if ${__T} == "amd64" || ${__T} == "arm" || ${__T} == "armv6" || \
424 ${__T} == "i386"
425__DEFAULT_YES_OPTIONS+=CLANG_IS_CC
426# The pc98 bootloader requires gcc to build and so we must leave gcc enabled
427# for pc98 for now.
428.if ${__TT} == "pc98"
429__DEFAULT_NO_OPTIONS+=GNUCXX
430__DEFAULT_YES_OPTIONS+=GCC
431.else
432__DEFAULT_NO_OPTIONS+=GCC GNUCXX
433.endif
434# The libc++ headers use c++11 extensions. These are normally silenced because
435# they are treated as system headers, but we explicitly disable that warning
436# suppression when building the base system to catch bugs in our headers.
437# Eventually we'll want to start building the base system C++ code as C++11,
438# but not yet.
439_COMPVERSION!= ${CC} --version
440.if ${_COMPVERSION:Mclang}
441CXXFLAGS+= -Wno-c++11-extensions
442.endif
443.else
444# If clang is not cc, then build gcc by default
445__DEFAULT_NO_OPTIONS+=CLANG_IS_CC
446__DEFAULT_YES_OPTIONS+=GCC
447# And if g++ is c++, build the rest of the GNU C++ stack
448.if defined(WITHOUT_CXX)
449__DEFAULT_NO_OPTIONS+=GNUCXX
450.else
451__DEFAULT_YES_OPTIONS+=GNUCXX
452.endif
453.endif
454# FDT is needed only for arm, mips and powerpc
455.if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*}
456__DEFAULT_YES_OPTIONS+=FDT
457.else
458__DEFAULT_NO_OPTIONS+=FDT
459.endif
460.undef __T
461
462#
463# MK_* options which default to "yes".
464#
465.for var in ${__DEFAULT_YES_OPTIONS}
466.if defined(WITH_${var}) && defined(WITHOUT_${var})
467.error WITH_${var} and WITHOUT_${var} can't both be set.
468.endif
469.if defined(MK_${var})
470.error MK_${var} can't be set by a user.
471.endif
472.if defined(WITHOUT_${var})
473MK_${var}:= no
474.else
475MK_${var}:= yes
476.endif
477.endfor
478.undef __DEFAULT_YES_OPTIONS
479
480#
481# MK_* options which default to "no".
482#
483.for var in ${__DEFAULT_NO_OPTIONS}
484.if defined(WITH_${var}) && defined(WITHOUT_${var})
485.error WITH_${var} and WITHOUT_${var} can't both be set.
486.endif
487.if defined(MK_${var})
488.error MK_${var} can't be set by a user.
489.endif
490.if defined(WITH_${var})
491MK_${var}:= yes
492.else
493MK_${var}:= no
494.endif
495.endfor
496.undef __DEFAULT_NO_OPTIONS
497
498#
499# Force some options off if their dependencies are off.
500# Order is somewhat important.
501#
502.if ${MK_LIBPTHREAD} == "no"
503MK_LIBTHR:= no
504.endif
505
506.if ${MK_LIBTHR} == "no"
507MK_BIND:= no
508.endif
509
510.if ${MK_BIND} == "no"
511MK_BIND_DNSSEC:= no
512MK_BIND_ETC:= no
513MK_BIND_LIBS:= no
514MK_BIND_LIBS_LWRES:= no
515MK_BIND_MTREE:= no
516MK_BIND_NAMED:= no
517MK_BIND_UTILS:= no
518.endif
519
520.if ${MK_ICONV} == "no"
521MK_LIBICONV_COMPAT:= no
522.endif
523
524.if ${MK_LDNS} == "no"
525MK_LDNS_UTILS:= no
526MK_UNBOUND:= no
527.endif
528
529.if ${MK_LDNS_UTILS} != "no"
530MK_BIND_UTILS:= no
531.endif
532
533.if ${MK_BIND_MTREE} == "no"
534MK_BIND_ETC:= no
535.endif
536
537.if ${MK_SOURCELESS} == "no"
538MK_SOURCELESS_HOST:= no
539MK_SOURCELESS_UCODE:= no
540.endif
541
542.if ${MK_CDDL} == "no"
543MK_ZFS:= no
544MK_CTF:= no
545.endif
546
547.if ${MK_CRYPT} == "no"
548MK_OPENSSL:= no
549MK_OPENSSH:= no
550MK_KERBEROS:= no
551.endif
552
553.if ${MK_CXX} == "no"
554MK_CLANG:= no
555MK_GROFF:= no
556.endif
557
558.if ${MK_MAIL} == "no"
559MK_MAILWRAPPER:= no
560MK_SENDMAIL:= no
561.endif
562
563.if ${MK_NETGRAPH} == "no"
564MK_ATM:= no
565MK_BLUETOOTH:= no
566.endif
567
568.if ${MK_OPENSSL} == "no"
569MK_OPENSSH:= no
570MK_KERBEROS:= no
571.endif
572
573.if ${MK_PF} == "no"
574MK_AUTHPF:= no
575.endif
576
577.if ${MK_TEXTPROC} == "no"
578MK_GROFF:= no
579.endif
580
581.if ${MK_TOOLCHAIN} == "no"
582MK_BINUTILS:= no
583MK_CLANG:= no
584MK_GCC:= no
585MK_GDB:= no
586.endif
587
588.if ${MK_CLANG} == "no"
589MK_CLANG_EXTRAS:= no
590MK_CLANG_FULL:= no
591MK_CLANG_IS_CC:= no
592.endif
593
594.if ${MK_CLANG_IS_CC} == "no"
595MK_LLDB:= no
596.endif
597
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>__)
598#
599# Set defaults for the MK_*_SUPPORT variables.
600#
601
602#
603# MK_*_SUPPORT options which default to "yes" unless their corresponding
604# MK_* variable is set to "no".
605#
606.for var in \
607 BZIP2 \
608 GNU \
609 INET \
610 INET6 \
611 IPX \
612 KERBEROS \
613 KVM \
614 NETGRAPH \
615 PAM \
616 WIRELESS
617.if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT)
618.error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set.
619.endif
620.if defined(MK_${var}_SUPPORT)
621.error MK_${var}_SUPPORT can't be set by a user.
622.endif
623.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
624MK_${var}_SUPPORT:= no
625.else
626MK_${var}_SUPPORT:= yes
627.endif
628.endfor
629
630#
631# MK_* options whose default value depends on another option.
632#
633.for vv in \
634 GSSAPI/KERBEROS \
635 MAN_UTILS/MAN
636.if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H})
637.error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set.
638.endif
639.if defined(MK_${vv:H})
640.error MK_${vv:H} can't be set by a user.
641.endif
642.if defined(WITH_${vv:H})
643MK_${vv:H}:= yes
644.elif defined(WITHOUT_${vv:H})
645MK_${vv:H}:= no
646.else
647MK_${vv:H}:= ${MK_${vv:T}}
648.endif
649.endfor
650
651#
652# MK_* options that default to "yes" if the compiler is a C++11 compiler.
653#
654.include <bsd.compiler.mk>
655.for var in \
656 LIBCPLUSPLUS
657.if defined(WITH_${var}) && defined(WITHOUT_${var})
658.error WITH_${var} and WITHOUT_${var} can't both be set.
659.endif
660.if defined(MK_${var})
661.error MK_${var} can't be set by a user.
662.endif
663.if ${COMPILER_FEATURES:Mc++11}
664.if defined(WITHOUT_${var})
665MK_${var}:= no
666.else
667MK_${var}:= yes
668.endif
669.else
670.if defined(WITH_${var})
671MK_${var}:= yes
672.else
673MK_${var}:= no
674.endif
675.endif
676.endfor
677
678.if ${MK_CTF} != "no"
679CTFCONVERT_CMD= ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
680.elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
681CTFCONVERT_CMD=
682.else
683CTFCONVERT_CMD= @:
684.endif
685
686.if ${MK_INSTALL_AS_USER} != "no"
687_uid!= id -u
688.if ${_uid} != 0
689.if !defined(USER)
690USER!= id -un
691.endif
692_gid!= id -gn
693.for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE
694$xOWN= ${USER}
695$xGRP= ${_gid}
696.endfor
697.endif
698.endif
699
700.endif # !_WITHOUT_SRCCONF
701
702.endif # !target(__<bsd.own.mk>__)