bsd.own.mk revision 241513
1# $FreeBSD: head/share/mk/bsd.own.mk 241513 2012-10-13 19:29:07Z gabor $
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# LIBDATADIR	Base path for misc. utility data files. [/usr/libdata]
32#
33# LIBEXECDIR	Base path for system daemons and utilities. [/usr/libexec]
34#
35# LINTLIBDIR	Base path for lint libraries. [/usr/libdata/lint]
36#
37# SHLIBDIR	Base path for shared libraries. [${LIBDIR}]
38#
39# LIBOWN	Library owner. [${BINOWN}]
40#
41# LIBGRP	Library group. [${BINGRP}]
42#
43# LIBMODE	Library mode. [${NOBINMODE}]
44#
45#
46# KMODDIR	Base path for loadable kernel modules
47#		(see kld(4)). [/boot/kernel]
48#
49# KMODOWN	Kernel and KLD owner. [${BINOWN}]
50#
51# KMODGRP	Kernel and KLD group. [${BINGRP}]
52#
53# KMODMODE	KLD mode. [${BINMODE}]
54#
55#
56# SHAREDIR	Base path for architecture-independent ascii
57#		text files. [/usr/share]
58#
59# SHAREOWN	ASCII text file owner. [root]
60#
61# SHAREGRP	ASCII text file group. [wheel]
62#
63# SHAREMODE	ASCII text file mode. [${NOBINMODE}]
64#
65#
66# CONFDIR	Base path for configuration files. [/etc]
67#
68# CONFOWN	Configuration file owner. [root]
69#
70# CONFGRP	Configuration file group. [wheel]
71#
72# CONFMODE	Configuration file mode. [644]
73#
74#
75# DOCDIR	Base path for system documentation (e.g. PSD, USD,
76#		handbook, FAQ etc.). [${SHAREDIR}/doc]
77#
78# DOCOWN	Documentation owner. [${SHAREOWN}]
79#
80# DOCGRP	Documentation group. [${SHAREGRP}]
81#
82# DOCMODE	Documentation mode. [${NOBINMODE}]
83#
84#
85# INFODIR	Base path for GNU's hypertext system
86#		called Info (see info(1)). [${SHAREDIR}/info]
87#
88# INFOOWN	Info owner. [${SHAREOWN}]
89#
90# INFOGRP	Info group. [${SHAREGRP}]
91#
92# INFOMODE	Info mode. [${NOBINMODE}]
93#
94#
95# MANDIR	Base path for manual installation. [${SHAREDIR}/man/man]
96#
97# MANOWN	Manual owner. [${SHAREOWN}]
98#
99# MANGRP	Manual group. [${SHAREGRP}]
100#
101# MANMODE	Manual mode. [${NOBINMODE}]
102#
103#
104# NLSDIR	Base path for National Language Support files
105#		installation. [${SHAREDIR}/nls]
106#
107# NLSOWN	National Language Support files owner. [${SHAREOWN}]
108#
109# NLSGRP	National Language Support files group. [${SHAREGRP}]
110#
111# NLSMODE	National Language Support files mode. [${NOBINMODE}]
112#
113# INCLUDEDIR	Base path for standard C include files [/usr/include]
114
115.if !target(__<bsd.own.mk>__)
116__<bsd.own.mk>__:
117
118.if !defined(_WITHOUT_SRCCONF)
119SRCCONF?=	/etc/src.conf
120.if exists(${SRCCONF})
121.include "${SRCCONF}"
122.endif
123.endif
124
125# Binaries
126BINOWN?=	root
127BINGRP?=	wheel
128BINMODE?=	555
129NOBINMODE?=	444
130
131.if defined(MODULES_WITH_WORLD)
132KMODDIR?=	/boot/modules
133.else
134KMODDIR?=	/boot/kernel
135.endif
136KMODOWN?=	${BINOWN}
137KMODGRP?=	${BINGRP}
138KMODMODE?=	${BINMODE}
139
140LIBDIR?=	/usr/lib
141LIBCOMPATDIR?=	/usr/lib/compat
142LIBDATADIR?=	/usr/libdata
143LIBEXECDIR?=	/usr/libexec
144LINTLIBDIR?=	/usr/libdata/lint
145SHLIBDIR?=	${LIBDIR}
146LIBOWN?=	${BINOWN}
147LIBGRP?=	${BINGRP}
148LIBMODE?=	${NOBINMODE}
149
150
151# Share files
152SHAREDIR?=	/usr/share
153SHAREOWN?=	root
154SHAREGRP?=	wheel
155SHAREMODE?=	${NOBINMODE}
156
157CONFDIR?=	/etc
158CONFOWN?=	root
159CONFGRP?=	wheel
160CONFMODE?=	644
161
162MANDIR?=	${SHAREDIR}/man/man
163MANOWN?=	${SHAREOWN}
164MANGRP?=	${SHAREGRP}
165MANMODE?=	${NOBINMODE}
166
167DOCDIR?=	${SHAREDIR}/doc
168DOCOWN?=	${SHAREOWN}
169DOCGRP?=	${SHAREGRP}
170DOCMODE?=	${NOBINMODE}
171
172INFODIR?=	${SHAREDIR}/info
173INFOOWN?=	${SHAREOWN}
174INFOGRP?=	${SHAREGRP}
175INFOMODE?=	${NOBINMODE}
176
177NLSDIR?=	${SHAREDIR}/nls
178NLSOWN?=	${SHAREOWN}
179NLSGRP?=	${SHAREGRP}
180NLSMODE?=	${NOBINMODE}
181
182INCLUDEDIR?=	/usr/include
183
184# Common variables
185.if !defined(DEBUG_FLAGS)
186STRIP?=		-s
187.endif
188
189COMPRESS_CMD?=	gzip -cn
190COMPRESS_EXT?=	.gz
191
192.if !defined(_WITHOUT_SRCCONF)
193#
194# Define MK_* variables (which are either "yes" or "no") for users
195# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
196# make(1) environment.
197# These should be tested with `== "no"' or `!= "no"' in makefiles.
198# The NO_* variables should only be set by makefiles.
199#
200
201#
202# Supported NO_* options (if defined, MK_* will be forced to "no",
203# regardless of user's setting).
204#
205.for var in \
206    CTF \
207    INSTALLLIB \
208    MAN \
209    PROFILE
210.if defined(NO_${var})
211.if defined(WITH_${var})
212.undef WITH_${var}
213.endif
214WITHOUT_${var}=
215.endif
216.endfor
217
218#
219# Compat NO_* options (same as above, except their use is deprecated).
220#
221.if !defined(BURN_BRIDGES)
222.for var in \
223    ACPI \
224    ATM \
225    AUDIT \
226    AUTHPF \
227    BIND \
228    BIND_DNSSEC \
229    BIND_ETC \
230    BIND_LIBS_LWRES \
231    BIND_MTREE \
232    BIND_NAMED \
233    BIND_UTILS \
234    BLUETOOTH \
235    BOOT \
236    CALENDAR \
237    CPP \
238    CRYPT \
239    CVS \
240    CXX \
241    DICT \
242    DYNAMICROOT \
243    EXAMPLES \
244    FORTH \
245    FP_LIBC \
246    GAMES \
247    GCOV \
248    GDB \
249    GNU \
250    GPIB \
251    GROFF \
252    HTML \
253    INET6 \
254    INFO \
255    IPFILTER \
256    IPX \
257    KDUMP \
258    KERBEROS \
259    LIB32 \
260    LIBPTHREAD \
261    LIBTHR \
262    LOCALES \
263    LPR \
264    MAILWRAPPER \
265    NETCAT \
266    NIS \
267    NLS \
268    NLS_CATALOGS \
269    NS_CACHING \
270    OPENSSH \
271    OPENSSL \
272    PAM \
273    PF \
274    RCMDS \
275    RCS \
276    RESCUE \
277    SENDMAIL \
278    SETUID_LOGIN \
279    SHAREDOCS \
280    SYSCONS \
281    TCSH \
282    TOOLCHAIN \
283    USB \
284    WPA_SUPPLICANT_EAPOL
285.if defined(NO_${var})
286#.warning NO_${var} is deprecated in favour of WITHOUT_${var}=
287WITHOUT_${var}=
288.endif
289.endfor
290.endif # !defined(BURN_BRIDGES)
291
292#
293# Older-style variables that enabled behaviour when set.
294#
295.if defined(YES_HESIOD)
296WITH_HESIOD=
297.endif
298.if defined(MAKE_IDEA)
299WITH_IDEA=
300.endif
301
302__DEFAULT_YES_OPTIONS = \
303    ACCT \
304    ACPI \
305    AMD \
306    APM \
307    ASSERT_DEBUG \
308    AT \
309    ATM \
310    AUDIT \
311    AUTHPF \
312    BIND \
313    BIND_DNSSEC \
314    BIND_ETC \
315    BIND_LIBS_LWRES \
316    BIND_MTREE \
317    BIND_NAMED \
318    BIND_UTILS \
319    BINUTILS \
320    BLUETOOTH \
321    BOOT \
322    BSD_CPIO \
323    BSNMP \
324    SOURCELESS \
325    SOURCELESS_HOST \
326    SOURCELESS_UCODE \
327    BZIP2 \
328    CALENDAR \
329    CAPSICUM \
330    CDDL \
331    CPP \
332    CRYPT \
333    CTM \
334    CVS \
335    CXX \
336    DICT \
337    DYNAMICROOT \
338    ED_CRYPTO \
339    EXAMPLES \
340    FLOPPY \
341    FORTH \
342    FP_LIBC \
343    FREEBSD_UPDATE \
344    GAMES \
345    GCC \
346    GCOV \
347    GDB \
348    GNU \
349    GPIB \
350    GPIO \
351    GROFF \
352    HTML \
353    INET \
354    INET6 \
355    INFO \
356    INSTALLLIB \
357    IPFILTER \
358    IPFW \
359    IPX \
360    JAIL \
361    KDUMP \
362    KERBEROS \
363    KERNEL_SYMBOLS \
364    KVM \
365    LEGACY_CONSOLE \
366    LIB32 \
367    LIBPTHREAD \
368    LIBTHR \
369    LOCALES \
370    LOCATE \
371    LPR \
372    LS_COLORS \
373    MAIL \
374    MAILWRAPPER \
375    MAKE \
376    MAN \
377    NCP \
378    NDIS \
379    NETCAT \
380    NETGRAPH \
381    NIS \
382    NLS \
383    NLS_CATALOGS \
384    NS_CACHING \
385    NTP \
386    OPENSSH \
387    OPENSSL \
388    PAM \
389    PF \
390    PKGBOOTSTRAP \
391    PKGTOOLS \
392    PMC \
393    PORTSNAP \
394    PPP \
395    PROFILE \
396    QUOTAS \
397    RCMDS \
398    RCS \
399    RESCUE \
400    ROUTED \
401    SENDMAIL \
402    SETUID_LOGIN \
403    SHAREDOCS \
404    SSP \
405    SYSINSTALL \
406    SYMVER \
407    SYSCONS \
408    TCSH \
409    TELNET \
410    TEXTPROC \
411    TOOLCHAIN \
412    USB \
413    UTMPX \
414    WIRELESS \
415    WPA_SUPPLICANT_EAPOL \
416    ZFS \
417    ZONEINFO
418
419__DEFAULT_NO_OPTIONS = \
420    BMAKE \
421    BSD_GREP \
422    BIND_IDN \
423    BIND_LARGE_FILE \
424    BIND_LIBS \
425    BIND_SIGCHASE \
426    BIND_XML \
427    BSDCONFIG \
428    CLANG_EXTRAS \
429    CLANG_IS_CC \
430    CTF \
431    HESIOD \
432    ICONV \
433    IDEA \
434    INSTALL_AS_USER \
435    NAND \
436    OFED \
437    SHARED_TOOLCHAIN
438
439#
440# Default behaviour of some options depends on the architecture.  Unfortunately
441# this means that we have to test TARGET_ARCH (the buildworld case) as well
442# as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
443# used at all in bsd.*.mk, but we have to make an exception here if we want
444# to allow defaults for some things like clang and fdt to vary by target
445# architecture.
446#
447.if defined(TARGET_ARCH)
448__T=${TARGET_ARCH}
449.else
450__T=${MACHINE_ARCH}
451.endif
452# Clang is only for x86 and powerpc right now, by default.
453.if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*}
454__DEFAULT_YES_OPTIONS+=CLANG
455.else
456__DEFAULT_NO_OPTIONS+=CLANG
457.endif
458# FDT is needed only for arm, mips and powerpc
459.if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*}
460__DEFAULT_YES_OPTIONS+=FDT
461.else
462__DEFAULT_NO_OPTIONS+=FDT
463.endif
464.undef __T
465
466#
467# MK_* options which default to "yes".
468#
469.for var in ${__DEFAULT_YES_OPTIONS}
470.if defined(WITH_${var}) && defined(WITHOUT_${var})
471.error WITH_${var} and WITHOUT_${var} can't both be set.
472.endif
473.if defined(MK_${var})
474.error MK_${var} can't be set by a user.
475.endif
476.if defined(WITHOUT_${var})
477MK_${var}:=	no
478.else
479MK_${var}:=	yes
480.endif
481.endfor
482.undef __DEFAULT_YES_OPTIONS
483
484#
485# MK_* options which default to "no".
486#
487.for var in ${__DEFAULT_NO_OPTIONS}
488.if defined(WITH_${var}) && defined(WITHOUT_${var})
489.error WITH_${var} and WITHOUT_${var} can't both be set.
490.endif
491.if defined(MK_${var})
492.error MK_${var} can't be set by a user.
493.endif
494.if defined(WITH_${var})
495MK_${var}:=	yes
496.else
497MK_${var}:=	no
498.endif
499.endfor
500.undef __DEFAULT_NO_OPTIONS
501
502#
503# Force some options off if their dependencies are off.
504# Order is somewhat important.
505#
506.if ${MK_LIBPTHREAD} == "no"
507MK_LIBTHR:=	no
508.endif
509
510.if ${MK_LIBTHR} == "no"
511MK_BIND:=	no
512.endif
513
514.if ${MK_BIND} == "no"
515MK_BIND_DNSSEC:= no
516MK_BIND_ETC:=	no
517MK_BIND_LIBS:=	no
518MK_BIND_LIBS_LWRES:= no
519MK_BIND_MTREE:=	no
520MK_BIND_NAMED:=	no
521MK_BIND_UTILS:=	no
522.endif
523
524.if ${MK_BIND_MTREE} == "no"
525MK_BIND_ETC:=	no
526.endif
527
528.if ${MK_SOURCELESS} == "no"
529MK_SOURCELESS_HOST:=	no
530MK_SOURCELESS_UCODE:= no
531.endif
532
533.if ${MK_CDDL} == "no"
534MK_ZFS:=	no
535MK_CTF:=	no
536.endif
537
538.if ${MK_CLANG} == "no"
539MK_CLANG_EXTRAS:= no
540.endif
541
542.if ${MK_CRYPT} == "no"
543MK_OPENSSL:=	no
544MK_OPENSSH:=	no
545MK_KERBEROS:=	no
546.endif
547
548.if ${MK_CXX} == "no"
549MK_CLANG:=	no
550MK_GROFF:=	no
551.endif
552
553.if ${MK_IPX} == "no"
554MK_NCP:=	no
555.endif
556
557.if ${MK_MAIL} == "no"
558MK_MAILWRAPPER:= no
559MK_SENDMAIL:=	no
560.endif
561
562.if ${MK_NETGRAPH} == "no"
563MK_ATM:=	no
564MK_BLUETOOTH:=	no
565.endif
566
567.if ${MK_OPENSSL} == "no"
568MK_OPENSSH:=	no
569MK_KERBEROS:=	no
570.endif
571
572.if ${MK_PF} == "no"
573MK_AUTHPF:=	no
574.endif
575
576.if ${MK_TEXTPROC} == "no"
577MK_GROFF:=	no
578.endif
579
580.if ${MK_TOOLCHAIN} == "no"
581MK_BINUTILS:=	no
582MK_CLANG:=	no
583MK_GCC:=	no
584MK_GDB:=	no
585.endif
586
587.if ${MK_CLANG} == "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(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300
674CTFCONVERT_CMD=
675.else
676CTFCONVERT_CMD=	@:
677.endif 
678
679.if ${MK_INSTALL_AS_USER} != "no"
680_uid!=	id -un
681.if ${_uid} != 0
682_gid!=	id -gn
683.for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE
684$xOWN=	${_uid}
685$xGRP=	${_gid}
686.endfor
687.endif
688.endif
689
690.endif # !_WITHOUT_SRCCONF
691
692.endif	# !target(__<bsd.own.mk>__)
693