]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/bsd.own.mk
MFV r262639: ncurses 5.9 20140222 snapshot.
[FreeBSD/FreeBSD.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     CASPER \
267     CDDL \
268     CPP \
269     CROSS_COMPILER \
270     CRYPT \
271     CTM \
272     CXX \
273     DICT \
274     DMAGENT \
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     GPL_DTC \
291     GROFF \
292     HTML \
293     ICONV \
294     INET \
295     INET6 \
296     INFO \
297     INSTALLLIB \
298     IPFILTER \
299     IPFW \
300     IPX \
301     JAIL \
302     KDUMP \
303     KERBEROS \
304     KERNEL_SYMBOLS \
305     KVM \
306     LDNS \
307     LDNS_UTILS \
308     LEGACY_CONSOLE \
309     LIB32 \
310     LIBPTHREAD \
311     LIBTHR \
312     LOCALES \
313     LOCATE \
314     LPR \
315     LS_COLORS \
316     MAIL \
317     MAILWRAPPER \
318     MAKE \
319     MAN \
320     NCURSESW \
321     NDIS \
322     NETCAT \
323     NETGRAPH \
324     NIS \
325     NLS \
326     NLS_CATALOGS \
327     NS_CACHING \
328     NTP \
329     OPENSSH \
330     OPENSSL \
331     PAM \
332     PC_SYSINSTALL \
333     PF \
334     PKGBOOTSTRAP \
335     PMC \
336     PORTSNAP \
337     PPP \
338     PROFILE \
339     QUOTAS \
340     RCMDS \
341     RCS \
342     RESCUE \
343     ROUTED \
344     SENDMAIL \
345     SETUID_LOGIN \
346     SHAREDOCS \
347     SOURCELESS \
348     SOURCELESS_HOST \
349     SOURCELESS_UCODE \
350     SSP \
351     SVNLITE \
352     SYMVER \
353     SYSCONS \
354     SYSINSTALL \
355     TCSH \
356     TELNET \
357     TEXTPROC \
358     TOOLCHAIN \
359     UNBOUND \
360     USB \
361     UTMPX \
362     WIRELESS \
363     WPA_SUPPLICANT_EAPOL \
364     ZFS \
365     ZONEINFO
366
367 __DEFAULT_NO_OPTIONS = \
368     BSD_GREP \
369     CLANG_EXTRAS \
370     CTF \
371     DEBUG_FILES \
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 .else
424 # If clang is not cc, then build gcc by default
425 __DEFAULT_NO_OPTIONS+=CLANG_IS_CC
426 __DEFAULT_YES_OPTIONS+=GCC
427 # And if g++ is c++, build the rest of the GNU C++ stack
428 .if defined(WITHOUT_CXX)
429 __DEFAULT_NO_OPTIONS+=GNUCXX
430 .else
431 __DEFAULT_YES_OPTIONS+=GNUCXX
432 .endif
433 .endif
434 # FDT is needed only for arm, mips and powerpc
435 .if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*}
436 __DEFAULT_YES_OPTIONS+=FDT
437 .else
438 __DEFAULT_NO_OPTIONS+=FDT
439 .endif
440 .undef __T
441
442 #
443 # MK_* options which default to "yes".
444 #
445 .for var in ${__DEFAULT_YES_OPTIONS}
446 .if defined(WITH_${var}) && defined(WITHOUT_${var})
447 .error WITH_${var} and WITHOUT_${var} can't both be set.
448 .endif
449 .if defined(MK_${var})
450 .error MK_${var} can't be set by a user.
451 .endif
452 .if defined(WITHOUT_${var})
453 MK_${var}:=     no
454 .else
455 MK_${var}:=     yes
456 .endif
457 .endfor
458 .undef __DEFAULT_YES_OPTIONS
459
460 #
461 # MK_* options which default to "no".
462 #
463 .for var in ${__DEFAULT_NO_OPTIONS}
464 .if defined(WITH_${var}) && defined(WITHOUT_${var})
465 .error WITH_${var} and WITHOUT_${var} can't both be set.
466 .endif
467 .if defined(MK_${var})
468 .error MK_${var} can't be set by a user.
469 .endif
470 .if defined(WITH_${var})
471 MK_${var}:=     yes
472 .else
473 MK_${var}:=     no
474 .endif
475 .endfor
476 .undef __DEFAULT_NO_OPTIONS
477
478 #
479 # Force some options off if their dependencies are off.
480 # Order is somewhat important.
481 #
482 .if ${MK_LIBPTHREAD} == "no"
483 MK_LIBTHR:=     no
484 .endif
485
486 .if ${MK_LDNS} == "no"
487 MK_LDNS_UTILS:= no
488 MK_UNBOUND:= no
489 .endif
490
491 .if ${MK_SOURCELESS} == "no"
492 MK_SOURCELESS_HOST:=    no
493 MK_SOURCELESS_UCODE:= no
494 .endif
495
496 .if ${MK_CDDL} == "no"
497 MK_ZFS:=        no
498 MK_CTF:=        no
499 .endif
500
501 .if ${MK_CRYPT} == "no"
502 MK_OPENSSL:=    no
503 MK_OPENSSH:=    no
504 MK_KERBEROS:=   no
505 .endif
506
507 .if ${MK_CXX} == "no"
508 MK_CLANG:=      no
509 MK_GROFF:=      no
510 .endif
511
512 .if ${MK_MAIL} == "no"
513 MK_MAILWRAPPER:= no
514 MK_SENDMAIL:=   no
515 MK_DMAGENT:=    no
516 .endif
517
518 .if ${MK_NETGRAPH} == "no"
519 MK_ATM:=        no
520 MK_BLUETOOTH:=  no
521 .endif
522
523 .if ${MK_OPENSSL} == "no"
524 MK_OPENSSH:=    no
525 MK_KERBEROS:=   no
526 .endif
527
528 .if ${MK_PF} == "no"
529 MK_AUTHPF:=     no
530 .endif
531
532 .if ${MK_TEXTPROC} == "no"
533 MK_GROFF:=      no
534 .endif
535
536 .if ${MK_TOOLCHAIN} == "no"
537 MK_BINUTILS:=   no
538 MK_CLANG:=      no
539 MK_GCC:=        no
540 MK_GDB:=        no
541 .endif
542
543 .if ${MK_CLANG} == "no"
544 MK_CLANG_EXTRAS:= no
545 MK_CLANG_FULL:= no
546 .endif
547
548 .if defined(NO_TESTS)
549 # This should be handled above along the handling of all other NO_*  options.
550 # However, the above is broken when WITH_*=yes are passed to make(1) as
551 # command line arguments.  See PR bin/183762.
552 #
553 # Because the TESTS option is new and it will default to yes, it's likely
554 # that people will pass WITHOUT_TESTS=yes to make(1) directly and get a broken
555 # build.  So, just in case, it's better to explicitly handle this case here.
556 #
557 # TODO(jmmv): Either fix make to allow us putting this override where it
558 # belongs above or fix this file to cope with the make bug.
559 MK_TESTS:= no
560 .endif
561
562 #
563 # Set defaults for the MK_*_SUPPORT variables.
564 #
565
566 #
567 # MK_*_SUPPORT options which default to "yes" unless their corresponding
568 # MK_* variable is set to "no".
569 #
570 .for var in \
571     BZIP2 \
572     GNU \
573     INET \
574     INET6 \
575     IPX \
576     KERBEROS \
577     KVM \
578     NETGRAPH \
579     PAM \
580     WIRELESS
581 .if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT)
582 .error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set.
583 .endif
584 .if defined(MK_${var}_SUPPORT)
585 .error MK_${var}_SUPPORT can't be set by a user.
586 .endif
587 .if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
588 MK_${var}_SUPPORT:= no
589 .else
590 MK_${var}_SUPPORT:= yes
591 .endif
592 .endfor
593
594 #
595 # MK_* options whose default value depends on another option.
596 #
597 .for vv in \
598     GSSAPI/KERBEROS \
599     MAN_UTILS/MAN
600 .if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H})
601 .error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set.
602 .endif
603 .if defined(MK_${vv:H})
604 .error MK_${vv:H} can't be set by a user.
605 .endif
606 .if defined(WITH_${vv:H})
607 MK_${vv:H}:=    yes
608 .elif defined(WITHOUT_${vv:H})
609 MK_${vv:H}:=    no
610 .else
611 MK_${vv:H}:=    ${MK_${vv:T}}
612 .endif
613 .endfor
614
615 #
616 # MK_* options that default to "yes" if the compiler is a C++11 compiler.
617 #
618 .include <bsd.compiler.mk>
619 .for var in \
620     LIBCPLUSPLUS
621 .if defined(WITH_${var}) && defined(WITHOUT_${var})
622 .error WITH_${var} and WITHOUT_${var} can't both be set.
623 .endif
624 .if defined(MK_${var})
625 .error MK_${var} can't be set by a user.
626 .endif
627 .if ${COMPILER_FEATURES:Mc++11}
628 .if defined(WITHOUT_${var})
629 MK_${var}:=     no
630 .else
631 MK_${var}:=     yes
632 .endif
633 .else
634 .if defined(WITH_${var})
635 MK_${var}:=     yes
636 .else
637 MK_${var}:=     no
638 .endif
639 .endif
640 .endfor
641
642 .if !${COMPILER_FEATURES:Mc++11}
643 MK_LLDB:=       no
644 .endif
645
646 .if ${MK_CTF} != "no"
647 CTFCONVERT_CMD= ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
648 .elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
649 CTFCONVERT_CMD=
650 .else
651 CTFCONVERT_CMD= @:
652 .endif 
653
654 .if ${MK_INSTALL_AS_USER} != "no"
655 _uid!=  id -u
656 .if ${_uid} != 0
657 .if !defined(USER)
658 USER!=  id -un
659 .endif
660 _gid!=  id -gn
661 .for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE
662 $xOWN=  ${USER}
663 $xGRP=  ${_gid}
664 .endfor
665 .endif
666 .endif
667
668 .endif # !_WITHOUT_SRCCONF
669
670 # Pointer to the top directory into which tests are installed.  Should not be
671 # overriden by Makefiles, but the user may choose to set this in src.conf(5).
672 TESTSBASE?= /usr/tests
673
674 .endif  # !target(__<bsd.own.mk>__)