]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/bsd.own.mk
Fix a problem introduced in r231057: in bsd.own.mk, move the test for
[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 # LIBDATADIR    Base path for misc. utility data files. [/usr/libdata]
32 #
33 # LIBEXECDIR    Base path for system daemons and utilities. [/usr/libexec]
34 #
35 # LINTLIBDIR    Base path for lint libraries. [/usr/libdata/lint]
36 #
37 # SHLIBDIR      Base path for shared libraries. [${LIBDIR}]
38 #
39 # LIBOWN        Library owner. [${BINOWN}]
40 #
41 # LIBGRP        Library group. [${BINGRP}]
42 #
43 # LIBMODE       Library mode. [${NOBINMODE}]
44 #
45 #
46 # KMODDIR       Base path for loadable kernel modules
47 #               (see kld(4)). [/boot/kernel]
48 #
49 # KMODOWN       Kernel and KLD owner. [${BINOWN}]
50 #
51 # KMODGRP       Kernel and KLD group. [${BINGRP}]
52 #
53 # KMODMODE      KLD mode. [${BINMODE}]
54 #
55 #
56 # SHAREDIR      Base path for architecture-independent ascii
57 #               text files. [/usr/share]
58 #
59 # SHAREOWN      ASCII text file owner. [root]
60 #
61 # SHAREGRP      ASCII text file group. [wheel]
62 #
63 # SHAREMODE     ASCII text file mode. [${NOBINMODE}]
64 #
65 #
66 # CONFDIR       Base path for configuration files. [/etc]
67 #
68 # CONFOWN       Configuration file owner. [root]
69 #
70 # CONFGRP       Configuration file group. [wheel]
71 #
72 # CONFMODE      Configuration file mode. [644]
73 #
74 #
75 # DOCDIR        Base path for system documentation (e.g. PSD, USD,
76 #               handbook, FAQ etc.). [${SHAREDIR}/doc]
77 #
78 # DOCOWN        Documentation owner. [${SHAREOWN}]
79 #
80 # DOCGRP        Documentation group. [${SHAREGRP}]
81 #
82 # DOCMODE       Documentation mode. [${NOBINMODE}]
83 #
84 #
85 # INFODIR       Base path for GNU's hypertext system
86 #               called Info (see info(1)). [${SHAREDIR}/info]
87 #
88 # INFOOWN       Info owner. [${SHAREOWN}]
89 #
90 # INFOGRP       Info group. [${SHAREGRP}]
91 #
92 # INFOMODE      Info mode. [${NOBINMODE}]
93 #
94 #
95 # MANDIR        Base path for manual installation. [${SHAREDIR}/man/man]
96 #
97 # MANOWN        Manual owner. [${SHAREOWN}]
98 #
99 # MANGRP        Manual group. [${SHAREGRP}]
100 #
101 # MANMODE       Manual mode. [${NOBINMODE}]
102 #
103 #
104 # NLSDIR        Base path for National Language Support files
105 #               installation. [${SHAREDIR}/nls]
106 #
107 # NLSOWN        National Language Support files owner. [${SHAREOWN}]
108 #
109 # NLSGRP        National Language Support files group. [${SHAREGRP}]
110 #
111 # NLSMODE       National Language Support files mode. [${NOBINMODE}]
112 #
113 # INCLUDEDIR    Base path for standard C include files [/usr/include]
114
115 .if !target(__<bsd.own.mk>__)
116 __<bsd.own.mk>__:
117
118 .if !defined(_WITHOUT_SRCCONF)
119 SRCCONF?=       /etc/src.conf
120 .if exists(${SRCCONF})
121 .include "${SRCCONF}"
122 .endif
123 .endif
124
125 # Binaries
126 BINOWN?=        root
127 BINGRP?=        wheel
128 BINMODE?=       555
129 NOBINMODE?=     444
130
131 .if defined(MODULES_WITH_WORLD)
132 KMODDIR?=       /boot/modules
133 .else
134 KMODDIR?=       /boot/kernel
135 .endif
136 KMODOWN?=       ${BINOWN}
137 KMODGRP?=       ${BINGRP}
138 KMODMODE?=      ${BINMODE}
139
140 LIBDIR?=        /usr/lib
141 LIBCOMPATDIR?=  /usr/lib/compat
142 LIBDATADIR?=    /usr/libdata
143 LIBEXECDIR?=    /usr/libexec
144 LINTLIBDIR?=    /usr/libdata/lint
145 SHLIBDIR?=      ${LIBDIR}
146 LIBOWN?=        ${BINOWN}
147 LIBGRP?=        ${BINGRP}
148 LIBMODE?=       ${NOBINMODE}
149
150
151 # Share files
152 SHAREDIR?=      /usr/share
153 SHAREOWN?=      root
154 SHAREGRP?=      wheel
155 SHAREMODE?=     ${NOBINMODE}
156
157 CONFDIR?=       /etc
158 CONFOWN?=       root
159 CONFGRP?=       wheel
160 CONFMODE?=      644
161
162 MANDIR?=        ${SHAREDIR}/man/man
163 MANOWN?=        ${SHAREOWN}
164 MANGRP?=        ${SHAREGRP}
165 MANMODE?=       ${NOBINMODE}
166
167 DOCDIR?=        ${SHAREDIR}/doc
168 DOCOWN?=        ${SHAREOWN}
169 DOCGRP?=        ${SHAREGRP}
170 DOCMODE?=       ${NOBINMODE}
171
172 INFODIR?=       ${SHAREDIR}/info
173 INFOOWN?=       ${SHAREOWN}
174 INFOGRP?=       ${SHAREGRP}
175 INFOMODE?=      ${NOBINMODE}
176
177 NLSDIR?=        ${SHAREDIR}/nls
178 NLSOWN?=        ${SHAREOWN}
179 NLSGRP?=        ${SHAREGRP}
180 NLSMODE?=       ${NOBINMODE}
181
182 INCLUDEDIR?=    /usr/include
183
184 #
185 # install(1) parameters.
186 #
187 HRDLINK?=       -l h
188 SYMLINK?=       -l s
189
190 INSTALL_LINK?=          ${INSTALL} ${HRDLINK}
191 INSTALL_SYMLINK?=       ${INSTALL} ${SYMLINK}
192
193 # Common variables
194 .if !defined(DEBUG_FLAGS)
195 STRIP?=         -s
196 .endif
197
198 COMPRESS_CMD?=  gzip -cn
199 COMPRESS_EXT?=  .gz
200
201 .if !defined(_WITHOUT_SRCCONF)
202 #
203 # Define MK_* variables (which are either "yes" or "no") for users
204 # to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
205 # make(1) environment.
206 # These should be tested with `== "no"' or `!= "no"' in makefiles.
207 # The NO_* variables should only be set by makefiles.
208 #
209
210 #
211 # Supported NO_* options (if defined, MK_* will be forced to "no",
212 # regardless of user's setting).
213 #
214 .for var in \
215     CTF \
216     INSTALLLIB \
217     MAN \
218     PROFILE
219 .if defined(NO_${var})
220 .if defined(WITH_${var})
221 .undef WITH_${var}
222 .endif
223 WITHOUT_${var}=
224 .endif
225 .endfor
226
227 #
228 # Older-style variables that enabled behaviour when set.
229 #
230 .if defined(YES_HESIOD)
231 WITH_HESIOD=
232 .endif
233 .if defined(MAKE_IDEA)
234 WITH_IDEA=
235 .endif
236
237 __DEFAULT_YES_OPTIONS = \
238     ACCT \
239     ACPI \
240     AMD \
241     APM \
242     ASSERT_DEBUG \
243     AT \
244     ATF \
245     ATM \
246     AUDIT \
247     AUTHPF \
248     BIND \
249     BIND_DNSSEC \
250     BIND_ETC \
251     BIND_LIBS_LWRES \
252     BIND_MTREE \
253     BIND_NAMED \
254     BIND_UTILS \
255     BINUTILS \
256     BLUETOOTH \
257     BOOT \
258     BSD_CPIO \
259     BSNMP \
260     BZIP2 \
261     CALENDAR \
262     CAPSICUM \
263     CDDL \
264     CPP \
265     CRYPT \
266     CTM \
267     CVS \
268     CXX \
269     DICT \
270     DYNAMICROOT \
271     ED_CRYPTO \
272     EXAMPLES \
273     FLOPPY \
274     FORTH \
275     FP_LIBC \
276     FREEBSD_UPDATE \
277     GAMES \
278     GCC \
279     GCOV \
280     GDB \
281     GNU \
282     GPIB \
283     GPIO \
284     GROFF \
285     HTML \
286     INET \
287     INET6 \
288     INFO \
289     INSTALLLIB \
290     IPFILTER \
291     IPFW \
292     IPX \
293     JAIL \
294     KDUMP \
295     KERBEROS \
296     KERNEL_SYMBOLS \
297     KVM \
298     LEGACY_CONSOLE \
299     LIB32 \
300     LIBPTHREAD \
301     LIBTHR \
302     LOCALES \
303     LOCATE \
304     LPR \
305     LS_COLORS \
306     MAIL \
307     MAILWRAPPER \
308     MAKE \
309     MAN \
310     NDIS \
311     NETCAT \
312     NETGRAPH \
313     NIS \
314     NLS \
315     NLS_CATALOGS \
316     NS_CACHING \
317     NTP \
318     OPENSSH \
319     OPENSSL \
320     PAM \
321     PC_SYSINSTALL \
322     PF \
323     PKGBOOTSTRAP \
324     PKGTOOLS \
325     PMC \
326     PORTSNAP \
327     PPP \
328     PROFILE \
329     QUOTAS \
330     RCMDS \
331     RCS \
332     RESCUE \
333     ROUTED \
334     SENDMAIL \
335     SETUID_LOGIN \
336     SHAREDOCS \
337     SOURCELESS \
338     SOURCELESS_HOST \
339     SOURCELESS_UCODE \
340     SSP \
341     SYMVER \
342     SYSCONS \
343     SYSINSTALL \
344     TCSH \
345     TELNET \
346     TEXTPROC \
347     TOOLCHAIN \
348     USB \
349     UTMPX \
350     WIRELESS \
351     WPA_SUPPLICANT_EAPOL \
352     ZFS \
353     ZONEINFO
354
355 __DEFAULT_NO_OPTIONS = \
356     ARM_EABI \
357     BSD_PATCH \
358     BIND_IDN \
359     BIND_LARGE_FILE \
360     BIND_LIBS \
361     BIND_SIGCHASE \
362     BIND_XML \
363     BMAKE \
364     BSDCONFIG \
365     BSD_GREP \
366     CLANG_EXTRAS \
367     CTF \
368     GPL_DTC \
369     HESIOD \
370     ICONV \
371     IDEA \
372     INSTALL_AS_USER \
373     NMTREE \
374     NAND \
375     OFED \
376     OPENSSH_NONE_CIPHER \
377     SHARED_TOOLCHAIN
378
379 #
380 # Default behaviour of some options depends on the architecture.  Unfortunately
381 # this means that we have to test TARGET_ARCH (the buildworld case) as well
382 # as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
383 # used at all in bsd.*.mk, but we have to make an exception here if we want
384 # to allow defaults for some things like clang and fdt to vary by target
385 # architecture.
386 #
387 .if defined(TARGET_ARCH)
388 __T=${TARGET_ARCH}
389 .else
390 __T=${MACHINE_ARCH}
391 .endif
392 # Clang is only for x86 and powerpc right now, by default.
393 .if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*}
394 __DEFAULT_YES_OPTIONS+=CLANG
395 .else
396 __DEFAULT_NO_OPTIONS+=CLANG
397 .endif
398 # Clang the default system compiler only on x86.
399 .if ${__T} == "amd64" || ${__T} == "i386"
400 __DEFAULT_YES_OPTIONS+=CLANG_IS_CC
401 .else
402 __DEFAULT_NO_OPTIONS+=CLANG_IS_CC
403 .endif
404 # FDT is needed only for arm, mips and powerpc
405 .if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*}
406 __DEFAULT_YES_OPTIONS+=FDT
407 .else
408 __DEFAULT_NO_OPTIONS+=FDT
409 .endif
410 .undef __T
411
412 #
413 # MK_* options which default to "yes".
414 #
415 .for var in ${__DEFAULT_YES_OPTIONS}
416 .if defined(WITH_${var}) && defined(WITHOUT_${var})
417 .error WITH_${var} and WITHOUT_${var} can't both be set.
418 .endif
419 .if defined(MK_${var})
420 .error MK_${var} can't be set by a user.
421 .endif
422 .if defined(WITHOUT_${var})
423 MK_${var}:=     no
424 .else
425 MK_${var}:=     yes
426 .endif
427 .endfor
428 .undef __DEFAULT_YES_OPTIONS
429
430 #
431 # MK_* options which default to "no".
432 #
433 .for var in ${__DEFAULT_NO_OPTIONS}
434 .if defined(WITH_${var}) && defined(WITHOUT_${var})
435 .error WITH_${var} and WITHOUT_${var} can't both be set.
436 .endif
437 .if defined(MK_${var})
438 .error MK_${var} can't be set by a user.
439 .endif
440 .if defined(WITH_${var})
441 MK_${var}:=     yes
442 .else
443 MK_${var}:=     no
444 .endif
445 .endfor
446 .undef __DEFAULT_NO_OPTIONS
447
448 #
449 # Force some options off if their dependencies are off.
450 # Order is somewhat important.
451 #
452 .if ${MK_LIBPTHREAD} == "no"
453 MK_LIBTHR:=     no
454 .endif
455
456 .if ${MK_LIBTHR} == "no"
457 MK_BIND:=       no
458 .endif
459
460 .if ${MK_BIND} == "no"
461 MK_BIND_DNSSEC:= no
462 MK_BIND_ETC:=   no
463 MK_BIND_LIBS:=  no
464 MK_BIND_LIBS_LWRES:= no
465 MK_BIND_MTREE:= no
466 MK_BIND_NAMED:= no
467 MK_BIND_UTILS:= no
468 .endif
469
470 .if ${MK_BIND_MTREE} == "no"
471 MK_BIND_ETC:=   no
472 .endif
473
474 .if ${MK_SOURCELESS} == "no"
475 MK_SOURCELESS_HOST:=    no
476 MK_SOURCELESS_UCODE:= no
477 .endif
478
479 .if ${MK_CDDL} == "no"
480 MK_ZFS:=        no
481 MK_CTF:=        no
482 .endif
483
484 .if ${MK_CRYPT} == "no"
485 MK_OPENSSL:=    no
486 MK_OPENSSH:=    no
487 MK_KERBEROS:=   no
488 .endif
489
490 .if ${MK_CXX} == "no"
491 MK_CLANG:=      no
492 MK_GROFF:=      no
493 .endif
494
495 .if ${MK_MAIL} == "no"
496 MK_MAILWRAPPER:= no
497 MK_SENDMAIL:=   no
498 .endif
499
500 .if ${MK_NETGRAPH} == "no"
501 MK_ATM:=        no
502 MK_BLUETOOTH:=  no
503 .endif
504
505 .if ${MK_OPENSSL} == "no"
506 MK_OPENSSH:=    no
507 MK_KERBEROS:=   no
508 .endif
509
510 .if ${MK_PF} == "no"
511 MK_AUTHPF:=     no
512 .endif
513
514 .if ${MK_TEXTPROC} == "no"
515 MK_GROFF:=      no
516 .endif
517
518 .if ${MK_TOOLCHAIN} == "no"
519 MK_BINUTILS:=   no
520 MK_CLANG:=      no
521 MK_GCC:=        no
522 MK_GDB:=        no
523 .endif
524
525 .if ${MK_CLANG} == "no"
526 MK_CLANG_EXTRAS:= no
527 MK_CLANG_IS_CC:= no
528 .endif
529
530 #
531 # Set defaults for the MK_*_SUPPORT variables.
532 #
533
534 #
535 # MK_*_SUPPORT options which default to "yes" unless their corresponding
536 # MK_* variable is set to "no".
537 #
538 .for var in \
539     BZIP2 \
540     GNU \
541     INET \
542     INET6 \
543     IPX \
544     KERBEROS \
545     KVM \
546     NETGRAPH \
547     PAM \
548     WIRELESS
549 .if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT)
550 .error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set.
551 .endif
552 .if defined(MK_${var}_SUPPORT)
553 .error MK_${var}_SUPPORT can't be set by a user.
554 .endif
555 .if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
556 MK_${var}_SUPPORT:= no
557 .else
558 MK_${var}_SUPPORT:= yes
559 .endif
560 .endfor
561
562 #
563 # MK_* options whose default value depends on another option.
564 #
565 .for vv in \
566     GSSAPI/KERBEROS \
567     MAN_UTILS/MAN
568 .if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H})
569 .error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set.
570 .endif
571 .if defined(MK_${vv:H})
572 .error MK_${vv:H} can't be set by a user.
573 .endif
574 .if defined(WITH_${vv:H})
575 MK_${vv:H}:=    yes
576 .elif defined(WITHOUT_${vv:H})
577 MK_${vv:H}:=    no
578 .else
579 MK_${vv:H}:=    ${MK_${vv:T}}
580 .endif
581 .endfor
582
583 #
584 # MK_* options that default to "yes" if the compiler is a C++11 compiler.
585 #
586 .include <bsd.compiler.mk>
587 .for var in \
588     LIBCPLUSPLUS
589 .if defined(WITH_${var}) && defined(WITHOUT_${var})
590 .error WITH_${var} and WITHOUT_${var} can't both be set.
591 .endif
592 .if defined(MK_${var})
593 .error MK_${var} can't be set by a user.
594 .endif
595 .if ${COMPILER_FEATURES:Mc++11}
596 .if defined(WITHOUT_${var})
597 MK_${var}:=     no
598 .else
599 MK_${var}:=     yes
600 .endif
601 .else
602 .if defined(WITH_${var})
603 MK_${var}:=     yes
604 .else
605 MK_${var}:=     no
606 .endif
607 .endif
608 .endfor
609
610 .if ${MK_CTF} != "no"
611 CTFCONVERT_CMD= ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
612 .elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
613 CTFCONVERT_CMD=
614 .else
615 CTFCONVERT_CMD= @:
616 .endif 
617
618 .if ${MK_INSTALL_AS_USER} != "no"
619 _uid!=  id -u
620 .if ${_uid} != 0
621 .if !defined(USER)
622 USER!=  id -un
623 .endif
624 _gid!=  id -gn
625 .for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE
626 $xOWN=  ${USER}
627 $xGRP=  ${_gid}
628 .endfor
629 .endif
630 .endif
631
632 .endif # !_WITHOUT_SRCCONF
633
634 .endif  # !target(__<bsd.own.mk>__)