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