bsd.own.mk revision 264424
1# $FreeBSD: head/share/mk/bsd.own.mk 264424 2014-04-13 21:52:27Z imp $
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# Older-style variables that enabled behaviour when set.
223#
224.if defined(YES_HESIOD)
225WITH_HESIOD=
226.endif
227
228__DEFAULT_YES_OPTIONS = \
229    ACCT \
230    ACPI \
231    AMD \
232    APM \
233    ARM_EABI \
234    ASSERT_DEBUG \
235    AT \
236    ATM \
237    AUDIT \
238    AUTHPF \
239    BINUTILS \
240    BLUETOOTH \
241    BMAKE \
242    BOOT \
243    BSD_CPIO \
244    BSNMP \
245    BZIP2 \
246    CALENDAR \
247    CAPSICUM \
248    CASPER \
249    CDDL \
250    CPP \
251    CROSS_COMPILER \
252    CRYPT \
253    CTM \
254    CXX \
255    DICT \
256    DMAGENT \
257    DYNAMICROOT \
258    ED_CRYPTO \
259    EXAMPLES \
260    FDT \
261    FLOPPY \
262    FMTREE \
263    FORMAT_EXTENSIONS \
264    FORTH \
265    FP_LIBC \
266    FREEBSD_UPDATE \
267    GAMES \
268    GCOV \
269    GDB \
270    GNU \
271    GNU_GREP_COMPAT \
272    GPIB \
273    GPIO \
274    GPL_DTC \
275    GROFF \
276    HTML \
277    ICONV \
278    INET \
279    INET6 \
280    INFO \
281    INSTALLLIB \
282    IPFILTER \
283    IPFW \
284    JAIL \
285    KDUMP \
286    KERBEROS \
287    KERNEL_SYMBOLS \
288    KVM \
289    LDNS \
290    LDNS_UTILS \
291    LEGACY_CONSOLE \
292    LIB32 \
293    LIBPTHREAD \
294    LIBTHR \
295    LOCALES \
296    LOCATE \
297    LPR \
298    LS_COLORS \
299    LZMA_SUPPORT \
300    MAIL \
301    MAILWRAPPER \
302    MAKE \
303    MAN \
304    NCURSESW \
305    NDIS \
306    NETCAT \
307    NETGRAPH \
308    NIS \
309    NLS \
310    NLS_CATALOGS \
311    NS_CACHING \
312    NTP \
313    OPENSSH \
314    OPENSSL \
315    PAM \
316    PC_SYSINSTALL \
317    PF \
318    PKGBOOTSTRAP \
319    PMC \
320    PORTSNAP \
321    PPP \
322    PROFILE \
323    QUOTAS \
324    RCMDS \
325    RCS \
326    RESCUE \
327    ROUTED \
328    SENDMAIL \
329    SETUID_LOGIN \
330    SHAREDOCS \
331    SOURCELESS \
332    SOURCELESS_HOST \
333    SOURCELESS_UCODE \
334    SSP \
335    SVNLITE \
336    SYMVER \
337    SYSCALL_COMPAT \
338    SYSCONS \
339    SYSINSTALL \
340    TCSH \
341    TELNET \
342    TEXTPROC \
343    TOOLCHAIN \
344    UNBOUND \
345    USB \
346    UTMPX \
347    WIRELESS \
348    WPA_SUPPLICANT_EAPOL \
349    ZFS \
350    ZONEINFO
351
352__DEFAULT_NO_OPTIONS = \
353    BSD_GREP \
354    CLANG_EXTRAS \
355    CTF \
356    DEBUG_FILES \
357    HESIOD \
358    INSTALL_AS_USER \
359    LLDB \
360    NAND \
361    OFED \
362    OPENSSH_NONE_CIPHER \
363    SHARED_TOOLCHAIN \
364    SORT_THREADS \
365    SVN \
366    TESTS \
367    USB_GADGET_EXAMPLES
368
369#
370# Default behaviour of some options depends on the architecture.  Unfortunately
371# this means that we have to test TARGET_ARCH (the buildworld case) as well
372# as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
373# used at all in bsd.*.mk, but we have to make an exception here if we want
374# to allow defaults for some things like clang to vary by target architecture.
375#
376.if defined(TARGET_ARCH)
377__T=${TARGET_ARCH}
378.else
379__T=${MACHINE_ARCH}
380.endif
381.if defined(TARGET)
382__TT=${TARGET}
383.else
384__TT=${MACHINE}
385.endif
386# Clang is only for x86, powerpc and little-endian arm right now, by default.
387.if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*}
388__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL
389.elif ${__T} == "arm" || ${__T} == "armv6" || ${__T} == "armv6hf"
390__DEFAULT_YES_OPTIONS+=CLANG
391# GCC is unable to build the full clang on arm, disable it by default.
392__DEFAULT_NO_OPTIONS+=CLANG_FULL
393.else
394__DEFAULT_NO_OPTIONS+=CLANG CLANG_FULL
395.endif
396# Clang the default system compiler only on little-endian arm and x86.
397.if ${__T} == "amd64" || ${__T} == "arm" || ${__T} == "armv6" || \
398    ${__T} == "armv6hf" || ${__T} == "i386"
399__DEFAULT_YES_OPTIONS+=CLANG_IS_CC
400__DEFAULT_NO_OPTIONS+=GNUCXX
401# The pc98 bootloader requires gcc to build and so we must leave gcc enabled
402# for pc98 for now.
403.if ${__TT} == "pc98"
404__DEFAULT_YES_OPTIONS+=GCC
405.else
406__DEFAULT_NO_OPTIONS+=GCC
407.endif
408.else
409# If clang is not cc, then build gcc by default
410__DEFAULT_NO_OPTIONS+=CLANG_IS_CC
411__DEFAULT_YES_OPTIONS+=GCC GNUCXX
412.endif
413
414#
415# MK_* options which default to "yes".
416#
417.for var in ${__DEFAULT_YES_OPTIONS}
418.if defined(WITH_${var}) && defined(WITHOUT_${var})
419.error WITH_${var} and WITHOUT_${var} can't both be set.
420.endif
421.if defined(MK_${var})
422.if defined(.MAKE.LEVEL) && ${.MAKE.LEVEL} == 0
423.error MK_${var} can't be set by a user.
424.endif
425.else
426.if defined(WITHOUT_${var})
427MK_${var}:=	no
428.else
429MK_${var}:=	yes
430.endif
431.endif
432.endfor
433.undef __DEFAULT_YES_OPTIONS
434
435#
436# MK_* options which default to "no".
437#
438.for var in ${__DEFAULT_NO_OPTIONS}
439.if defined(WITH_${var}) && defined(WITHOUT_${var})
440.error WITH_${var} and WITHOUT_${var} can't both be set.
441.endif
442.if defined(MK_${var})
443.if defined(.MAKE.LEVEL) && ${.MAKE.LEVEL} == 0
444.error MK_${var} can't be set by a user.
445.endif
446.else
447.if defined(WITH_${var})
448MK_${var}:=	yes
449.else
450MK_${var}:=	no
451.endif
452.endif
453.endfor
454.undef __DEFAULT_NO_OPTIONS
455
456
457#
458# Supported NO_* options (if defined, MK_* will be forced to "no",
459# regardless of user's setting).
460#
461.for var in \
462    CTF \
463    DEBUG_FILES \
464    INSTALLLIB \
465    MAN \
466    PROFILE
467.if defined(NO_${var})
468MK_${var}:=no
469.endif
470.endfor
471
472#
473# Force some options off if their dependencies are off.
474# Order is somewhat important.
475#
476.if ${MK_LIBPTHREAD} == "no"
477MK_LIBTHR:=	no
478.endif
479
480.if ${MK_LDNS} == "no"
481MK_LDNS_UTILS:=	no
482MK_UNBOUND:= no
483.endif
484
485.if ${MK_SOURCELESS} == "no"
486MK_SOURCELESS_HOST:=	no
487MK_SOURCELESS_UCODE:= no
488.endif
489
490.if ${MK_CDDL} == "no"
491MK_ZFS:=	no
492MK_CTF:=	no
493.endif
494
495.if ${MK_CRYPT} == "no"
496MK_OPENSSL:=	no
497MK_OPENSSH:=	no
498MK_KERBEROS:=	no
499.endif
500
501.if ${MK_CXX} == "no"
502MK_CLANG:=	no
503MK_GROFF:=	no
504.endif
505
506.if ${MK_MAIL} == "no"
507MK_MAILWRAPPER:= no
508MK_SENDMAIL:=	no
509MK_DMAGENT:=	no
510.endif
511
512.if ${MK_NETGRAPH} == "no"
513MK_ATM:=	no
514MK_BLUETOOTH:=	no
515.endif
516
517.if ${MK_OPENSSL} == "no"
518MK_OPENSSH:=	no
519MK_KERBEROS:=	no
520.endif
521
522.if ${MK_PF} == "no"
523MK_AUTHPF:=	no
524.endif
525
526.if ${MK_TEXTPROC} == "no"
527MK_GROFF:=	no
528.endif
529
530.if ${MK_TOOLCHAIN} == "no"
531MK_BINUTILS:=	no
532MK_CLANG:=	no
533MK_GCC:=	no
534MK_GDB:=	no
535.endif
536
537.if ${MK_CLANG} == "no"
538MK_CLANG_EXTRAS:= no
539MK_CLANG_FULL:= no
540.endif
541
542#
543# Set defaults for the MK_*_SUPPORT variables.
544#
545
546#
547# MK_*_SUPPORT options which default to "yes" unless their corresponding
548# MK_* variable is set to "no".
549#
550.for var in \
551    BZIP2 \
552    GNU \
553    INET \
554    INET6 \
555    KERBEROS \
556    KVM \
557    NETGRAPH \
558    PAM \
559    WIRELESS
560.if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT)
561.error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set.
562.endif
563.if defined(MK_${var}_SUPPORT)
564.error MK_${var}_SUPPORT can't be set by a user.
565.endif
566.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
567MK_${var}_SUPPORT:= no
568.else
569MK_${var}_SUPPORT:= yes
570.endif
571.endfor
572
573#
574# MK_* options whose default value depends on another option.
575#
576.for vv in \
577    GSSAPI/KERBEROS \
578    MAN_UTILS/MAN
579.if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H})
580.error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set.
581.endif
582.if defined(MK_${vv:H})
583.error MK_${vv:H} can't be set by a user.
584.endif
585.if defined(WITH_${vv:H})
586MK_${vv:H}:=	yes
587.elif defined(WITHOUT_${vv:H})
588MK_${vv:H}:=	no
589.else
590MK_${vv:H}:=	${MK_${vv:T}}
591.endif
592.endfor
593
594#
595# MK_* options that default to "yes" if the compiler is a C++11 compiler.
596#
597.include <bsd.compiler.mk>
598.for var in \
599    LIBCPLUSPLUS
600.if defined(WITH_${var}) && defined(WITHOUT_${var})
601.error WITH_${var} and WITHOUT_${var} can't both be set.
602.endif
603.if defined(MK_${var})
604.if defined(.MAKE.LEVEL) && ${.MAKE.LEVEL} == 0
605.error MK_${var} can't be set by a user.
606.endif
607.else
608.if ${COMPILER_FEATURES:Mc++11}
609.if defined(WITHOUT_${var})
610MK_${var}:=	no
611.else
612MK_${var}:=	yes
613.endif
614.else
615.if defined(WITH_${var})
616MK_${var}:=	yes
617.else
618MK_${var}:=	no
619.endif
620.endif
621.endif
622.endfor
623
624.if !${COMPILER_FEATURES:Mc++11}
625MK_LLDB:=	no
626.endif
627
628.if ${MK_CTF} != "no"
629CTFCONVERT_CMD=	${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
630.elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
631CTFCONVERT_CMD=
632.else
633CTFCONVERT_CMD=	@:
634.endif 
635
636.if ${MK_INSTALL_AS_USER} != "no"
637_uid!=	id -u
638.if ${_uid} != 0
639.if !defined(USER)
640USER!=	id -un
641.endif
642_gid!=	id -gn
643.for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE
644$xOWN=	${USER}
645$xGRP=	${_gid}
646.endfor
647.endif
648.endif
649
650.endif # !_WITHOUT_SRCCONF
651
652# Pointer to the top directory into which tests are installed.  Should not be
653# overriden by Makefiles, but the user may choose to set this in src.conf(5).
654TESTSBASE?= /usr/tests
655
656.endif	# !target(__<bsd.own.mk>__)
657