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