bsd.own.mk revision 278717
1# $FreeBSD: stable/10/share/mk/bsd.own.mk 278717 2015-02-13 21:32:05Z ngie $
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    ATM \
255    AUDIT \
256    AUTHPF \
257    AUTOFS \
258    BHYVE \
259    BINUTILS \
260    BLUETOOTH \
261    BMAKE \
262    BOOT \
263    BSD_CPIO \
264    BSDINSTALL \
265    BSNMP \
266    BZIP2 \
267    CALENDAR \
268    CAPSICUM \
269    CCD \
270    CDDL \
271    CPP \
272    CROSS_COMPILER \
273    CRYPT \
274    CTM \
275    CXX \
276    DICT \
277    DYNAMICROOT \
278    ED_CRYPTO \
279    EE \
280    EXAMPLES \
281    FLOPPY \
282    FMTREE \
283    FORMAT_EXTENSIONS \
284    FORTH \
285    FP_LIBC \
286    FREEBSD_UPDATE \
287    GAMES \
288    GCOV \
289    GDB \
290    GNU \
291    GPIB \
292    GPIO \
293    GPL_DTC \
294    GROFF \
295    HAST \
296    HTML \
297    ICONV \
298    INET \
299    INET6 \
300    INFO \
301    INSTALLLIB \
302    IPFILTER \
303    IPFW \
304    IPX \
305    ISCSI \
306    JAIL \
307    KDUMP \
308    KERBEROS \
309    KERNEL_SYMBOLS \
310    KVM \
311    LDNS \
312    LDNS_UTILS \
313    LEGACY_CONSOLE \
314    LIB32 \
315    LIBPTHREAD \
316    LIBTHR \
317    LOCALES \
318    LOCATE \
319    LPR \
320    LS_COLORS \
321    MAIL \
322    MAILWRAPPER \
323    MAKE \
324    MAN \
325    NCURSESW \
326    NDIS \
327    NETCAT \
328    NETGRAPH \
329    NIS \
330    NLS \
331    NLS_CATALOGS \
332    NMTREE \
333    NS_CACHING \
334    NTP \
335    OPENSSH \
336    OPENSSL \
337    PAM \
338    PC_SYSINSTALL \
339    PF \
340    PKGBOOTSTRAP \
341    PMC \
342    PORTSNAP \
343    PPP \
344    PROFILE \
345    QUOTAS \
346    RADIUS_SUPPORT \
347    RCMDS \
348    RCS \
349    RESCUE \
350    ROUTED \
351    SENDMAIL \
352    SETUID_LOGIN \
353    SHAREDOCS \
354    SOURCELESS \
355    SOURCELESS_HOST \
356    SOURCELESS_UCODE \
357    SSP \
358    SVNLITE \
359    SYMVER \
360    SYSCONS \
361    SYSINSTALL \
362    TALK \
363    TCSH \
364    TELNET \
365    TEXTPROC \
366    TOOLCHAIN \
367    UNBOUND \
368    USB \
369    UTMPX \
370    VT \
371    WIRELESS \
372    WPA_SUPPLICANT_EAPOL \
373    ZFS \
374    ZONEINFO
375
376__DEFAULT_NO_OPTIONS = \
377    BSD_GREP \
378    CLANG_EXTRAS \
379    CTF \
380    DEBUG_FILES \
381    HESIOD \
382    INSTALL_AS_USER \
383    LLDB \
384    NAND \
385    OFED \
386    OPENSSH_NONE_CIPHER \
387    PKGTOOLS \
388    SHARED_TOOLCHAIN \
389    SVN \
390    TESTS \
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.else
434# If clang is not cc, then build gcc by default
435__DEFAULT_NO_OPTIONS+=CLANG_IS_CC
436__DEFAULT_YES_OPTIONS+=GCC
437# And if g++ is c++, build the rest of the GNU C++ stack
438.if defined(WITHOUT_CXX)
439__DEFAULT_NO_OPTIONS+=GNUCXX
440.else
441__DEFAULT_YES_OPTIONS+=GNUCXX
442.endif
443.endif
444# FDT is needed only for arm, mips and powerpc
445.if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*}
446__DEFAULT_YES_OPTIONS+=FDT
447.else
448__DEFAULT_NO_OPTIONS+=FDT
449.endif
450# HyperV is only available for x86 and amd64.
451.if ${__T} == "amd64" || ${__T} == "i386"
452__DEFAULT_YES_OPTIONS+=HYPERV
453.else
454__DEFAULT_NO_OPTIONS+=HYPERV
455.endif
456.undef __T
457
458#
459# MK_* options which default to "yes".
460#
461.for var in ${__DEFAULT_YES_OPTIONS}
462.if defined(WITH_${var}) && defined(WITHOUT_${var})
463.error WITH_${var} and WITHOUT_${var} can't both be set.
464.endif
465.if defined(MK_${var})
466.error MK_${var} can't be set by a user.
467.endif
468.if defined(WITHOUT_${var})
469MK_${var}:=	no
470.else
471MK_${var}:=	yes
472.endif
473.endfor
474.undef __DEFAULT_YES_OPTIONS
475
476#
477# MK_* options which default to "no".
478#
479.for var in ${__DEFAULT_NO_OPTIONS}
480.if defined(WITH_${var}) && defined(WITHOUT_${var})
481.error WITH_${var} and WITHOUT_${var} can't both be set.
482.endif
483.if defined(MK_${var})
484.error MK_${var} can't be set by a user.
485.endif
486.if defined(WITH_${var})
487MK_${var}:=	yes
488.else
489MK_${var}:=	no
490.endif
491.endfor
492.undef __DEFAULT_NO_OPTIONS
493
494#
495# Force some options off if their dependencies are off.
496# Order is somewhat important.
497#
498.if ${MK_LIBPTHREAD} == "no"
499MK_LIBTHR:=	no
500.endif
501
502.if ${MK_LDNS} == "no"
503MK_LDNS_UTILS:=	no
504MK_UNBOUND:= no
505.endif
506
507.if ${MK_SOURCELESS} == "no"
508MK_SOURCELESS_HOST:=	no
509MK_SOURCELESS_UCODE:= no
510.endif
511
512.if ${MK_CDDL} == "no"
513MK_ZFS:=	no
514MK_CTF:=	no
515.endif
516
517.if ${MK_CRYPT} == "no"
518MK_OPENSSL:=	no
519MK_OPENSSH:=	no
520MK_KERBEROS:=	no
521.endif
522
523.if ${MK_CXX} == "no"
524MK_CLANG:=	no
525MK_GROFF:=	no
526.endif
527
528.if ${MK_MAIL} == "no"
529MK_MAILWRAPPER:= no
530MK_SENDMAIL:=	no
531.endif
532
533.if ${MK_NETGRAPH} == "no"
534MK_ATM:=	no
535MK_BLUETOOTH:=	no
536.endif
537
538.if ${MK_OPENSSL} == "no"
539MK_OPENSSH:=	no
540MK_KERBEROS:=	no
541.endif
542
543.if ${MK_PF} == "no"
544MK_AUTHPF:=	no
545.endif
546
547.if ${MK_TEXTPROC} == "no"
548MK_GROFF:=	no
549.endif
550
551.if ${MK_TOOLCHAIN} == "no"
552MK_BINUTILS:=	no
553MK_CLANG:=	no
554MK_GCC:=	no
555MK_GDB:=	no
556.endif
557
558.if ${MK_CLANG} == "no"
559MK_CLANG_EXTRAS:= no
560MK_CLANG_FULL:= no
561.endif
562
563.if ${MK_CLANG_IS_CC} == "no"
564MK_LLDB:= no
565.endif
566
567.if defined(NO_TESTS)
568# This should be handled above along the handling of all other NO_*  options.
569# However, the above is broken when WITH_*=yes are passed to make(1) as
570# command line arguments.  See PR bin/183762.
571#
572# Because the TESTS option is new and it will default to yes, it's likely
573# that people will pass WITHOUT_TESTS=yes to make(1) directly and get a broken
574# build.  So, just in case, it's better to explicitly handle this case here.
575#
576# TODO(jmmv): Either fix make to allow us putting this override where it
577# belongs above or fix this file to cope with the make bug.
578MK_TESTS:= no
579.endif
580
581#
582# Set defaults for the MK_*_SUPPORT variables.
583#
584
585#
586# MK_*_SUPPORT options which default to "yes" unless their corresponding
587# MK_* variable is set to "no".
588#
589.for var in \
590    BZIP2 \
591    GNU \
592    INET \
593    INET6 \
594    IPX \
595    KERBEROS \
596    KVM \
597    NETGRAPH \
598    PAM \
599    WIRELESS
600.if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT)
601.error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set.
602.endif
603.if defined(MK_${var}_SUPPORT)
604.error MK_${var}_SUPPORT can't be set by a user.
605.endif
606.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
607MK_${var}_SUPPORT:= no
608.else
609MK_${var}_SUPPORT:= yes
610.endif
611.endfor
612
613#
614# MK_* options whose default value depends on another option.
615#
616.for vv in \
617    GSSAPI/KERBEROS \
618    MAN_UTILS/MAN
619.if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H})
620.error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set.
621.endif
622.if defined(MK_${vv:H})
623.error MK_${vv:H} can't be set by a user.
624.endif
625.if defined(WITH_${vv:H})
626MK_${vv:H}:=	yes
627.elif defined(WITHOUT_${vv:H})
628MK_${vv:H}:=	no
629.else
630MK_${vv:H}:=	${MK_${vv:T}}
631.endif
632.endfor
633
634#
635# MK_* options that default to "yes" if the compiler is a C++11 compiler.
636#
637.include <bsd.compiler.mk>
638.for var in \
639    LIBCPLUSPLUS
640.if defined(WITH_${var}) && defined(WITHOUT_${var})
641.error WITH_${var} and WITHOUT_${var} can't both be set.
642.endif
643.if defined(MK_${var})
644.error MK_${var} can't be set by a user.
645.endif
646.if ${COMPILER_FEATURES:Mc++11}
647.if defined(WITHOUT_${var})
648MK_${var}:=	no
649.else
650MK_${var}:=	yes
651.endif
652.else
653.if defined(WITH_${var})
654MK_${var}:=	yes
655.else
656MK_${var}:=	no
657.endif
658.endif
659.endfor
660
661.if ${MK_CTF} != "no"
662CTFCONVERT_CMD=	${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
663.elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
664CTFCONVERT_CMD=
665.else
666CTFCONVERT_CMD=	@:
667.endif 
668
669.if ${MK_INSTALL_AS_USER} != "no"
670_uid!=	id -u
671.if ${_uid} != 0
672.if !defined(USER)
673USER!=	id -un
674.endif
675_gid!=	id -gn
676.for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE
677$xOWN=	${USER}
678$xGRP=	${_gid}
679.endfor
680.endif
681.endif
682
683.endif # !_WITHOUT_SRCCONF
684
685# Pointer to the top directory into which tests are installed.  Should not be
686# overriden by Makefiles, but the user may choose to set this in src.conf(5).
687TESTSBASE?= /usr/tests
688
689.endif	# !target(__<bsd.own.mk>__)
690