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) 119SRCCONF?= /etc/src.conf 120.if exists(${SRCCONF}) 121.include "${SRCCONF}" 122.endif 123.endif 124 125# Binaries 126BINOWN?= root 127BINGRP?= wheel 128BINMODE?= 555 129NOBINMODE?= 444 130 131.if defined(MODULES_WITH_WORLD) 132KMODDIR?= /boot/modules 133.else 134KMODDIR?= /boot/kernel 135.endif 136KMODOWN?= ${BINOWN} 137KMODGRP?= ${BINGRP} 138KMODMODE?= ${BINMODE} 139 140LIBDIR?= /usr/lib 141LIBCOMPATDIR?= /usr/lib/compat 142LIBDATADIR?= /usr/libdata 143LIBEXECDIR?= /usr/libexec 144LINTLIBDIR?= /usr/libdata/lint 145SHLIBDIR?= ${LIBDIR} 146LIBOWN?= ${BINOWN} 147LIBGRP?= ${BINGRP} 148LIBMODE?= ${NOBINMODE} 149 150 151# Share files 152SHAREDIR?= /usr/share 153SHAREOWN?= root 154SHAREGRP?= wheel 155SHAREMODE?= ${NOBINMODE} 156 157CONFDIR?= /etc 158CONFOWN?= root 159CONFGRP?= wheel 160CONFMODE?= 644 161 162MANDIR?= ${SHAREDIR}/man/man 163MANOWN?= ${SHAREOWN} 164MANGRP?= ${SHAREGRP} 165MANMODE?= ${NOBINMODE} 166 167DOCDIR?= ${SHAREDIR}/doc 168DOCOWN?= ${SHAREOWN} 169DOCGRP?= ${SHAREGRP} 170DOCMODE?= ${NOBINMODE} 171 172INFODIR?= ${SHAREDIR}/info 173INFOOWN?= ${SHAREOWN} 174INFOGRP?= ${SHAREGRP} 175INFOMODE?= ${NOBINMODE} 176 177NLSDIR?= ${SHAREDIR}/nls 178NLSOWN?= ${SHAREOWN} 179NLSGRP?= ${SHAREGRP} 180NLSMODE?= ${NOBINMODE} 181 182INCLUDEDIR?= /usr/include 183 184# 185# install(1) parameters. 186# 187HRDLINK?= -l h 188SYMLINK?= -l s 189 190INSTALL_LINK?= ${INSTALL} ${HRDLINK} 191INSTALL_SYMLINK?= ${INSTALL} ${SYMLINK} 192 193# Common variables 194.if !defined(DEBUG_FLAGS) 195STRIP?= -s 196.endif 197 198COMPRESS_CMD?= gzip -cn 199COMPRESS_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 223WITHOUT_${var}= 224.endif 225.endfor 226 227# 228# Older-style variables that enabled behaviour when set. 229# 230.if defined(YES_HESIOD) 231WITH_HESIOD= 232.endif 233.if defined(MAKE_IDEA) 234WITH_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 LDNS \ 299 LEGACY_CONSOLE \ 300 LIB32 \ 301 LIBPTHREAD \ 302 LIBTHR \ 303 LOCALES \ 304 LOCATE \ 305 LPR \ 306 LS_COLORS \ 307 MAIL \ 308 MAILWRAPPER \ 309 MAKE \ 310 MAN \ 311 NDIS \ 312 NETCAT \ 313 NETGRAPH \ 314 NIS \ 315 NLS \ 316 NLS_CATALOGS \ 317 NS_CACHING \ 318 NTP \ 319 OPENSSH \ 320 OPENSSL \ 321 PAM \ 322 PC_SYSINSTALL \ 323 PF \ 324 PKGBOOTSTRAP \ 325 PKGTOOLS \ 326 PMC \ 327 PORTSNAP \ 328 PPP \ 329 PROFILE \ 330 QUOTAS \ 331 RCMDS \ 332 RCS \ 333 RESCUE \ 334 ROUTED \ 335 SENDMAIL \ 336 SETUID_LOGIN \ 337 SHAREDOCS \ 338 SOURCELESS \ 339 SOURCELESS_HOST \ 340 SOURCELESS_UCODE \ 341 SSP \ 342 SYMVER \ 343 SYSCONS \ 344 SYSINSTALL \ 345 TCSH \ 346 TELNET \ 347 TEXTPROC \ 348 TOOLCHAIN \ 349 USB \ 350 UTMPX \ 351 WIRELESS \ 352 WPA_SUPPLICANT_EAPOL \ 353 ZFS \ 354 ZONEINFO 355 356__DEFAULT_NO_OPTIONS = \ 357 ARM_EABI \ 358 BSD_PATCH \ 359 BIND_IDN \ 360 BIND_LARGE_FILE \ 361 BIND_LIBS \ 362 BIND_SIGCHASE \ 363 BIND_XML \ 364 BMAKE \ 365 BSDCONFIG \ 366 BSD_GREP \ 367 CLANG_EXTRAS \ 368 CTF \ 369 GPL_DTC \ 370 HESIOD \ 371 ICONV \ 372 IDEA \ 373 INSTALL_AS_USER \ 374 LDNS_UTILS \ 375 NMTREE \ 376 NAND \ 377 OFED \ 378 OPENSSH_NONE_CIPHER \ 379 SHARED_TOOLCHAIN 380 381# 382# Default behaviour of some options depends on the architecture. Unfortunately 383# this means that we have to test TARGET_ARCH (the buildworld case) as well 384# as MACHINE_ARCH (the non-buildworld case). Normally TARGET_ARCH is not 385# used at all in bsd.*.mk, but we have to make an exception here if we want 386# to allow defaults for some things like clang and fdt to vary by target 387# architecture. 388# 389.if defined(TARGET_ARCH) 390__T=${TARGET_ARCH} 391.else 392__T=${MACHINE_ARCH} 393.endif 394# Clang is only for x86, powerpc and little-endian arm right now, by default. 395.if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*} 396__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL 397.elif ${__T} == "arm" || ${__T} == "armv6" 398__DEFAULT_YES_OPTIONS+=CLANG 399# GCC is unable to build the full clang on arm, disable it by default. 400__DEFAULT_NO_OPTIONS+=CLANG_FULL 401.else 402__DEFAULT_NO_OPTIONS+=CLANG CLANG_FULL 403.endif 404# Clang the default system compiler only on x86. 405.if ${__T} == "amd64" || ${__T} == "i386" 406__DEFAULT_YES_OPTIONS+=CLANG_IS_CC 407.else 408__DEFAULT_NO_OPTIONS+=CLANG_IS_CC 409.endif 410# FDT is needed only for arm, mips and powerpc 411.if ${__T:Marm*} || ${__T:Mpowerpc*} || ${__T:Mmips*} 412__DEFAULT_YES_OPTIONS+=FDT 413.else 414__DEFAULT_NO_OPTIONS+=FDT 415.endif 416.undef __T 417 418# 419# MK_* options which default to "yes". 420# 421.for var in ${__DEFAULT_YES_OPTIONS} 422.if defined(WITH_${var}) && defined(WITHOUT_${var}) 423.error WITH_${var} and WITHOUT_${var} can't both be set. 424.endif 425.if defined(MK_${var}) 426.error MK_${var} can't be set by a user. 427.endif 428.if defined(WITHOUT_${var}) 429MK_${var}:= no 430.else 431MK_${var}:= yes 432.endif 433.endfor 434.undef __DEFAULT_YES_OPTIONS 435 436# 437# MK_* options which default to "no". 438# 439.for var in ${__DEFAULT_NO_OPTIONS} 440.if defined(WITH_${var}) && defined(WITHOUT_${var}) 441.error WITH_${var} and WITHOUT_${var} can't both be set. 442.endif 443.if defined(MK_${var}) 444.error MK_${var} can't be set by a user. 445.endif 446.if defined(WITH_${var}) 447MK_${var}:= yes 448.else 449MK_${var}:= no 450.endif 451.endfor 452.undef __DEFAULT_NO_OPTIONS 453 454# 455# Force some options off if their dependencies are off. 456# Order is somewhat important. 457# 458.if ${MK_LIBPTHREAD} == "no" 459MK_LIBTHR:= no 460.endif 461 462.if ${MK_LIBTHR} == "no" 463MK_BIND:= no 464.endif 465 466.if ${MK_BIND} == "no" 467MK_BIND_DNSSEC:= no 468MK_BIND_ETC:= no 469MK_BIND_LIBS:= no 470MK_BIND_LIBS_LWRES:= no 471MK_BIND_MTREE:= no 472MK_BIND_NAMED:= no 473MK_BIND_UTILS:= no 474.endif 475 476.if ${MK_LDNS} == "no" 477MK_LDNS_UTILS:= no 478.endif 479 480.if ${MK_LDNS_UTILS} != "no" 481MK_BIND_UTILS:= no 482.endif 483 484.if ${MK_BIND_MTREE} == "no" 485MK_BIND_ETC:= no 486.endif 487 488.if ${MK_SOURCELESS} == "no" 489MK_SOURCELESS_HOST:= no 490MK_SOURCELESS_UCODE:= no 491.endif 492 493.if ${MK_CDDL} == "no" 494MK_ZFS:= no 495MK_CTF:= no 496.endif 497 498.if ${MK_CRYPT} == "no" 499MK_OPENSSL:= no 500MK_OPENSSH:= no 501MK_KERBEROS:= no 502.endif 503 504.if ${MK_CXX} == "no" 505MK_CLANG:= no 506MK_GROFF:= no 507.endif 508 509.if ${MK_MAIL} == "no" 510MK_MAILWRAPPER:= no 511MK_SENDMAIL:= no 512.endif 513 514.if ${MK_NETGRAPH} == "no" 515MK_ATM:= no 516MK_BLUETOOTH:= no 517.endif 518 519.if ${MK_OPENSSL} == "no" 520MK_OPENSSH:= no 521MK_KERBEROS:= no 522.endif 523 524.if ${MK_PF} == "no" 525MK_AUTHPF:= no 526.endif 527 528.if ${MK_TEXTPROC} == "no" 529MK_GROFF:= no 530.endif 531 532.if ${MK_TOOLCHAIN} == "no" 533MK_BINUTILS:= no 534MK_CLANG:= no 535MK_GCC:= no 536MK_GDB:= no 537.endif 538 539.if ${MK_CLANG} == "no" 540MK_CLANG_EXTRAS:= no 541MK_CLANG_FULL:= no 542MK_CLANG_IS_CC:= no 543.endif 544 545# 546# Set defaults for the MK_*_SUPPORT variables. 547# 548 549# 550# MK_*_SUPPORT options which default to "yes" unless their corresponding 551# MK_* variable is set to "no". 552# 553.for var in \ 554 BZIP2 \ 555 GNU \ 556 INET \ 557 INET6 \ 558 IPX \ 559 KERBEROS \ 560 KVM \ 561 NETGRAPH \ 562 PAM \ 563 WIRELESS 564.if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT) 565.error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set. 566.endif 567.if defined(MK_${var}_SUPPORT) 568.error MK_${var}_SUPPORT can't be set by a user. 569.endif 570.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no" 571MK_${var}_SUPPORT:= no 572.else 573MK_${var}_SUPPORT:= yes 574.endif 575.endfor 576 577# 578# MK_* options whose default value depends on another option. 579# 580.for vv in \ 581 GSSAPI/KERBEROS \ 582 MAN_UTILS/MAN 583.if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H}) 584.error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set. 585.endif 586.if defined(MK_${vv:H}) 587.error MK_${vv:H} can't be set by a user. 588.endif 589.if defined(WITH_${vv:H}) 590MK_${vv:H}:= yes 591.elif defined(WITHOUT_${vv:H}) 592MK_${vv:H}:= no 593.else 594MK_${vv:H}:= ${MK_${vv:T}} 595.endif 596.endfor 597 598# 599# MK_* options that default to "yes" if the compiler is a C++11 compiler. 600# 601.include <bsd.compiler.mk> 602.for var in \ 603 LIBCPLUSPLUS 604.if defined(WITH_${var}) && defined(WITHOUT_${var}) 605.error WITH_${var} and WITHOUT_${var} can't both be set. 606.endif 607.if defined(MK_${var}) 608.error MK_${var} can't be set by a user. 609.endif 610.if ${COMPILER_FEATURES:Mc++11} 611.if defined(WITHOUT_${var}) 612MK_${var}:= no 613.else 614MK_${var}:= yes 615.endif 616.else 617.if defined(WITH_${var}) 618MK_${var}:= yes 619.else 620MK_${var}:= no 621.endif 622.endif 623.endfor 624 625.if ${MK_CTF} != "no" 626CTFCONVERT_CMD= ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} 627.elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300) 628CTFCONVERT_CMD= 629.else 630CTFCONVERT_CMD= @: 631.endif 632 633.if ${MK_INSTALL_AS_USER} != "no" 634_uid!= id -u 635.if ${_uid} != 0 636.if !defined(USER) 637USER!= id -un 638.endif 639_gid!= id -gn 640.for x in BIN CONF DOC INFO KMOD LIB MAN NLS SHARE 641$xOWN= ${USER} 642$xGRP= ${_gid} 643.endfor 644.endif 645.endif 646 647.endif # !_WITHOUT_SRCCONF 648 649.endif # !target(__<bsd.own.mk>__) 650