bsd.own.mk revision 246259
1# $FreeBSD: head/share/mk/bsd.own.mk 246259 2013-02-02 22:28:29Z dim $
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#
185# install(1) parameters.
186#
187HRDLINK?=	-l h
188SYMLINK?=	-l s
189
190INSTALL_LINK?=		${INSTALL} ${HRDLINK}
191INSTALL_SYMLINK?=	${INSTALL} ${SYMLINK}
192
193# Common variables
194.if !defined(DEBUG_FLAGS)
195STRIP?=		-s
196.endif
197
198COMPRESS_CMD?=	gzip -cn
199COMPRESS_EXT?=	.gz
200
201.if !defined(_WITHOUT_SRCCONF)
202#
203# Define MK_* variables (which are either "yes" or "no") for users
204# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
205# make(1) environment.
206# These should be tested with `== "no"' or `!= "no"' in makefiles.
207# The NO_* variables should only be set by makefiles.
208#
209
210#
211# Supported NO_* options (if defined, MK_* will be forced to "no",
212# regardless of user's setting).
213#
214.for var in \
215    CTF \
216    INSTALLLIB \
217    MAN \
218    PROFILE
219.if defined(NO_${var})
220.if defined(WITH_${var})
221.undef WITH_${var}
222.endif
223WITHOUT_${var}=
224.endif
225.endfor
226
227#
228# Older-style variables that enabled behaviour when set.
229#
230.if defined(YES_HESIOD)
231WITH_HESIOD=
232.endif
233.if defined(MAKE_IDEA)
234WITH_IDEA=
235.endif
236
237__DEFAULT_YES_OPTIONS = \
238    ACCT \
239    ACPI \
240    AMD \
241    APM \
242    ASSERT_DEBUG \
243    AT \
244    ATF \
245    ATM \
246    AUDIT \
247    AUTHPF \
248    BIND \
249    BIND_DNSSEC \
250    BIND_ETC \
251    BIND_LIBS_LWRES \
252    BIND_MTREE \
253    BIND_NAMED \
254    BIND_UTILS \
255    BINUTILS \
256    BLUETOOTH \
257    BOOT \
258    BSD_CPIO \
259    BSNMP \
260    BZIP2 \
261    CALENDAR \
262    CAPSICUM \
263    CDDL \
264    CPP \
265    CRYPT \
266    CTM \
267    CVS \
268    CXX \
269    DICT \
270    DYNAMICROOT \
271    ED_CRYPTO \
272    EXAMPLES \
273    FLOPPY \
274    FORTH \
275    FP_LIBC \
276    FREEBSD_UPDATE \
277    GAMES \
278    GCC \
279    GCOV \
280    GDB \
281    GNU \
282    GPIB \
283    GPIO \
284    GROFF \
285    HTML \
286    INET \
287    INET6 \
288    INFO \
289    INSTALLLIB \
290    IPFILTER \
291    IPFW \
292    IPX \
293    JAIL \
294    KDUMP \
295    KERBEROS \
296    KERNEL_SYMBOLS \
297    KVM \
298    LEGACY_CONSOLE \
299    LIB32 \
300    LIBPTHREAD \
301    LIBTHR \
302    LOCALES \
303    LOCATE \
304    LPR \
305    LS_COLORS \
306    MAIL \
307    MAILWRAPPER \
308    MAKE \
309    MAN \
310    NDIS \
311    NETCAT \
312    NETGRAPH \
313    NIS \
314    NLS \
315    NLS_CATALOGS \
316    NS_CACHING \
317    NTP \
318    OPENSSH \
319    OPENSSL \
320    PAM \
321    PC_SYSINSTALL \
322    PF \
323    PKGBOOTSTRAP \
324    PKGTOOLS \
325    PMC \
326    PORTSNAP \
327    PPP \
328    PROFILE \
329    QUOTAS \
330    RCMDS \
331    RCS \
332    RESCUE \
333    ROUTED \
334    SENDMAIL \
335    SETUID_LOGIN \
336    SHAREDOCS \
337    SOURCELESS \
338    SOURCELESS_HOST \
339    SOURCELESS_UCODE \
340    SSP \
341    SYMVER \
342    SYSCONS \
343    SYSINSTALL \
344    TCSH \
345    TELNET \
346    TEXTPROC \
347    TOOLCHAIN \
348    USB \
349    UTMPX \
350    WIRELESS \
351    WPA_SUPPLICANT_EAPOL \
352    ZFS \
353    ZONEINFO
354
355__DEFAULT_NO_OPTIONS = \
356    ARM_EABI \
357    BSD_PATCH \
358    BIND_IDN \
359    BIND_LARGE_FILE \
360    BIND_LIBS \
361    BIND_SIGCHASE \
362    BIND_XML \
363    BMAKE \
364    BSDCONFIG \
365    BSD_GREP \
366    CLANG_EXTRAS \
367    CTF \
368    GPL_DTC \
369    HESIOD \
370    ICONV \
371    IDEA \
372    INSTALL_AS_USER \
373    NMTREE \
374    NAND \
375    OFED \
376    OPENSSH_NONE_CIPHER \
377    SHARED_TOOLCHAIN
378
379#
380# Default behaviour of some options depends on the architecture.  Unfortunately
381# this means that we have to test TARGET_ARCH (the buildworld case) as well
382# as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
383# used at all in bsd.*.mk, but we have to make an exception here if we want
384# to allow defaults for some things like clang and fdt to vary by target
385# architecture.
386#
387.if defined(TARGET_ARCH)
388__T=${TARGET_ARCH}
389.else
390__T=${MACHINE_ARCH}
391.endif
392# Clang is only for x86 and powerpc right now, by default.
393.if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*}
394__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL
395.else
396__DEFAULT_NO_OPTIONS+=CLANG CLANG_FULL
397.endif
398# Clang the default system compiler only on x86.
399.if ${__T} == "amd64" || ${__T} == "i386"
400__DEFAULT_YES_OPTIONS+=CLANG_IS_CC
401.else
402__DEFAULT_NO_OPTIONS+=CLANG_IS_CC
403.endif
404# FDT is needed only for arm, mips and powerpc
405.if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*}
406__DEFAULT_YES_OPTIONS+=FDT
407.else
408__DEFAULT_NO_OPTIONS+=FDT
409.endif
410.undef __T
411
412#
413# MK_* options which default to "yes".
414#
415.for var in ${__DEFAULT_YES_OPTIONS}
416.if defined(WITH_${var}) && defined(WITHOUT_${var})
417.error WITH_${var} and WITHOUT_${var} can't both be set.
418.endif
419.if defined(MK_${var})
420.error MK_${var} can't be set by a user.
421.endif
422.if defined(WITHOUT_${var})
423MK_${var}:=	no
424.else
425MK_${var}:=	yes
426.endif
427.endfor
428.undef __DEFAULT_YES_OPTIONS
429
430#
431# MK_* options which default to "no".
432#
433.for var in ${__DEFAULT_NO_OPTIONS}
434.if defined(WITH_${var}) && defined(WITHOUT_${var})
435.error WITH_${var} and WITHOUT_${var} can't both be set.
436.endif
437.if defined(MK_${var})
438.error MK_${var} can't be set by a user.
439.endif
440.if defined(WITH_${var})
441MK_${var}:=	yes
442.else
443MK_${var}:=	no
444.endif
445.endfor
446.undef __DEFAULT_NO_OPTIONS
447
448#
449# Force some options off if their dependencies are off.
450# Order is somewhat important.
451#
452.if ${MK_LIBPTHREAD} == "no"
453MK_LIBTHR:=	no
454.endif
455
456.if ${MK_LIBTHR} == "no"
457MK_BIND:=	no
458.endif
459
460.if ${MK_BIND} == "no"
461MK_BIND_DNSSEC:= no
462MK_BIND_ETC:=	no
463MK_BIND_LIBS:=	no
464MK_BIND_LIBS_LWRES:= no
465MK_BIND_MTREE:=	no
466MK_BIND_NAMED:=	no
467MK_BIND_UTILS:=	no
468.endif
469
470.if ${MK_BIND_MTREE} == "no"
471MK_BIND_ETC:=	no
472.endif
473
474.if ${MK_SOURCELESS} == "no"
475MK_SOURCELESS_HOST:=	no
476MK_SOURCELESS_UCODE:= no
477.endif
478
479.if ${MK_CDDL} == "no"
480MK_ZFS:=	no
481MK_CTF:=	no
482.endif
483
484.if ${MK_CRYPT} == "no"
485MK_OPENSSL:=	no
486MK_OPENSSH:=	no
487MK_KERBEROS:=	no
488.endif
489
490.if ${MK_CXX} == "no"
491MK_CLANG:=	no
492MK_GROFF:=	no
493.endif
494
495.if ${MK_MAIL} == "no"
496MK_MAILWRAPPER:= no
497MK_SENDMAIL:=	no
498.endif
499
500.if ${MK_NETGRAPH} == "no"
501MK_ATM:=	no
502MK_BLUETOOTH:=	no
503.endif
504
505.if ${MK_OPENSSL} == "no"
506MK_OPENSSH:=	no
507MK_KERBEROS:=	no
508.endif
509
510.if ${MK_PF} == "no"
511MK_AUTHPF:=	no
512.endif
513
514.if ${MK_TEXTPROC} == "no"
515MK_GROFF:=	no
516.endif
517
518.if ${MK_TOOLCHAIN} == "no"
519MK_BINUTILS:=	no
520MK_CLANG:=	no
521MK_GCC:=	no
522MK_GDB:=	no
523.endif
524
525.if ${MK_CLANG} == "no"
526MK_CLANG_EXTRAS:= no
527MK_CLANG_FULL:= no
528MK_CLANG_IS_CC:= no
529.endif
530
531#
532# Set defaults for the MK_*_SUPPORT variables.
533#
534
535#
536# MK_*_SUPPORT options which default to "yes" unless their corresponding
537# MK_* variable is set to "no".
538#
539.for var in \
540    BZIP2 \
541    GNU \
542    INET \
543    INET6 \
544    IPX \
545    KERBEROS \
546    KVM \
547    NETGRAPH \
548    PAM \
549    WIRELESS
550.if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT)
551.error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set.
552.endif
553.if defined(MK_${var}_SUPPORT)
554.error MK_${var}_SUPPORT can't be set by a user.
555.endif
556.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
557MK_${var}_SUPPORT:= no
558.else
559MK_${var}_SUPPORT:= yes
560.endif
561.endfor
562
563#
564# MK_* options whose default value depends on another option.
565#
566.for vv in \
567    GSSAPI/KERBEROS \
568    MAN_UTILS/MAN
569.if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H})
570.error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set.
571.endif
572.if defined(MK_${vv:H})
573.error MK_${vv:H} can't be set by a user.
574.endif
575.if defined(WITH_${vv:H})
576MK_${vv:H}:=	yes
577.elif defined(WITHOUT_${vv:H})
578MK_${vv:H}:=	no
579.else
580MK_${vv:H}:=	${MK_${vv:T}}
581.endif
582.endfor
583
584#
585# MK_* options that default to "yes" if the compiler is a C++11 compiler.
586#
587.include <bsd.compiler.mk>
588.for var in \
589    LIBCPLUSPLUS
590.if defined(WITH_${var}) && defined(WITHOUT_${var})
591.error WITH_${var} and WITHOUT_${var} can't both be set.
592.endif
593.if defined(MK_${var})
594.error MK_${var} can't be set by a user.
595.endif
596.if ${COMPILER_FEATURES:Mc++11}
597.if defined(WITHOUT_${var})
598MK_${var}:=	no
599.else
600MK_${var}:=	yes
601.endif
602.else
603.if defined(WITH_${var})
604MK_${var}:=	yes
605.else
606MK_${var}:=	no
607.endif
608.endif
609.endfor
610
611.if ${MK_CTF} != "no"
612CTFCONVERT_CMD=	${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
613.elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
614CTFCONVERT_CMD=
615.else
616CTFCONVERT_CMD=	@:
617.endif 
618
619.if ${MK_INSTALL_AS_USER} != "no"
620_uid!=	id -u
621.if ${_uid} != 0
622.if !defined(USER)
623USER!=	id -un
624.endif
625_gid!=	id -gn
626.for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE
627$xOWN=	${USER}
628$xGRP=	${_gid}
629.endfor
630.endif
631.endif
632
633.endif # !_WITHOUT_SRCCONF
634
635.endif	# !target(__<bsd.own.mk>__)
636