bsd.own.mk revision 255850
1# $FreeBSD: head/share/mk/bsd.own.mk 255850 2013-09-24 14:33:31Z 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_DNSSEC \
259    BIND_ETC \
260    BIND_LIBS_LWRES \
261    BIND_MTREE \
262    BIND_NAMED \
263    BIND_UTILS \
264    BINUTILS \
265    BLUETOOTH \
266    BMAKE \
267    BOOT \
268    BSD_CPIO \
269    BSNMP \
270    BZIP2 \
271    CALENDAR \
272    CAPSICUM \
273    CDDL \
274    CPP \
275    CROSS_COMPILER \
276    CRYPT \
277    CTM \
278    CXX \
279    DICT \
280    DYNAMICROOT \
281    ED_CRYPTO \
282    EXAMPLES \
283    FLOPPY \
284    FORMAT_EXTENSIONS \
285    FORTH \
286    FP_LIBC \
287    FREEBSD_UPDATE \
288    GAMES \
289    GCOV \
290    GDB \
291    GNU \
292    GPIB \
293    GPIO \
294    GROFF \
295    HTML \
296    ICONV \
297    INET \
298    INET6 \
299    INFO \
300    INSTALLLIB \
301    IPFILTER \
302    IPFW \
303    IPX \
304    JAIL \
305    KDUMP \
306    KERBEROS \
307    KERNEL_SYMBOLS \
308    KVM \
309    LDNS \
310    LDNS_UTILS \
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 \
371    BIND_IDN \
372    BIND_LARGE_FILE \
373    BIND_LIBS \
374    BIND_SIGCHASE \
375    BIND_XML \
376    BSD_GREP \
377    CLANG_EXTRAS \
378    CTF \
379    DEBUG_FILES \
380    GPL_DTC \
381    HESIOD \
382    LIBICONV_COMPAT \
383    INSTALL_AS_USER \
384    LLDB \
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
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>__)
703