bsd.own.mk revision 245752
1# $FreeBSD: head/share/mk/bsd.own.mk 245752 2013-01-21 22:40:39Z brooks $
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    BIND_IDN \
358    BIND_LARGE_FILE \
359    BIND_LIBS \
360    BIND_SIGCHASE \
361    BIND_XML \
362    BMAKE \
363    BSDCONFIG \
364    BSD_GREP \
365    CLANG_EXTRAS \
366    CTF \
367    HESIOD \
368    ICONV \
369    IDEA \
370    INSTALL_AS_USER \
371    NMTREE \
372    NAND \
373    OFED \
374    OPENSSH_NONE_CIPHER \
375    SHARED_TOOLCHAIN
376
377#
378# Default behaviour of some options depends on the architecture.  Unfortunately
379# this means that we have to test TARGET_ARCH (the buildworld case) as well
380# as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
381# used at all in bsd.*.mk, but we have to make an exception here if we want
382# to allow defaults for some things like clang and fdt to vary by target
383# architecture.
384#
385.if defined(TARGET_ARCH)
386__T=${TARGET_ARCH}
387.else
388__T=${MACHINE_ARCH}
389.endif
390# Clang is only for x86 and powerpc right now, by default.
391.if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*}
392__DEFAULT_YES_OPTIONS+=CLANG
393.else
394__DEFAULT_NO_OPTIONS+=CLANG
395.endif
396# Clang the default system compiler only on x86.
397.if ${__T} == "amd64" || ${__T} == "i386"
398__DEFAULT_YES_OPTIONS+=CLANG_IS_CC
399.else
400__DEFAULT_NO_OPTIONS+=CLANG_IS_CC
401.endif
402# FDT is needed only for arm, mips and powerpc
403.if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*}
404__DEFAULT_YES_OPTIONS+=FDT
405.else
406__DEFAULT_NO_OPTIONS+=FDT
407.endif
408.undef __T
409
410#
411# MK_* options which default to "yes".
412#
413.for var in ${__DEFAULT_YES_OPTIONS}
414.if defined(WITH_${var}) && defined(WITHOUT_${var})
415.error WITH_${var} and WITHOUT_${var} can't both be set.
416.endif
417.if defined(MK_${var})
418.error MK_${var} can't be set by a user.
419.endif
420.if defined(WITHOUT_${var})
421MK_${var}:=	no
422.else
423MK_${var}:=	yes
424.endif
425.endfor
426.undef __DEFAULT_YES_OPTIONS
427
428#
429# MK_* options which default to "no".
430#
431.for var in ${__DEFAULT_NO_OPTIONS}
432.if defined(WITH_${var}) && defined(WITHOUT_${var})
433.error WITH_${var} and WITHOUT_${var} can't both be set.
434.endif
435.if defined(MK_${var})
436.error MK_${var} can't be set by a user.
437.endif
438.if defined(WITH_${var})
439MK_${var}:=	yes
440.else
441MK_${var}:=	no
442.endif
443.endfor
444.undef __DEFAULT_NO_OPTIONS
445
446#
447# Force some options off if their dependencies are off.
448# Order is somewhat important.
449#
450.if ${MK_LIBPTHREAD} == "no"
451MK_LIBTHR:=	no
452.endif
453
454.if ${MK_LIBTHR} == "no"
455MK_BIND:=	no
456.endif
457
458.if ${MK_BIND} == "no"
459MK_BIND_DNSSEC:= no
460MK_BIND_ETC:=	no
461MK_BIND_LIBS:=	no
462MK_BIND_LIBS_LWRES:= no
463MK_BIND_MTREE:=	no
464MK_BIND_NAMED:=	no
465MK_BIND_UTILS:=	no
466.endif
467
468.if ${MK_BIND_MTREE} == "no"
469MK_BIND_ETC:=	no
470.endif
471
472.if ${MK_SOURCELESS} == "no"
473MK_SOURCELESS_HOST:=	no
474MK_SOURCELESS_UCODE:= no
475.endif
476
477.if ${MK_CDDL} == "no"
478MK_ZFS:=	no
479MK_CTF:=	no
480.endif
481
482.if ${MK_CLANG} == "no"
483MK_CLANG_EXTRAS:= no
484.endif
485
486.if ${MK_CRYPT} == "no"
487MK_OPENSSL:=	no
488MK_OPENSSH:=	no
489MK_KERBEROS:=	no
490.endif
491
492.if ${MK_CXX} == "no"
493MK_CLANG:=	no
494MK_GROFF:=	no
495.endif
496
497.if ${MK_MAIL} == "no"
498MK_MAILWRAPPER:= no
499MK_SENDMAIL:=	no
500.endif
501
502.if ${MK_NETGRAPH} == "no"
503MK_ATM:=	no
504MK_BLUETOOTH:=	no
505.endif
506
507.if ${MK_OPENSSL} == "no"
508MK_OPENSSH:=	no
509MK_KERBEROS:=	no
510.endif
511
512.if ${MK_PF} == "no"
513MK_AUTHPF:=	no
514.endif
515
516.if ${MK_TEXTPROC} == "no"
517MK_GROFF:=	no
518.endif
519
520.if ${MK_TOOLCHAIN} == "no"
521MK_BINUTILS:=	no
522MK_CLANG:=	no
523MK_GCC:=	no
524MK_GDB:=	no
525.endif
526
527.if ${MK_CLANG} == "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