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# LINTLIBDIR Base path for lint libraries. [/usr/libdata/lint] 34# 35# SHLIBDIR Base path for shared libraries. [${LIBDIR}] 36# 37# LIBOWN Library owner. [${BINOWN}] 38# 39# LIBGRP Library group. [${BINGRP}] 40# 41# LIBMODE Library mode. [${NOBINMODE}] 42# 43# 44# KMODDIR Base path for loadable kernel modules 45# (see kld(4)). [/boot/kernel] 46# 47# KMODOWN Kernel and KLD owner. [${BINOWN}] 48# 49# KMODGRP Kernel and KLD group. [${BINGRP}] 50# 51# KMODMODE KLD mode. [${BINMODE}] 52# 53# 54# SHAREDIR Base path for architecture-independent ascii 55# text files. [/usr/share] 56# 57# SHAREOWN ASCII text file owner. [root] 58# 59# SHAREGRP ASCII text file group. [wheel] 60# 61# SHAREMODE ASCII text file mode. [${NOBINMODE}] 62# 63# 64# DOCDIR Base path for system documentation (e.g. PSD, USD, 65# handbook, FAQ etc.). [${SHAREDIR}/doc] 66# 67# DOCOWN Documentation owner. [${SHAREOWN}] 68# 69# DOCGRP Documentation group. [${SHAREGRP}] 70# 71# DOCMODE Documentation mode. [${NOBINMODE}] 72# 73# 74# INFODIR Base path for GNU's hypertext system 75# called Info (see info(1)). [${SHAREDIR}/info] 76# 77# INFOOWN Info owner. [${SHAREOWN}] 78# 79# INFOGRP Info group. [${SHAREGRP}] 80# 81# INFOMODE Info mode. [${NOBINMODE}] 82# 83# 84# MANDIR Base path for manual installation. [${SHAREDIR}/man/man] 85# 86# MANOWN Manual owner. [${SHAREOWN}] 87# 88# MANGRP Manual group. [${SHAREGRP}] 89# 90# MANMODE Manual mode. [${NOBINMODE}] 91# 92# 93# NLSDIR Base path for National Language Support files 94# installation. [${SHAREDIR}/nls] 95# 96# NLSOWN National Language Support files owner. [${SHAREOWN}] 97# 98# NLSGRP National Language Support files group. [${SHAREGRP}] 99# 100# NLSMODE National Language Support files mode. [${NOBINMODE}] 101# 102# INCLUDEDIR Base path for standard C include files [/usr/include] 103 104.if !target(__<bsd.own.mk>__) 105__<bsd.own.mk>__: 106 107.if !defined(_WITHOUT_SRCCONF) 108SRCCONF?= /etc/src.conf 109.if exists(${SRCCONF}) 110.include "${SRCCONF}" 111.endif 112.endif 113 114# Binaries 115BINOWN?= root 116BINGRP?= wheel 117BINMODE?= 555 118NOBINMODE?= 444 119 120.if defined(MODULES_WITH_WORLD) 121KMODDIR?= /boot/modules 122.else 123KMODDIR?= /boot/kernel 124.endif 125KMODOWN?= ${BINOWN} 126KMODGRP?= ${BINGRP} 127KMODMODE?= ${BINMODE} 128 129LIBDIR?= /usr/lib 130LIBCOMPATDIR?= /usr/lib/compat 131LIBDATADIR?= /usr/libdata 132LINTLIBDIR?= /usr/libdata/lint 133SHLIBDIR?= ${LIBDIR} 134LIBOWN?= ${BINOWN} 135LIBGRP?= ${BINGRP} 136LIBMODE?= ${NOBINMODE} 137 138 139# Share files 140SHAREDIR?= /usr/share 141SHAREOWN?= root 142SHAREGRP?= wheel 143SHAREMODE?= ${NOBINMODE} 144 145MANDIR?= ${SHAREDIR}/man/man 146MANOWN?= ${SHAREOWN} 147MANGRP?= ${SHAREGRP} 148MANMODE?= ${NOBINMODE} 149 150DOCDIR?= ${SHAREDIR}/doc 151DOCOWN?= ${SHAREOWN} 152DOCGRP?= ${SHAREGRP} 153DOCMODE?= ${NOBINMODE} 154 155INFODIR?= ${SHAREDIR}/info 156INFOOWN?= ${SHAREOWN} 157INFOGRP?= ${SHAREGRP} 158INFOMODE?= ${NOBINMODE} 159 160NLSDIR?= ${SHAREDIR}/nls 161NLSOWN?= ${SHAREOWN} 162NLSGRP?= ${SHAREGRP} 163NLSMODE?= ${NOBINMODE} 164 165INCLUDEDIR?= /usr/include 166 167# Common variables 168.if !defined(DEBUG_FLAGS) 169STRIP?= -s 170.endif 171 172COMPRESS_CMD?= gzip -cn 173COMPRESS_EXT?= .gz 174 175.if !defined(_WITHOUT_SRCCONF) 176# 177# Define MK_* variables (which are either "yes" or "no") for users 178# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the 179# make(1) environment. 180# These should be tested with `== "no"' or `!= "no"' in makefiles. 181# The NO_* variables should only be set by makefiles. 182# 183 184# 185# Supported NO_* options (if defined, MK_* will be forced to "no", 186# regardless of user's setting). 187# 188.for var in \ 189 INSTALLLIB \ 190 MAN \ 191 PROFILE 192.if defined(NO_${var}) 193WITHOUT_${var}= 194.endif 195.endfor 196 197# 198# Compat NO_* options (same as above, except their use is deprecated). 199# 200.if !defined(BURN_BRIDGES) 201.for var in \ 202 ACPI \ 203 ATM \ 204 AUDIT \ 205 AUTHPF \ 206 BIND \ 207 BIND_DNSSEC \ 208 BIND_ETC \ 209 BIND_LIBS_LWRES \ 210 BIND_MTREE \ 211 BIND_NAMED \ 212 BIND_UTILS \ 213 BLUETOOTH \ 214 BOOT \ 215 CALENDAR \ 216 CPP \ 217 CRYPT \ 218 CVS \ 219 CXX \ 220 DICT \ 221 DYNAMICROOT \ 222 EXAMPLES \ 223 FORTH \ 224 FP_LIBC \ 225 GAMES \ 226 GCOV \ 227 GDB \ 228 GNU \ 229 GPIB \ 230 GROFF \ 231 HTML \ 232 INET6 \ 233 INFO \ 234 IPFILTER \ 235 IPX \ 236 KERBEROS \ 237 LIB32 \ 238 LIBPTHREAD \ 239 LIBTHR \ 240 LOCALES \ 241 LPR \ 242 MAILWRAPPER \ 243 NETCAT \ 244 NIS \ 245 NLS \ 246 NLS_CATALOGS \ 247 NS_CACHING \ 248 OBJC \ 249 OPENSSH \ 250 OPENSSL \ 251 PAM \ 252 PF \ 253 RCMDS \ 254 RCS \ 255 RESCUE \ 256 SENDMAIL \ 257 SETUID_LOGIN \ 258 SHAREDOCS \ 259 SYSCONS \ 260 TCSH \ 261 TOOLCHAIN \ 262 USB \ 263 WPA_SUPPLICANT_EAPOL 264.if defined(NO_${var}) 265#.warning NO_${var} is deprecated in favour of WITHOUT_${var}= 266WITHOUT_${var}= 267.endif 268.endfor 269.endif # !defined(BURN_BRIDGES) 270 271# 272# Older-style variables that enabled behaviour when set. 273# 274.if defined(YES_HESIOD) 275WITH_HESIOD= 276.endif 277.if defined(MAKE_IDEA) 278WITH_IDEA= 279.endif 280 281# Enable FDT by default for selected platforms. 282.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "powerpc" 283# XXX this is temporarily disabled until all FDT support code is in place. 284#_fdt= FDT 285_no_fdt= FDT 286.else 287_no_fdt= FDT 288.endif 289 290# 291# MK_* options which default to "yes". 292# 293.for var in \ 294 ACCT \ 295 ACPI \ 296 AMD \ 297 APM \ 298 ASSERT_DEBUG \ 299 AT \ 300 ATM \ 301 AUDIT \ 302 AUTHPF \ 303 BIND \ 304 BIND_DNSSEC \ 305 BIND_ETC \ 306 BIND_LIBS_LWRES \ 307 BIND_MTREE \ 308 BIND_NAMED \ 309 BIND_UTILS \ 310 BLUETOOTH \ 311 BOOT \ 312 BSD_CPIO \ 313 BSNMP \ 314 BZIP2 \ 315 CALENDAR \ 316 CDDL \ 317 CPP \ 318 CRYPT \ 319 CTM \ 320 CVS \ 321 CXX \ 322 DICT \ 323 DYNAMICROOT \ 324 EXAMPLES \ 325 ${_fdt} \ 326 FLOPPY \ 327 FORTH \ 328 FP_LIBC \ 329 FREEBSD_UPDATE \ 330 GAMES \ 331 GCOV \ 332 GDB \ 333 GNU \ 334 GNU_GREP \ 335 GPIB \ 336 GROFF \ 337 HTML \ 338 INET6 \ 339 INFO \ 340 INSTALLLIB \ 341 IPFILTER \ 342 IPFW \ 343 IPX \ 344 JAIL \ 345 KERBEROS \ 346 KVM \ 347 LEGACY_CONSOLE \ 348 LIB32 \ 349 LIBPTHREAD \ 350 LIBTHR \ 351 LOCALES \ 352 LOCATE \ 353 LPR \ 354 MAIL \ 355 MAILWRAPPER \ 356 MAKE \ 357 MAN \ 358 NCP \ 359 NDIS \ 360 NETCAT \ 361 NETGRAPH \ 362 NIS \ 363 NLS \ 364 NLS_CATALOGS \ 365 NS_CACHING \ 366 NTP \ 367 OBJC \ 368 OPENSSH \ 369 OPENSSL \ 370 PAM \ 371 PF \ 372 PKGTOOLS \ 373 PMC \ 374 PORTSNAP \ 375 PPP \ 376 PROFILE \ 377 QUOTAS \ 378 RCMDS \ 379 RCS \ 380 RESCUE \ 381 ROUTED \ 382 SENDMAIL \ 383 SETUID_LOGIN \ 384 SHAREDOCS \ 385 SSP \ 386 SYSINSTALL \ 387 SYMVER \ 388 SYSCONS \ 389 TCSH \ 390 TELNET \ 391 TEXTPROC \ 392 TOOLCHAIN \ 393 USB \ 394 WIRELESS \ 395 WPA_SUPPLICANT_EAPOL \ 396 ZFS \ 397 ZONEINFO 398.if defined(WITH_${var}) && defined(WITHOUT_${var}) 399.error WITH_${var} and WITHOUT_${var} can't both be set. 400.endif 401.if defined(MK_${var}) 402.error MK_${var} can't be set by a user. 403.endif 404.if defined(WITHOUT_${var}) 405MK_${var}:= no 406.else 407MK_${var}:= yes 408.endif 409.endfor 410 411# 412# MK_* options which default to "no". 413# 414.for var in \ 415 BIND_IDN \ 416 BIND_LARGE_FILE \ 417 BIND_LIBS \ 418 BIND_SIGCHASE \ 419 BIND_XML \ 420 ${_no_fdt} \ 421 HESIOD \ 422 IDEA 423.if defined(WITH_${var}) && defined(WITHOUT_${var}) 424.error WITH_${var} and WITHOUT_${var} can't both be set. 425.endif 426.if defined(MK_${var}) 427.error MK_${var} can't be set by a user. 428.endif 429.if defined(WITH_${var}) 430MK_${var}:= yes 431.else 432MK_${var}:= no 433.endif 434.endfor 435 436# 437# Force some options off if their dependencies are off. 438# Order is somewhat important. 439# 440.if ${MK_LIBPTHREAD} == "no" 441MK_LIBTHR:= no 442.endif 443 444.if ${MK_LIBTHR} == "no" 445MK_BIND:= no 446.endif 447 448.if ${MK_BIND} == "no" 449MK_BIND_DNSSEC:= no 450MK_BIND_ETC:= no 451MK_BIND_LIBS:= no 452MK_BIND_LIBS_LWRES:= no 453MK_BIND_MTREE:= no 454MK_BIND_NAMED:= no 455MK_BIND_UTILS:= no 456.endif 457 458.if ${MK_BIND_MTREE} == "no" 459MK_BIND_ETC:= no 460.endif 461 462.if ${MK_CDDL} == "no" 463MK_ZFS:= no 464.endif 465 466.if ${MK_CRYPT} == "no" 467MK_OPENSSL:= no 468MK_OPENSSH:= no 469MK_KERBEROS:= no 470.endif 471 472.if ${MK_IPX} == "no" 473MK_NCP:= no 474.endif 475 476.if ${MK_MAIL} == "no" 477MK_MAILWRAPPER:= no 478MK_SENDMAIL:= no 479.endif 480 481.if ${MK_NETGRAPH} == "no" 482MK_ATM:= no 483MK_BLUETOOTH:= no 484.endif 485 486.if ${MK_OPENSSL} == "no" 487MK_OPENSSH:= no 488MK_KERBEROS:= no 489.endif 490 491.if ${MK_PF} == "no" 492MK_AUTHPF:= no 493.endif 494 495.if ${MK_TEXTPROC} == "no" 496MK_GROFF:= no 497.endif 498 499.if ${MK_TOOLCHAIN} == "no" 500MK_GDB:= no 501.endif 502 503# 504# Set defaults for the MK_*_SUPPORT variables. 505# 506 507# 508# MK_*_SUPPORT options which default to "yes" unless their corresponding 509# MK_* variable is set to "no". 510# 511.for var in \ 512 BZIP2 \ 513 GNU \ 514 INET6 \ 515 IPX \ 516 KERBEROS \ 517 KVM \ 518 NETGRAPH \ 519 PAM \ 520 WIRELESS 521.if defined(WITH_${var}_SUPPORT) && defined(WITHOUT_${var}_SUPPORT) 522.error WITH_${var}_SUPPORT and WITHOUT_${var}_SUPPORT can't both be set. 523.endif 524.if defined(MK_${var}_SUPPORT) 525.error MK_${var}_SUPPORT can't be set by a user. 526.endif 527.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no" 528MK_${var}_SUPPORT:= no 529.else 530MK_${var}_SUPPORT:= yes 531.endif 532.endfor 533 534# 535# MK_* options whose default value depends on another option. 536# 537.for vv in \ 538 GSSAPI/KERBEROS \ 539 MAN_UTILS/MAN 540.if defined(WITH_${vv:H}) && defined(WITHOUT_${vv:H}) 541.error WITH_${vv:H} and WITHOUT_${vv:H} can't both be set. 542.endif 543.if defined(MK_${vv:H}) 544.error MK_${vv:H} can't be set by a user. 545.endif 546.if defined(WITH_${vv:H}) 547MK_${vv:H}:= yes 548.elif defined(WITHOUT_${vv:H}) 549MK_${vv:H}:= no 550.else 551MK_${vv:H}:= ${MK_${vv:T}} 552.endif 553.endfor 554 555.endif # !_WITHOUT_SRCCONF 556 557.endif # !target(__<bsd.own.mk>__) 558