]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - share/mk/bsd.own.mk
MFC r278182:
[FreeBSD/stable/10.git] / share / mk / bsd.own.mk
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)
126 SRCCONF?=       /etc/src.conf
127 .if exists(${SRCCONF}) || ${SRCCONF} != "/etc/src.conf"
128 .include "${SRCCONF}"
129 .endif
130 .endif
131
132 # Binaries
133 BINOWN?=        root
134 BINGRP?=        wheel
135 BINMODE?=       555
136 NOBINMODE?=     444
137
138 .if defined(MODULES_WITH_WORLD)
139 KMODDIR?=       /boot/modules
140 .else
141 KMODDIR?=       /boot/kernel
142 .endif
143 KMODOWN?=       ${BINOWN}
144 KMODGRP?=       ${BINGRP}
145 KMODMODE?=      ${BINMODE}
146
147 LIBDIR?=        /usr/lib
148 LIBCOMPATDIR?=  /usr/lib/compat
149 LIBPRIVATEDIR?= /usr/lib/private
150 LIBDATADIR?=    /usr/libdata
151 LIBEXECDIR?=    /usr/libexec
152 LINTLIBDIR?=    /usr/libdata/lint
153 SHLIBDIR?=      ${LIBDIR}
154 LIBOWN?=        ${BINOWN}
155 LIBGRP?=        ${BINGRP}
156 LIBMODE?=       ${NOBINMODE}
157
158 DEBUGDIR?=      /usr/lib/debug
159 DEBUGMODE?=     ${NOBINMODE}
160
161
162 # Share files
163 SHAREDIR?=      /usr/share
164 SHAREOWN?=      root
165 SHAREGRP?=      wheel
166 SHAREMODE?=     ${NOBINMODE}
167
168 CONFDIR?=       /etc
169 CONFOWN?=       root
170 CONFGRP?=       wheel
171 CONFMODE?=      644
172
173 MANDIR?=        ${SHAREDIR}/man/man
174 MANOWN?=        ${SHAREOWN}
175 MANGRP?=        ${SHAREGRP}
176 MANMODE?=       ${NOBINMODE}
177
178 DOCDIR?=        ${SHAREDIR}/doc
179 DOCOWN?=        ${SHAREOWN}
180 DOCGRP?=        ${SHAREGRP}
181 DOCMODE?=       ${NOBINMODE}
182
183 INFODIR?=       ${SHAREDIR}/info
184 INFOOWN?=       ${SHAREOWN}
185 INFOGRP?=       ${SHAREGRP}
186 INFOMODE?=      ${NOBINMODE}
187
188 NLSDIR?=        ${SHAREDIR}/nls
189 NLSOWN?=        ${SHAREOWN}
190 NLSGRP?=        ${SHAREGRP}
191 NLSMODE?=       ${NOBINMODE}
192
193 INCLUDEDIR?=    /usr/include
194
195 #
196 # install(1) parameters.
197 #
198 HRDLINK?=       -l h
199 SYMLINK?=       -l s
200
201 INSTALL_LINK?=          ${INSTALL} ${HRDLINK}
202 INSTALL_SYMLINK?=       ${INSTALL} ${SYMLINK}
203
204 # Common variables
205 .if !defined(DEBUG_FLAGS)
206 STRIP?=         -s
207 .endif
208
209 COMPRESS_CMD?=  gzip -cn
210 COMPRESS_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
235 WITHOUT_${var}=
236 .endif
237 .endfor
238
239 #
240 # Older-style variables that enabled behaviour when set.
241 #
242 .if defined(YES_HESIOD)
243 WITH_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     AUTOFS \
258     BHYVE \
259     BINUTILS \
260     BLUETOOTH \
261     BMAKE \
262     BOOT \
263     BSD_CPIO \
264     BSNMP \
265     BZIP2 \
266     CALENDAR \
267     CAPSICUM \
268     CDDL \
269     CPP \
270     CROSS_COMPILER \
271     CRYPT \
272     CTM \
273     CXX \
274     DICT \
275     DYNAMICROOT \
276     ED_CRYPTO \
277     EE \
278     EXAMPLES \
279     FLOPPY \
280     FMTREE \
281     FORMAT_EXTENSIONS \
282     FORTH \
283     FP_LIBC \
284     FREEBSD_UPDATE \
285     GAMES \
286     GCOV \
287     GDB \
288     GNU \
289     GPIB \
290     GPIO \
291     GPL_DTC \
292     GROFF \
293     HAST \
294     HTML \
295     ICONV \
296     INET \
297     INET6 \
298     INFO \
299     INSTALLLIB \
300     IPFILTER \
301     IPFW \
302     IPX \
303     ISCSI \
304     JAIL \
305     KDUMP \
306     KERBEROS \
307     KERNEL_SYMBOLS \
308     KVM \
309     LDNS \
310     LDNS_UTILS \
311     LEGACY_CONSOLE \
312     LIB32 \
313     LIBPTHREAD \
314     LIBTHR \
315     LOCALES \
316     LOCATE \
317     LPR \
318     LS_COLORS \
319     MAIL \
320     MAILWRAPPER \
321     MAKE \
322     MAN \
323     NCURSESW \
324     NDIS \
325     NETCAT \
326     NETGRAPH \
327     NIS \
328     NLS \
329     NLS_CATALOGS \
330     NMTREE \
331     NS_CACHING \
332     NTP \
333     OPENSSH \
334     OPENSSL \
335     PAM \
336     PC_SYSINSTALL \
337     PF \
338     PKGBOOTSTRAP \
339     PMC \
340     PORTSNAP \
341     PPP \
342     PROFILE \
343     QUOTAS \
344     RADIUS_SUPPORT \
345     RCMDS \
346     RCS \
347     RESCUE \
348     ROUTED \
349     SENDMAIL \
350     SETUID_LOGIN \
351     SHAREDOCS \
352     SOURCELESS \
353     SOURCELESS_HOST \
354     SOURCELESS_UCODE \
355     SSP \
356     SVNLITE \
357     SYMVER \
358     SYSCONS \
359     SYSINSTALL \
360     TCSH \
361     TELNET \
362     TEXTPROC \
363     TOOLCHAIN \
364     UNBOUND \
365     USB \
366     UTMPX \
367     VT \
368     WIRELESS \
369     WPA_SUPPLICANT_EAPOL \
370     ZFS \
371     ZONEINFO
372
373 __DEFAULT_NO_OPTIONS = \
374     BSD_GREP \
375     CLANG_EXTRAS \
376     CTF \
377     DEBUG_FILES \
378     HESIOD \
379     INSTALL_AS_USER \
380     LLDB \
381     NAND \
382     OFED \
383     OPENSSH_NONE_CIPHER \
384     PKGTOOLS \
385     SHARED_TOOLCHAIN \
386     SVN \
387     TESTS \
388     USB_GADGET_EXAMPLES
389
390 #
391 # Default behaviour of some options depends on the architecture.  Unfortunately
392 # this means that we have to test TARGET_ARCH (the buildworld case) as well
393 # as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
394 # used at all in bsd.*.mk, but we have to make an exception here if we want
395 # to allow defaults for some things like clang and fdt to vary by target
396 # architecture.
397 #
398 .if defined(TARGET_ARCH)
399 __T=${TARGET_ARCH}
400 .else
401 __T=${MACHINE_ARCH}
402 .endif
403 .if defined(TARGET)
404 __TT=${TARGET}
405 .else
406 __TT=${MACHINE}
407 .endif
408 # Clang is only for x86, powerpc and little-endian arm right now, by default.
409 .if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*}
410 __DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL
411 .elif ${__T} == "arm" || ${__T} == "armv6"
412 __DEFAULT_YES_OPTIONS+=CLANG
413 # GCC is unable to build the full clang on arm, disable it by default.
414 __DEFAULT_NO_OPTIONS+=CLANG_FULL
415 .else
416 __DEFAULT_NO_OPTIONS+=CLANG CLANG_FULL
417 .endif
418 # Clang the default system compiler only on little-endian arm and x86.
419 .if ${__T} == "amd64" || ${__T} == "arm" || ${__T} == "armv6" || \
420     ${__T} == "i386"
421 __DEFAULT_YES_OPTIONS+=CLANG_IS_CC
422 # The pc98 bootloader requires gcc to build and so we must leave gcc enabled
423 # for pc98 for now.
424 .if ${__TT} == "pc98"
425 __DEFAULT_NO_OPTIONS+=GNUCXX
426 __DEFAULT_YES_OPTIONS+=GCC
427 .else
428 __DEFAULT_NO_OPTIONS+=GCC GNUCXX
429 .endif
430 .else
431 # If clang is not cc, then build gcc by default
432 __DEFAULT_NO_OPTIONS+=CLANG_IS_CC
433 __DEFAULT_YES_OPTIONS+=GCC
434 # And if g++ is c++, build the rest of the GNU C++ stack
435 .if defined(WITHOUT_CXX)
436 __DEFAULT_NO_OPTIONS+=GNUCXX
437 .else
438 __DEFAULT_YES_OPTIONS+=GNUCXX
439 .endif
440 .endif
441 # FDT is needed only for arm, mips and powerpc
442 .if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*}
443 __DEFAULT_YES_OPTIONS+=FDT
444 .else
445 __DEFAULT_NO_OPTIONS+=FDT
446 .endif
447 # HyperV is only available for x86 and amd64.
448 .if ${__T} == "amd64" || ${__T} == "i386"
449 __DEFAULT_YES_OPTIONS+=HYPERV
450 .else
451 __DEFAULT_NO_OPTIONS+=HYPERV
452 .endif
453 .undef __T
454
455 #
456 # MK_* options which default to "yes".
457 #
458 .for var in ${__DEFAULT_YES_OPTIONS}
459 .if defined(WITH_${var}) && defined(WITHOUT_${var})
460 .error WITH_${var} and WITHOUT_${var} can't both be set.
461 .endif
462 .if defined(MK_${var})
463 .error MK_${var} can't be set by a user.
464 .endif
465 .if defined(WITHOUT_${var})
466 MK_${var}:=     no
467 .else
468 MK_${var}:=     yes
469 .endif
470 .endfor
471 .undef __DEFAULT_YES_OPTIONS
472
473 #
474 # MK_* options which default to "no".
475 #
476 .for var in ${__DEFAULT_NO_OPTIONS}
477 .if defined(WITH_${var}) && defined(WITHOUT_${var})
478 .error WITH_${var} and WITHOUT_${var} can't both be set.
479 .endif
480 .if defined(MK_${var})
481 .error MK_${var} can't be set by a user.
482 .endif
483 .if defined(WITH_${var})
484 MK_${var}:=     yes
485 .else
486 MK_${var}:=     no
487 .endif
488 .endfor
489 .undef __DEFAULT_NO_OPTIONS
490
491 #
492 # Force some options off if their dependencies are off.
493 # Order is somewhat important.
494 #
495 .if ${MK_LIBPTHREAD} == "no"
496 MK_LIBTHR:=     no
497 .endif
498
499 .if ${MK_LDNS} == "no"
500 MK_LDNS_UTILS:= no
501 MK_UNBOUND:= no
502 .endif
503
504 .if ${MK_SOURCELESS} == "no"
505 MK_SOURCELESS_HOST:=    no
506 MK_SOURCELESS_UCODE:= no
507 .endif
508
509 .if ${MK_CDDL} == "no"
510 MK_ZFS:=        no
511 MK_CTF:=        no
512 .endif
513
514 .if ${MK_CRYPT} == "no"
515 MK_OPENSSL:=    no
516 MK_OPENSSH:=    no
517 MK_KERBEROS:=   no
518 .endif
519
520 .if ${MK_CXX} == "no"
521 MK_CLANG:=      no
522 MK_GROFF:=      no
523 .endif
524
525 .if ${MK_MAIL} == "no"
526 MK_MAILWRAPPER:= no
527 MK_SENDMAIL:=   no
528 .endif
529
530 .if ${MK_NETGRAPH} == "no"
531 MK_ATM:=        no
532 MK_BLUETOOTH:=  no
533 .endif
534
535 .if ${MK_OPENSSL} == "no"
536 MK_OPENSSH:=    no
537 MK_KERBEROS:=   no
538 .endif
539
540 .if ${MK_PF} == "no"
541 MK_AUTHPF:=     no
542 .endif
543
544 .if ${MK_TEXTPROC} == "no"
545 MK_GROFF:=      no
546 .endif
547
548 .if ${MK_TOOLCHAIN} == "no"
549 MK_BINUTILS:=   no
550 MK_CLANG:=      no
551 MK_GCC:=        no
552 MK_GDB:=        no
553 .endif
554
555 .if ${MK_CLANG} == "no"
556 MK_CLANG_EXTRAS:= no
557 MK_CLANG_FULL:= no
558 .endif
559
560 .if ${MK_CLANG_IS_CC} == "no"
561 MK_LLDB:= no
562 .endif
563
564 .if defined(NO_TESTS)
565 # This should be handled above along the handling of all other NO_*  options.
566 # However, the above is broken when WITH_*=yes are passed to make(1) as
567 # command line arguments.  See PR bin/183762.
568 #
569 # Because the TESTS option is new and it will default to yes, it's likely
570 # that people will pass WITHOUT_TESTS=yes to make(1) directly and get a broken
571 # build.  So, just in case, it's better to explicitly handle this case here.
572 #
573 # TODO(jmmv): Either fix make to allow us putting this override where it
574 # belongs above or fix this file to cope with the make bug.
575 MK_TESTS:= no
576 .endif
577
578 #
579 # Set defaults for the MK_*_SUPPORT variables.
580 #
581
582 #
583 # MK_*_SUPPORT options which default to "yes" unless their corresponding
584 # MK_* variable is set to "no".
585 #
586 .for var in \
587     BZIP2 \
588     GNU \
589     INET \
590     INET6 \
591     IPX \
592     KERBEROS \
593     KVM \
594     NETGRAPH \
595     PAM \
596     WIRELESS
597 .if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT)
598 .error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set.
599 .endif
600 .if defined(MK_${var}_SUPPORT)
601 .error MK_${var}_SUPPORT can't be set by a user.
602 .endif
603 .if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
604 MK_${var}_SUPPORT:= no
605 .else
606 MK_${var}_SUPPORT:= yes
607 .endif
608 .endfor
609
610 #
611 # MK_* options whose default value depends on another option.
612 #
613 .for vv in \
614     GSSAPI/KERBEROS \
615     MAN_UTILS/MAN
616 .if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H})
617 .error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set.
618 .endif
619 .if defined(MK_${vv:H})
620 .error MK_${vv:H} can't be set by a user.
621 .endif
622 .if defined(WITH_${vv:H})
623 MK_${vv:H}:=    yes
624 .elif defined(WITHOUT_${vv:H})
625 MK_${vv:H}:=    no
626 .else
627 MK_${vv:H}:=    ${MK_${vv:T}}
628 .endif
629 .endfor
630
631 #
632 # MK_* options that default to "yes" if the compiler is a C++11 compiler.
633 #
634 .include <bsd.compiler.mk>
635 .for var in \
636     LIBCPLUSPLUS
637 .if defined(WITH_${var}) && defined(WITHOUT_${var})
638 .error WITH_${var} and WITHOUT_${var} can't both be set.
639 .endif
640 .if defined(MK_${var})
641 .error MK_${var} can't be set by a user.
642 .endif
643 .if ${COMPILER_FEATURES:Mc++11}
644 .if defined(WITHOUT_${var})
645 MK_${var}:=     no
646 .else
647 MK_${var}:=     yes
648 .endif
649 .else
650 .if defined(WITH_${var})
651 MK_${var}:=     yes
652 .else
653 MK_${var}:=     no
654 .endif
655 .endif
656 .endfor
657
658 .if ${MK_CTF} != "no"
659 CTFCONVERT_CMD= ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
660 .elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
661 CTFCONVERT_CMD=
662 .else
663 CTFCONVERT_CMD= @:
664 .endif 
665
666 .if ${MK_INSTALL_AS_USER} != "no"
667 _uid!=  id -u
668 .if ${_uid} != 0
669 .if !defined(USER)
670 USER!=  id -un
671 .endif
672 _gid!=  id -gn
673 .for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE
674 $xOWN=  ${USER}
675 $xGRP=  ${_gid}
676 .endfor
677 .endif
678 .endif
679
680 .endif # !_WITHOUT_SRCCONF
681
682 # Pointer to the top directory into which tests are installed.  Should not be
683 # overriden by Makefiles, but the user may choose to set this in src.conf(5).
684 TESTSBASE?= /usr/tests
685
686 .endif  # !target(__<bsd.own.mk>__)