bsd.own.mk revision 255384
1# $FreeBSD: head/share/mk/bsd.own.mk 255384 2013-09-08 09:40: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 \
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
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>__)
696