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