xref: /freebsd/share/mk/bsd.own.mk (revision a9e8641da961bcf3d24afc85fd657f2083a872a2)
1# $FreeBSD$
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})
232.if defined(WITH_${var})
233.undef WITH_${var}
234.endif
235WITHOUT_${var}=
236.endif
237.endfor
238
239#
240# Older-style variables that enabled behaviour when set.
241#
242.if defined(YES_HESIOD)
243WITH_HESIOD=
244.endif
245
246__DEFAULT_YES_OPTIONS = \
247    ACCT \
248    ACPI \
249    AMD \
250    APM \
251    ARM_EABI \
252    ASSERT_DEBUG \
253    AT \
254    ATM \
255    AUDIT \
256    AUTHPF \
257    BINUTILS \
258    BLUETOOTH \
259    BMAKE \
260    BOOT \
261    BSD_CPIO \
262    BSNMP \
263    BZIP2 \
264    CALENDAR \
265    CAPSICUM \
266    CASPER \
267    CDDL \
268    CPP \
269    CROSS_COMPILER \
270    CRYPT \
271    CTM \
272    CXX \
273    DICT \
274    DMA \
275    DYNAMICROOT \
276    ED_CRYPTO \
277    EXAMPLES \
278    FLOPPY \
279    FMTREE \
280    FORMAT_EXTENSIONS \
281    FORTH \
282    FP_LIBC \
283    FREEBSD_UPDATE \
284    GAMES \
285    GCOV \
286    GDB \
287    GNU \
288    GPIB \
289    GPIO \
290    GROFF \
291    HTML \
292    ICONV \
293    INET \
294    INET6 \
295    INFO \
296    INSTALLLIB \
297    IPFILTER \
298    IPFW \
299    IPX \
300    JAIL \
301    KDUMP \
302    KERBEROS \
303    KERNEL_SYMBOLS \
304    KVM \
305    LDNS \
306    LDNS_UTILS \
307    LEGACY_CONSOLE \
308    LIB32 \
309    LIBPTHREAD \
310    LIBTHR \
311    LOCALES \
312    LOCATE \
313    LPR \
314    LS_COLORS \
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    GPL_DTC \
372    HESIOD \
373    INSTALL_AS_USER \
374    LLDB \
375    NAND \
376    OFED \
377    OPENSSH_NONE_CIPHER \
378    SHARED_TOOLCHAIN \
379    SVN \
380    TESTS \
381    USB_GADGET_EXAMPLES
382
383#
384# Default behaviour of some options depends on the architecture.  Unfortunately
385# this means that we have to test TARGET_ARCH (the buildworld case) as well
386# as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
387# used at all in bsd.*.mk, but we have to make an exception here if we want
388# to allow defaults for some things like clang and fdt to vary by target
389# architecture.
390#
391.if defined(TARGET_ARCH)
392__T=${TARGET_ARCH}
393.else
394__T=${MACHINE_ARCH}
395.endif
396.if defined(TARGET)
397__TT=${TARGET}
398.else
399__TT=${MACHINE}
400.endif
401# Clang is only for x86, powerpc and little-endian arm right now, by default.
402.if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*}
403__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL
404.elif ${__T} == "arm" || ${__T} == "armv6"
405__DEFAULT_YES_OPTIONS+=CLANG
406# GCC is unable to build the full clang on arm, disable it by default.
407__DEFAULT_NO_OPTIONS+=CLANG_FULL
408.else
409__DEFAULT_NO_OPTIONS+=CLANG CLANG_FULL
410.endif
411# Clang the default system compiler only on little-endian arm and x86.
412.if ${__T} == "amd64" || ${__T} == "arm" || ${__T} == "armv6" || \
413    ${__T} == "i386"
414__DEFAULT_YES_OPTIONS+=CLANG_IS_CC
415# The pc98 bootloader requires gcc to build and so we must leave gcc enabled
416# for pc98 for now.
417.if ${__TT} == "pc98"
418__DEFAULT_NO_OPTIONS+=GNUCXX
419__DEFAULT_YES_OPTIONS+=GCC
420.else
421__DEFAULT_NO_OPTIONS+=GCC GNUCXX
422.endif
423# The libc++ headers use c++11 extensions.  These are normally silenced because
424# they are treated as system headers, but we explicitly disable that warning
425# suppression when building the base system to catch bugs in our headers.
426# Eventually we'll want to start building the base system C++ code as C++11,
427# but not yet.
428_COMPVERSION!= ${CC} --version
429.if ${_COMPVERSION:Mclang}
430CXXFLAGS+=	-Wno-c++11-extensions
431.endif
432.else
433# If clang is not cc, then build gcc by default
434__DEFAULT_NO_OPTIONS+=CLANG_IS_CC
435__DEFAULT_YES_OPTIONS+=GCC
436# And if g++ is c++, build the rest of the GNU C++ stack
437.if defined(WITHOUT_CXX)
438__DEFAULT_NO_OPTIONS+=GNUCXX
439.else
440__DEFAULT_YES_OPTIONS+=GNUCXX
441.endif
442.endif
443# FDT is needed only for arm, mips and powerpc
444.if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*}
445__DEFAULT_YES_OPTIONS+=FDT
446.else
447__DEFAULT_NO_OPTIONS+=FDT
448.endif
449.undef __T
450
451#
452# MK_* options which default to "yes".
453#
454.for var in ${__DEFAULT_YES_OPTIONS}
455.if defined(WITH_${var}) && defined(WITHOUT_${var})
456.error WITH_${var} and WITHOUT_${var} can't both be set.
457.endif
458.if defined(MK_${var})
459.error MK_${var} can't be set by a user.
460.endif
461.if defined(WITHOUT_${var})
462MK_${var}:=	no
463.else
464MK_${var}:=	yes
465.endif
466.endfor
467.undef __DEFAULT_YES_OPTIONS
468
469#
470# MK_* options which default to "no".
471#
472.for var in ${__DEFAULT_NO_OPTIONS}
473.if defined(WITH_${var}) && defined(WITHOUT_${var})
474.error WITH_${var} and WITHOUT_${var} can't both be set.
475.endif
476.if defined(MK_${var})
477.error MK_${var} can't be set by a user.
478.endif
479.if defined(WITH_${var})
480MK_${var}:=	yes
481.else
482MK_${var}:=	no
483.endif
484.endfor
485.undef __DEFAULT_NO_OPTIONS
486
487#
488# Force some options off if their dependencies are off.
489# Order is somewhat important.
490#
491.if ${MK_LIBPTHREAD} == "no"
492MK_LIBTHR:=	no
493.endif
494
495.if ${MK_LDNS} == "no"
496MK_LDNS_UTILS:=	no
497MK_UNBOUND:= no
498.endif
499
500.if ${MK_SOURCELESS} == "no"
501MK_SOURCELESS_HOST:=	no
502MK_SOURCELESS_UCODE:= no
503.endif
504
505.if ${MK_CDDL} == "no"
506MK_ZFS:=	no
507MK_CTF:=	no
508.endif
509
510.if ${MK_CRYPT} == "no"
511MK_OPENSSL:=	no
512MK_OPENSSH:=	no
513MK_KERBEROS:=	no
514.endif
515
516.if ${MK_CXX} == "no"
517MK_CLANG:=	no
518MK_GROFF:=	no
519.endif
520
521.if ${MK_MAIL} == "no"
522MK_MAILWRAPPER:= no
523MK_SENDMAIL:=	no
524MK_DMA:=	no
525.endif
526
527.if ${MK_NETGRAPH} == "no"
528MK_ATM:=	no
529MK_BLUETOOTH:=	no
530.endif
531
532.if ${MK_OPENSSL} == "no"
533MK_OPENSSH:=	no
534MK_KERBEROS:=	no
535.endif
536
537.if ${MK_PF} == "no"
538MK_AUTHPF:=	no
539.endif
540
541.if ${MK_TEXTPROC} == "no"
542MK_GROFF:=	no
543.endif
544
545.if ${MK_TOOLCHAIN} == "no"
546MK_BINUTILS:=	no
547MK_CLANG:=	no
548MK_GCC:=	no
549MK_GDB:=	no
550.endif
551
552.if ${MK_CLANG} == "no"
553MK_CLANG_EXTRAS:= no
554MK_CLANG_FULL:= no
555.endif
556
557.if defined(NO_TESTS)
558# This should be handled above along the handling of all other NO_*  options.
559# However, the above is broken when WITH_*=yes are passed to make(1) as
560# command line arguments.  See PR bin/183762.
561#
562# Because the TESTS option is new and it will default to yes, it's likely
563# that people will pass WITHOUT_TESTS=yes to make(1) directly and get a broken
564# build.  So, just in case, it's better to explicitly handle this case here.
565#
566# TODO(jmmv): Either fix make to allow us putting this override where it
567# belongs above or fix this file to cope with the make bug.
568MK_TESTS:= no
569.endif
570
571#
572# Set defaults for the MK_*_SUPPORT variables.
573#
574
575#
576# MK_*_SUPPORT options which default to "yes" unless their corresponding
577# MK_* variable is set to "no".
578#
579.for var in \
580    BZIP2 \
581    GNU \
582    INET \
583    INET6 \
584    IPX \
585    KERBEROS \
586    KVM \
587    NETGRAPH \
588    PAM \
589    WIRELESS
590.if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT)
591.error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set.
592.endif
593.if defined(MK_${var}_SUPPORT)
594.error MK_${var}_SUPPORT can't be set by a user.
595.endif
596.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
597MK_${var}_SUPPORT:= no
598.else
599MK_${var}_SUPPORT:= yes
600.endif
601.endfor
602
603#
604# MK_* options whose default value depends on another option.
605#
606.for vv in \
607    GSSAPI/KERBEROS \
608    MAN_UTILS/MAN
609.if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H})
610.error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set.
611.endif
612.if defined(MK_${vv:H})
613.error MK_${vv:H} can't be set by a user.
614.endif
615.if defined(WITH_${vv:H})
616MK_${vv:H}:=	yes
617.elif defined(WITHOUT_${vv:H})
618MK_${vv:H}:=	no
619.else
620MK_${vv:H}:=	${MK_${vv:T}}
621.endif
622.endfor
623
624#
625# MK_* options that default to "yes" if the compiler is a C++11 compiler.
626#
627.include <bsd.compiler.mk>
628.for var in \
629    LIBCPLUSPLUS
630.if defined(WITH_${var}) && defined(WITHOUT_${var})
631.error WITH_${var} and WITHOUT_${var} can't both be set.
632.endif
633.if defined(MK_${var})
634.error MK_${var} can't be set by a user.
635.endif
636.if ${COMPILER_FEATURES:Mc++11}
637.if defined(WITHOUT_${var})
638MK_${var}:=	no
639.else
640MK_${var}:=	yes
641.endif
642.else
643.if defined(WITH_${var})
644MK_${var}:=	yes
645.else
646MK_${var}:=	no
647.endif
648.endif
649.endfor
650
651.if !${COMPILER_FEATURES:Mc++11}
652MK_LLDB:=	no
653.endif
654
655.if ${MK_CTF} != "no"
656CTFCONVERT_CMD=	${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
657.elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
658CTFCONVERT_CMD=
659.else
660CTFCONVERT_CMD=	@:
661.endif
662
663.if ${MK_INSTALL_AS_USER} != "no"
664_uid!=	id -u
665.if ${_uid} != 0
666.if !defined(USER)
667USER!=	id -un
668.endif
669_gid!=	id -gn
670.for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE
671$xOWN=	${USER}
672$xGRP=	${_gid}
673.endfor
674.endif
675.endif
676
677.endif # !_WITHOUT_SRCCONF
678
679# Pointer to the top directory into which tests are installed.  Should not be
680# overriden by Makefiles, but the user may choose to set this in src.conf(5).
681TESTSBASE?= /usr/tests
682
683.endif	# !target(__<bsd.own.mk>__)
684