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