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