]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/bsd.own.mk
After r234596, temporarily disable building clang on 32-bit PowerPC,
[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 # Common variables
185 .if !defined(DEBUG_FLAGS)
186 STRIP?=         -s
187 .endif
188
189 COMPRESS_CMD?=  gzip -cn
190 COMPRESS_EXT?=  .gz
191
192 .if !defined(_WITHOUT_SRCCONF)
193 #
194 # Define MK_* variables (which are either "yes" or "no") for users
195 # to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
196 # make(1) environment.
197 # These should be tested with `== "no"' or `!= "no"' in makefiles.
198 # The NO_* variables should only be set by makefiles.
199 #
200
201 #
202 # Supported NO_* options (if defined, MK_* will be forced to "no",
203 # regardless of user's setting).
204 #
205 .for var in \
206     CTF \
207     INSTALLLIB \
208     MAN \
209     PROFILE
210 .if defined(NO_${var})
211 .if defined(WITH_${var})
212 .undef WITH_${var}
213 .endif
214 WITHOUT_${var}=
215 .endif
216 .endfor
217
218 #
219 # Compat NO_* options (same as above, except their use is deprecated).
220 #
221 .if !defined(BURN_BRIDGES)
222 .for var in \
223     ACPI \
224     ATM \
225     AUDIT \
226     AUTHPF \
227     BIND \
228     BIND_DNSSEC \
229     BIND_ETC \
230     BIND_LIBS_LWRES \
231     BIND_MTREE \
232     BIND_NAMED \
233     BIND_UTILS \
234     BLUETOOTH \
235     BOOT \
236     CALENDAR \
237     CPP \
238     CRYPT \
239     CVS \
240     CXX \
241     DICT \
242     DYNAMICROOT \
243     EXAMPLES \
244     FORTH \
245     FP_LIBC \
246     GAMES \
247     GCOV \
248     GDB \
249     GNU \
250     GPIB \
251     GROFF \
252     HTML \
253     INET6 \
254     INFO \
255     IPFILTER \
256     IPX \
257     KERBEROS \
258     LIB32 \
259     LIBPTHREAD \
260     LIBTHR \
261     LOCALES \
262     LPR \
263     MAILWRAPPER \
264     NETCAT \
265     NIS \
266     NLS \
267     NLS_CATALOGS \
268     NS_CACHING \
269     OPENSSH \
270     OPENSSL \
271     PAM \
272     PF \
273     RCMDS \
274     RCS \
275     RESCUE \
276     SENDMAIL \
277     SETUID_LOGIN \
278     SHAREDOCS \
279     SYSCONS \
280     TCSH \
281     TOOLCHAIN \
282     USB \
283     WPA_SUPPLICANT_EAPOL
284 .if defined(NO_${var})
285 #.warning NO_${var} is deprecated in favour of WITHOUT_${var}=
286 WITHOUT_${var}=
287 .endif
288 .endfor
289 .endif # !defined(BURN_BRIDGES)
290
291 #
292 # Older-style variables that enabled behaviour when set.
293 #
294 .if defined(YES_HESIOD)
295 WITH_HESIOD=
296 .endif
297 .if defined(MAKE_IDEA)
298 WITH_IDEA=
299 .endif
300
301 __DEFAULT_YES_OPTIONS = \
302     ACCT \
303     ACPI \
304     AMD \
305     APM \
306     ASSERT_DEBUG \
307     AT \
308     ATM \
309     AUDIT \
310     AUTHPF \
311     BIND \
312     BIND_DNSSEC \
313     BIND_ETC \
314     BIND_LIBS_LWRES \
315     BIND_MTREE \
316     BIND_NAMED \
317     BIND_UTILS \
318     BINUTILS \
319     BLUETOOTH \
320     BOOT \
321     BSD_CPIO \
322     BSNMP \
323     SOURCELESS \
324     SOURCELESS_HOST \
325     SOURCELESS_UCODE \
326     BZIP2 \
327     CALENDAR \
328     CAPSICUM \
329     CDDL \
330     CPP \
331     CRYPT \
332     CTM \
333     CVS \
334     CXX \
335     DICT \
336     DYNAMICROOT \
337     EXAMPLES \
338     FLOPPY \
339     FORTH \
340     FP_LIBC \
341     FREEBSD_UPDATE \
342     GAMES \
343     GCC \
344     GCOV \
345     GDB \
346     GNU \
347     GPIB \
348     GPIO \
349     GROFF \
350     HTML \
351     INET \
352     INET6 \
353     INFO \
354     INSTALLLIB \
355     IPFILTER \
356     IPFW \
357     IPX \
358     JAIL \
359     KERBEROS \
360     KERNEL_SYMBOLS \
361     KVM \
362     LEGACY_CONSOLE \
363     LIB32 \
364     LIBPTHREAD \
365     LIBTHR \
366     LOCALES \
367     LOCATE \
368     LPR \
369     MAIL \
370     MAILWRAPPER \
371     MAKE \
372     MAN \
373     NCP \
374     NDIS \
375     NETCAT \
376     NETGRAPH \
377     NIS \
378     NLS \
379     NLS_CATALOGS \
380     NS_CACHING \
381     NTP \
382     OPENSSH \
383     OPENSSL \
384     PAM \
385     PF \
386     PKGTOOLS \
387     PMC \
388     PORTSNAP \
389     PPP \
390     PROFILE \
391     QUOTAS \
392     RCMDS \
393     RCS \
394     RESCUE \
395     ROUTED \
396     SENDMAIL \
397     SETUID_LOGIN \
398     SHAREDOCS \
399     SSP \
400     SYSINSTALL \
401     SYMVER \
402     SYSCONS \
403     TCSH \
404     TELNET \
405     TEXTPROC \
406     TOOLCHAIN \
407     USB \
408     UTMPX \
409     WIRELESS \
410     WPA_SUPPLICANT_EAPOL \
411     ZFS \
412     ZONEINFO
413
414 __DEFAULT_NO_OPTIONS = \
415     BSD_GREP \
416     BIND_IDN \
417     BIND_LARGE_FILE \
418     BIND_LIBS \
419     BIND_SIGCHASE \
420     BIND_XML \
421     CLANG_EXTRAS \
422     CLANG_IS_CC \
423     CTF \
424     HESIOD \
425     ICONV \
426     IDEA \
427     LIBCPLUSPLUS \
428     OFED
429
430 #
431 # Default behaviour of some options depends on the architecture.  Unfortunately
432 # this means that we have to test TARGET_ARCH (the buildworld case) as well
433 # as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
434 # used at all in bsd.*.mk, but we have to make an exception here if we want
435 # to allow defaults for some things like clang and fdt to vary by target
436 # architecture.
437 #
438 .if defined(TARGET_ARCH)
439 __T=${TARGET_ARCH}
440 .else
441 __T=${MACHINE_ARCH}
442 .endif
443 # Clang is only for x86 and powerpc right now, by default.
444 # XXX: Temporarily disabled for 32-bit powerpc, due to a binutils bug.
445 .if ${__T} == "amd64" || ${__T} == "i386" || ${__T} == "powerpc64"
446 __DEFAULT_YES_OPTIONS+=CLANG
447 .else
448 __DEFAULT_NO_OPTIONS+=CLANG
449 .endif
450 # FDT is needed only for arm, mips and powerpc
451 .if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*}
452 __DEFAULT_YES_OPTIONS+=FDT
453 .else
454 __DEFAULT_NO_OPTIONS+=FDT
455 .endif
456 .undef __T
457
458 #
459 # MK_* options which default to "yes".
460 #
461 .for var in ${__DEFAULT_YES_OPTIONS}
462 .if defined(WITH_${var}) && defined(WITHOUT_${var})
463 .error WITH_${var} and WITHOUT_${var} can't both be set.
464 .endif
465 .if defined(MK_${var})
466 .error MK_${var} can't be set by a user.
467 .endif
468 .if defined(WITHOUT_${var})
469 MK_${var}:=     no
470 .else
471 MK_${var}:=     yes
472 .endif
473 .endfor
474 .undef __DEFAULT_YES_OPTIONS
475
476 #
477 # MK_* options which default to "no".
478 #
479 .for var in ${__DEFAULT_NO_OPTIONS}
480 .if defined(WITH_${var}) && defined(WITHOUT_${var})
481 .error WITH_${var} and WITHOUT_${var} can't both be set.
482 .endif
483 .if defined(MK_${var})
484 .error MK_${var} can't be set by a user.
485 .endif
486 .if defined(WITH_${var})
487 MK_${var}:=     yes
488 .else
489 MK_${var}:=     no
490 .endif
491 .endfor
492 .undef __DEFAULT_NO_OPTIONS
493
494 #
495 # Force some options off if their dependencies are off.
496 # Order is somewhat important.
497 #
498 .if ${MK_LIBPTHREAD} == "no"
499 MK_LIBTHR:=     no
500 .endif
501
502 .if ${MK_LIBTHR} == "no"
503 MK_BIND:=       no
504 .endif
505
506 .if ${MK_BIND} == "no"
507 MK_BIND_DNSSEC:= no
508 MK_BIND_ETC:=   no
509 MK_BIND_LIBS:=  no
510 MK_BIND_LIBS_LWRES:= no
511 MK_BIND_MTREE:= no
512 MK_BIND_NAMED:= no
513 MK_BIND_UTILS:= no
514 .endif
515
516 .if ${MK_BIND_MTREE} == "no"
517 MK_BIND_ETC:=   no
518 .endif
519
520 .if ${MK_SOURCELESS} == "no"
521 MK_SOURCELESS_HOST:=    no
522 MK_SOURCELESS_UCODE:= no
523 .endif
524
525 .if ${MK_CDDL} == "no"
526 MK_ZFS:=        no
527 MK_CTF:=        no
528 .endif
529
530 .if ${MK_CLANG} == "no"
531 MK_CLANG_EXTRAS:= no
532 .endif
533
534 .if ${MK_CRYPT} == "no"
535 MK_OPENSSL:=    no
536 MK_OPENSSH:=    no
537 MK_KERBEROS:=   no
538 .endif
539
540 .if ${MK_CXX} == "no"
541 MK_CLANG:=      no
542 MK_GROFF:=      no
543 .endif
544
545 .if ${MK_IPX} == "no"
546 MK_NCP:=        no
547 .endif
548
549 .if ${MK_MAIL} == "no"
550 MK_MAILWRAPPER:= no
551 MK_SENDMAIL:=   no
552 .endif
553
554 .if ${MK_NETGRAPH} == "no"
555 MK_ATM:=        no
556 MK_BLUETOOTH:=  no
557 .endif
558
559 .if ${MK_OPENSSL} == "no"
560 MK_OPENSSH:=    no
561 MK_KERBEROS:=   no
562 .endif
563
564 .if ${MK_PF} == "no"
565 MK_AUTHPF:=     no
566 .endif
567
568 .if ${MK_TEXTPROC} == "no"
569 MK_GROFF:=      no
570 .endif
571
572 .if ${MK_TOOLCHAIN} == "no"
573 MK_BINUTILS:=   no
574 MK_CLANG:=      no
575 MK_GCC:=        no
576 MK_GDB:=        no
577 .endif
578
579 .if ${MK_CLANG} == "no"
580 MK_CLANG_IS_CC:= no
581 .endif
582
583 #
584 # Set defaults for the MK_*_SUPPORT variables.
585 #
586
587 #
588 # MK_*_SUPPORT options which default to "yes" unless their corresponding
589 # MK_* variable is set to "no".
590 #
591 .for var in \
592     BZIP2 \
593     GNU \
594     INET \
595     INET6 \
596     IPX \
597     KERBEROS \
598     KVM \
599     NETGRAPH \
600     PAM \
601     WIRELESS
602 .if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT)
603 .error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set.
604 .endif
605 .if defined(MK_${var}_SUPPORT)
606 .error MK_${var}_SUPPORT can't be set by a user.
607 .endif
608 .if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
609 MK_${var}_SUPPORT:= no
610 .else
611 MK_${var}_SUPPORT:= yes
612 .endif
613 .endfor
614
615 #
616 # MK_* options whose default value depends on another option.
617 #
618 .for vv in \
619     GSSAPI/KERBEROS \
620     MAN_UTILS/MAN
621 .if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H})
622 .error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set.
623 .endif
624 .if defined(MK_${vv:H})
625 .error MK_${vv:H} can't be set by a user.
626 .endif
627 .if defined(WITH_${vv:H})
628 MK_${vv:H}:=    yes
629 .elif defined(WITHOUT_${vv:H})
630 MK_${vv:H}:=    no
631 .else
632 MK_${vv:H}:=    ${MK_${vv:T}}
633 .endif
634 .endfor
635
636 .if ${MK_CTF} != "no"
637 CTFCONVERT_CMD= ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
638 .elif ${MAKE_VERSION} >= 5201111300
639 CTFCONVERT_CMD=
640 .else
641 CTFCONVERT_CMD= @:
642 .endif 
643
644 .endif # !_WITHOUT_SRCCONF
645
646 .endif  # !target(__<bsd.own.mk>__)