bsd.README revision 1.273
1# $NetBSD: bsd.README,v 1.273 2010/06/20 06:54:24 mrg Exp $ 2# @(#)bsd.README 8.2 (Berkeley) 4/2/94 3 4This is the README file for the make "include" files for the NetBSD 5source tree. The files are installed in /usr/share/mk, and are, 6by convention, named with the suffix ".mk". 7 8Note, this file is not intended to replace reading through the .mk 9files for anything tricky. 10 11=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 12 13RANDOM THINGS WORTH KNOWING: 14 15The files are simply C-style #include files, and pretty much behave like 16you'd expect. The syntax is slightly different in that a single '.' is 17used instead of the hash mark, i.e. ".include <bsd.prog.mk>". 18 19One difference that will save you lots of debugging time is that inclusion 20of the file is normally done at the *end* of the Makefile. The reason for 21this is because .mk files often modify variables and behavior based on the 22values of variables set in the Makefile. To make this work, remember that 23the FIRST target found is the target that is used, i.e. if the Makefile has: 24 25 a: 26 echo a 27 a: 28 echo a number two 29 30the command "make a" will echo "a". To make things confusing, the SECOND 31variable assignment is the overriding one, i.e. if the Makefile has: 32 33 a= foo 34 a= bar 35 36 b: 37 echo ${a} 38 39the command "make b" will echo "bar". This is for compatibility with the 40way the V7 make behaved. 41 42It's fairly difficult to make the BSD .mk files work when you're building 43multiple programs in a single directory. It's a lot easier to split up the 44programs than to deal with the problem. Most of the agony comes from making 45the "obj" directory stuff work right, not because we switched to a new version 46of make. So, don't get mad at us, figure out a better way to handle multiple 47architectures so we can quit using the symbolic link stuff. (Imake doesn't 48count.) 49 50The file .depend in the source directory is expected to contain dependencies 51for the source files. This file is read automatically by make after reading 52the Makefile. 53 54The variable DESTDIR works as before. It's not set anywhere but will change 55the tree where the file gets installed. 56 57The profiled libraries are no longer built in a different directory than 58the regular libraries. A new suffix, ".po", is used to denote a profiled 59object, and ".pico" denotes a shared (position-independent) object. 60 61There are various make variables used during the build. 62 63Many variables support a (case sensitive) value of "no" or "yes", 64and are tested with ${VAR} == "no" and ${VAR} != "no" . 65 66 67The basic rule for the variable naming scheme is as follows: 68 69HOST_xxx A command that runs on the host machine regardless of 70 whether or not the system is being cross compiled, or 71 flags for such a command. 72 73MKxxx Can be set to "no" to disable functionality, or 74 "yes" to enable it. 75 Usually defaults to "yes", although some variables 76 default to "no". 77 Due to make(1) implementation issues, if a temporary 78 command-line override of a mk.conf(5) or <bsd.own.mk> 79 setting is required whilst still honoring a particular 80 Makefile's setting of MKxxx, use 81 env MKxxx=value make 82 instead of 83 make MKxxx=value 84 85NOxxx If defined, disables a feature. 86 Not intended for users. 87 This is to allow Makefiles to disable functionality 88 that they don't support (such as missing man pages). 89 NOxxx variables must be defined before <bsd.own.mk> 90 is included. 91 92TOOL_xxx A tool that is provided as part of the USETOOLS 93 framework. When not using the USETOOLS framework, 94 TOOL_xxx variables should refer to tools that are 95 already installed on the host system. 96 97The following variables that control how things are made/installed that 98are not set by default. These should not be set by Makefiles; they're for 99the user to define in MAKECONF (see <bsd.own.mk>, below, or mk.conf(5)) 100or on the make(1) command line: 101 102BUILD If defined, 'make install' checks that the targets in the 103 source directories are up-to-date and remakes them if they 104 are out of date, instead of blindly trying to install 105 out of date or non-existent targets. 106 107MAKEVERBOSE Control how "verbose" the standard make(1) rules are. 108 Default: 2 109 Supported values: 110 0 Minimal output ("quiet") 111 1 Describe what is occurring 112 2 Describe what is occurring and echo the actual command 113 3 Ignore the effect of the "@" prefix in make commands 114 4 Trace shell commands using the shell's -x flag 115 116MKATF If "no", don't build libatf-c, libatf-c++ libraries associated 117 with the Automated Testing Framework (ATF). 118 Default: yes 119 120MKBFD Obsolete, use MKBINUTILS 121 122MKBINUTILS If "no", don't build binutils (gas, ld, etc and libbfd, 123 libopcodes) 124 Default: yes 125 126MKBSDTAR If "yes", use the libarchive based cpio and tar instead of 127 the pax frontends. 128 Default: no 129 130MKCATPAGES If "no", don't build or install the catman pages. 131 Default: yes 132 133MKCOMPAT If "no", don't build or install the src/compat. 134 Default: yes on amd64/sparc64, no elsewhere. 135 136MKCOMPLEX If "no", don't build libm support for <complex.h> 137 Default: yes 138 139MKCRYPTO If "no", no cryptography support will be built into the system, 140 and also acts as "MKKERBEROS=no". 141 Default: yes 142 143MKCRYPTO_IDEA If not "no", IDEA support will be built into libcrypto_idea.a. 144 Default: no 145 146MKCRYPTO_MDC2 If not "no", MDC2 support will be built into libcrypto_mdc2.a 147 Default: no 148 149MKCRYPTO_RC5 If not "no", RC5 support will be built into libcrypto_rc5.a. 150 Default: no 151 152MKCVS If "no", don't build or install cvs(1). 153 Default: yes 154 155MKDEBUG If "no", don't build and install separate debugging symbols 156 into /usr/libdata/debug. 157 Default: no 158 159MKDEBUGLIB Build *_g.a debugging libraries, which are compiled 160 with -DDEBUG. 161 Default: no 162 163MKDOC If "no", don't build or install the documentation. 164 Default: yes 165 166MKDYNAMICROOT If "no", build programs in /bin and /sbin statically, 167 don't install certain libraries in /lib, and don't 168 install the shared linker into /libexec. 169 Default: yes 170 171MKEXTSRC If not "no", 'make build' also descends into either src/extsrc 172 to cross-build programs and libraries externally added by 173 users, and automatically enables creation of those sets. 174 Default: no 175 176MKGCC If "no", don't build gcc(1) or any of the GCC-related 177 libraries (libgcc, libobjc, libstdc++). 178 Default: yes 179 180MKGCCCMDS If "no", don't build gcc(1), but do build the GCC-related 181 libraries (libgcc, libobjc, libstdc++). 182 Default: yes 183 184MKGDB If "no", don't build gdb(1). 185 Default: yes 186 187MKHESIOD If "no", disables building of Hesiod infrastructure 188 (libraries and support programs). 189 Default: yes 190 191MKHOSTOBJ If not "no", for programs intended to be run on the compile 192 host, the name, release, and architecture of the host 193 operating system will be suffixed to the name of the object 194 directory created by "make obj". 195 Default: no 196 197MKHTML If "no", don't build or install the HTML man pages. 198 Default: yes 199 200MKIEEEFP If "no", don't add code for IEEE754/IEC60559 conformance. 201 Has no effect on most platforms. 202 Default: yes 203 204MKSTRIPIDENT Strip the RCS IDs from program binaries and shared libraries. 205 Default: no 206 207MKINET6 If "no", disables building of INET6 (IPv6) infrastructure 208 (libraries and support programs). This option must not be 209 set to "no" if MKX11 is not "no". 210 Default: yes 211 212MKINFO If "no", don't build or install Info documentation from 213 Texinfo source files. 214 Default: yes 215 216MKIPFILTER If "no", don't build or install the IP Filter programs and LKM. 217 Default: yes 218 219MKISCSI If "no", don't build or install iSCSI library or applications 220 (depends on libpthread.) 221 Default: yes 222 223MKKERBEROS If "no", disables building of Kerberos v5 224 infrastructure (libraries and support programs). 225 Default: yes 226 227MKLDAP If "no", disables building of LDAP infrastructure 228 (libraries and support programs). 229 Default: yes 230 231MKLINKLIB If "no", act as "MKLINT=no MKPICINSTALL=no MKPROFILE=no". 232 Also: 233 - don't install the .a libraries 234 - don't install _pic.a libraries on PIC systems 235 - don't build .a libraries on PIC systems 236 - don't install the .so symlink on ELF systems 237 I.e, only install the shared library (and the .so.major 238 symlink on ELF). 239 Default: yes 240 241MKLINT If "no", don't build or install the lint libraries. 242 Default: yes 243 244MKLVM If "no", don't build or install the logical volume manager 245 and device mapper tools and libraries 246 Default: yes 247 248MKMAN If "no", don't build or install the man or catman pages, 249 and also acts as "MKCATPAGES=no MKHTML=no". 250 Default: yes 251 252MKMANDOC If "yes", mandoc is built as tool and used to compile 253 catman or html pages. A directory can be exempted by 254 defining NOMANDOC. Individual man pages are exempted 255 if USETBL is set or NOMANDOC.${target} is set to "yes". 256 Default: no 257 258MKMANZ If not "no", compress manual pages at installation time. 259 Default: no 260 261MKMDNS If "no", disables building of mDNS infrastructure 262 (libraries and support programs). 263 Default: yes 264 265MKNLS If "no", don't build or install the NLS files and locale 266 definition files. 267 Default: yes 268 269MKOBJ If "no", don't enable the rule which creates objdirs, 270 and also acts as "MKOBJDIRS=no". 271 Default: yes 272 273MKOBJDIRS If "no", don't create objdirs during a "make build". 274 Default: no 275 276MKPAM If "no", disables building of PAM authentication 277 infrastructure (libraries and support programs). 278 Default: yes 279 280MKPCC If "no", don't build pcc(1) or any of the PCC-related 281 libraries (libpcc, libpccsoftfloat). 282 Default: no 283 284MKPCCCMDS If "no", don't build pcc(1), but do build the PCC-related 285 libraries (libpcc, libpccsoftfloat). 286 Default: no 287 288MKPF If "no", don't build or install the pf programs and LKM. 289 Default: yes 290 291MKPIC If "no", don't build or install shared libraries, and 292 also acts as "MKPICLIB=no" 293 Default: yes (for MACHINE_ARCHs that support it) 294 295MKPICINSTALL If "no", don't install the *_pic.a libraries. 296 Default: yes 297 298MKPICLIB If "no", don't build *_pic.a libraries, and build the 299 shared object libraries from the .a libraries. 300 A symlink is installed in ${DESTDIR}/usr/lib for the 301 _pic.a library pointing to the .a library. 302 Default: yes 303 304MKPIE If "no", create regular executables. Otherwise create 305 PIE (Position Independent Executables). 306 Default: no 307 308MKPIGZGZIP If "no", only install pigz as pigz, not gzip. 309 Default: no 310 311MKPOSTFIX If "no", don't build or install postfix(1). 312 Default: yes 313 314MKPROFILE If "no", don't build or install the profiling (*_p.a) libraries. 315 Default: yes 316 317MKSHARE If "no", act as "MKCATPAGES=no MKDOC=no MKHTML=no MKINFO=no 318 MKMAN=no MKNLS=no". 319 I.e, don't build catman pages, documentation, Info 320 documentation, man pages, NLS files, ... 321 Default: yes 322 323MKSKEY If "no", disables building of S/key authentication 324 infrastructure (libraries and support programs). 325 Default: yes 326 327MKSOFTFLOAT If not "no", build with options to enable the compiler to 328 generate output containing library calls for floating 329 point and possibly soft-float library support. 330 Default: no 331 332MKSTATICLIB If "no", don't build or install the normal static (*.a) 333 libraries. 334 Default: yes 335 336MKUNPRIVED If not "no", don't set the owner/group/mode when installing 337 files or directories, and keep a metadata log of what 338 the owner/group/mode should be. This allows a 339 non-root "make install". 340 Default: no 341 342MKUPDATE If not "no", 'make install' only installs targets that are 343 more recently modified in the source directories that their 344 installed counterparts. 345 Default: no 346 347MKX11 If not "no", depending on the value of ${X11FLAVOUR}, 348 'make build' also descends into either src/x11 (XFree86) or 349 src/external/mit/xorg (modular Xorg) to cross-build X11 and 350 automatically enables creation of X sets. 351 Default: no 352 353MKX11FONTS If not "no", if ${X11FLAVOUR} is "Xorg", do not build or 354 install the X fonts. The xfont set is still created but 355 will be empty. 356 Default: yes 357 358MKYP If "no", disables building of YP (NIS) 359 infrastructure (libraries and support programs). 360 Default: yes 361 362MKZFS If "no", do not build and install utilities and libraries 363 used to manage ZFS file system. Do not build zfs and solaris 364 compatibility kernel modules. 365 Default: yes on i386/amd64, no elsewhere. 366 367USE_HESIOD If "no", disables building Hesiod support into 368 various system utilities/libraries that support it. 369 If ${MKHESIOD} is "no", USE_HESIOD will also be 370 forced to "no". 371 372USE_INET6 If "no", disables building INET6 (IPv6) support into 373 various system utilities/libraries that support it. 374 If ${MKINET6} is "no", USE_INET6 will also be 375 forced to "no". 376 377USE_JEMALLOC If "no", disables building the "jemalloc" allocator 378 designed for improved performance with threaded 379 applications. The "phkmalloc" allocator as used up 380 before NetBSD-5.0 will be substituted. 381 382USE_KERBEROS If "no", disables building Kerberos v5 383 support into various system utilities/libraries that 384 support it. If ${MKKERBEROS} is "no", USE_KERBEROS 385 will also be forced to "no". 386 387USE_LDAP If "no", disables building LDAP support into various 388 system utilities/libraries that support it. 389 If ${MKLDAP} is "no", USE_LDAP will also be forced to "no". 390 391USE_PAM If "no", disables building PAM authentication support 392 into various system utilities/libraries that support it. 393 If ${MKPAM} is "no", USE_PAM will also be forced to "no". 394 395USE_SKEY If "no", disables building S/key authentication 396 support into various system utilities/libraries that 397 support it. If ${MKSKEY} is "no", USE_SKEY will 398 also be forced to "no". 399 Default: no 400 401USE_SSP If "no", disables GCC stack protection code, which 402 detects stack overflows and aborts the program. The 403 stack protection code imposes a performance penalty 404 of about 5%. 405 Default: "no", unless "USE_FORT" is set to "yes" 406 407USE_FORT If "yes" turns on substitute wrappers for commonly used 408 functions that do not do bounds checking regularly, but 409 they could in some cases by using the gcc 410 __builtin_object_size() function to determine the buffer 411 size where it is known and detect buffer overflows. 412 These substitute functions are in /usr/include/ssp. 413 Default: depends on the part of the source tree 414 415USE_YP If "no", disables building YP (NIS) support into 416 various system utilities/libraries that support it. 417 If ${MKYP} is "no", USE_YP will also be forced to "no". 418 419X11FLAVOUR Set to "Xorg" or "XFree86", depending on whether to build 420 XFree86 or modular Xorg. Only matters if MKX11!=no. 421 Default: "Xorg" on amd64, i386, macppc, shark and sparc64, 422 "XFree86" on everything else. 423 424COPTS.lib<lib> 425OBJCOPTS.lib<lib> 426LDADD.lib<lib> 427CPPFLAGS.lib<lib> 428CXXFLAGS.lib<lib> 429COPTS.<prog> 430OBJCCOPTS.<prog> 431LDADD.<prog> 432CPPFLAGS.<prog> 433CXXFLAGS.<prog> These provide a way to specify additions to the associated 434 variables in a way that applies only to a particular library 435 or program. <lib> corresponds to the LIB variable set in 436 the library's makefile. <prog> corresponds to either PROG 437 or PROG_CXX (if set). For example, if COPTS.libcrypto is 438 set to "-g", "-g" will be added to COPTS only when compiling 439 the crypto library. 440 441=-=-=-=-= sys.mk =-=-=-=-= 442 443The include file <sys.mk> has the default rules for all makes, in the BSD 444environment or otherwise. You probably don't want to touch this file. 445 446=-=-=-=-= bsd.own.mk =-=-=-=-= 447 448The include file <bsd.own.mk> contains source tree configuration parameters, 449such as the owners, groups, etc. for both manual pages and binaries, and 450a few global "feature configuration" parameters. 451 452It has no targets. 453 454To get system-specific configuration parameters, <bsd.own.mk> will try to 455include the file specified by the "MAKECONF" variable. If MAKECONF is not 456set, or no such file exists, the system make configuration file, /etc/mk.conf 457is included. These files may define any of the variables described below. 458 459<bsd.own.mk> sets the following variables, if they are not already defined 460(defaults are in brackets): 461 462NETBSDSRCDIR Top of the NetBSD source tree. 463 If _SRC_TOP_ != "", that will be used as the default, 464 otherwise BSDSRCDIR will be used as the default. 465 Various makefiles within the NetBSD source tree will 466 use this to reference the top level of the source tree. 467 468_SRC_TOP_ Top of the system source tree, as determined by <bsd.own.mk> 469 based on the presence of tools/ and build.sh. This variable 470 is "internal" to <bsd.own.mk>, although its value is only 471 determined once and then propagated to all sub-makes. 472 473BSDSRCDIR The real path to the system sources, so that 'make obj' 474 will work correctly. [/usr/src] 475 476BSDOBJDIR The real path to the system 'obj' tree, so that 'make obj' 477 will work correctly. [/usr/obj] 478 479BINGRP Binary group. [wheel] 480 481BINOWN Binary owner. [root] 482 483BINMODE Binary mode. [555] 484 485NONBINMODE Mode for non-executable files. [444] 486 487MANDIR Base path for manual installation. [/usr/share/man/cat] 488 489MANGRP Manual group. [wheel] 490 491MANOWN Manual owner. [root] 492 493MANMODE Manual mode. [${NONBINMODE}] 494 495MANINSTALL Manual installation type. Space separated list: 496 catinstall, htmlinstall, maninstall 497 [catinstall maninstall htmlinstall] 498 499LDSTATIC Control program linking; if set blank, link everything 500 dynamically. If set to "-static", link everything statically. 501 If not set, programs link according to their makefile. 502 503LIBDIR Base path for library installation. [/usr/lib] 504 505LINTLIBDIR Base path for lint(1) library installation. [/usr/libdata/lint] 506 507LIBGRP Library group. [${BINGRP}] 508 509LIBOWN Library owner. [${BINOWN}] 510 511LIBMODE Library mode. [${NONBINMODE}] 512 513DOCDIR Base path for system documentation (e.g. PSD, USD, etc.) 514 installation. [/usr/share/doc] 515 516HTMLDOCDIR Base path for html system documentation installation. 517 [/usr/share/doc/html] 518 519DOCGRP Documentation group. [wheel] 520 521DOCOWN Documentation owner. [root] 522 523DOCMODE Documentation mode. [${NONBINMODE}] 524 525NLSDIR Base path for Native Language Support files installation. 526 [/usr/share/nls] 527 528NLSGRP Native Language Support files group. [wheel] 529 530NLSOWN Native Language Support files owner. [root] 531 532NLSMODE Native Language Support files mode. [${NONBINMODE}] 533 534X11SRCDIR The path to the xsrc tree. [${NETBSDSRCDIR}/../xsrc, 535 if that exists; otherwise /usr/xsrc] 536 537X11SRCDIR.xc The path to the (old) X11 xc src tree. [${X11SRCDIR}/xfree/xc] 538 539X11SRCDIR.local The path to the local X11 src tree. [${X11SRCDIR}/local] 540 541X11SRCDIR.lib<package> 542X11SRCDIR.<package> 543 The path to the xorg src tree for the specificed package>. 544 [${X11SRCDIR}/external/mit/xorg/<package>/dist] 545 546X11ROOTDIR Root directory of the X11 installation. [/usr/X11R6 or 547 [/usr/X11R7] 548 549X11BINDIR X11 bin directory. [${X11ROOTDIR}/bin] 550 551X11FONTDIR X11 font directory. [${X11ROOTDIR}/lib/X11/fonts] 552 553X11INCDIR X11 include directory. [${X11ROOTDIR}/include] 554 555X11LIBDIR X11 lib/x11 (config) directory. [${X11ROOTDIR}/lib/X11] 556 557X11MANDIR X11 manual directory. [${X11ROOTDIR}/man] 558 559X11USRLIBDIR X11 library directory. [${X11ROOTDIR}/lib] 560 561STRIPFLAG The flag passed to the install program to cause the binary 562 to be stripped. This is to be used when building your 563 own install script so that the entire system can be made 564 stripped/not-stripped using a single knob. [] 565 566COPY The flag passed to the install program to cause the binary 567 to be copied rather than moved. This is to be used when 568 building our own install script so that the entire system 569 can either be installed with copies, or with moves using 570 a single knob. [-c] 571 572MAKEDIRTARGET dir target [params] 573 Runs "cd $${dir} && ${MAKE} [params] $${target}", 574 displaying a "pretty" message whilst doing so. 575 576RELEASEMACHINEDIR 577 Subdirectory used below RELEASEDIR when building 578 a release. [${MACHINE}] 579 580RELEASEMACHINE Subdirectory or path component used for the following 581 paths: 582 distrib/${RELEASEMACHINE} 583 distrib/notes/${RELEASEMACHINE} 584 etc/etc.${RELEASEMACHINE} 585 Used when building a release. [${MACHINE}] 586 587Additionally, the following variables may be set by <bsd.own.mk> or in a 588make configuration file to modify the behavior of the system build 589process (default values are in brackets along with comments, if set by 590<bsd.own.mk>): 591 592USETOOLS Indicates whether the tools specified by ${TOOLDIR} should 593 be used as part of a build in progress. 594 Supported values: 595 596 yes Use the tools from TOOLDIR. 597 Must be set to this if cross-compiling. 598 599 no Do not use the tools from TOOLDIR, but refuse to 600 build native compilation tool components that are 601 version-specific for that tool. 602 603 never Do not use the tools from TOOLDIR, even when 604 building native tool components. This is similar to 605 the traditional NetBSD build method, but does not 606 verify that the compilation tools in use are 607 up-to-date enough in order to build the tree 608 successfully. This may cause build or runtime 609 problems when building the whole NetBSD source tree. 610 611 Default: "yes" if building all or part of a whole NetBSD 612 source tree (detected automatically); "no" otherwise 613 (to preserve traditional semantics of the <bsd.*.mk> 614 make(1) include files). 615 616OBJECT_FMT Object file format. [set to "ELF" on architectures that 617 use ELF -- currently all architectures]. 618 619TOOLCHAIN_MISSING 620 If not "no", this indicates that the platform being built 621 does not have a working in-tree toolchain. If the 622 ${MACHINE_ARCH} in question falls into this category, 623 TOOLCHAIN_MISSING is conditionally assigned the value "yes". 624 Otherwise, the variable is unconditionally assigned the 625 value "no". 626 If not "no", ${MKBINUTILS}, ${MKGCC}, and ${MKGDB} are 627 unconditionally assigned the value "no". 628 629EXTERNAL_TOOLCHAIN 630 This variable is not directly set by <bsd.own.mk>, but 631 including <bsd.own.mk> is the canonical way to gain 632 access to this variable. The variable should be defined 633 either in the user's environment or in the user's mk.conf 634 file. If defined, this variable indicates the root of 635 an external toolchain which will be used to build the 636 tree. For example, if a platform is a ${TOOLCHAIN_MISSING} 637 platform, EXTERNAL_TOOLCHAIN can be used to re-enable the 638 cross-compile framework. 639 640 If EXTERNAL_TOOLCHAIN is defined, ${MKGCC} is unconditionally 641 assigned the value "no", since the external version of the 642 compiler may not be able to build the library components of 643 the in-tree compiler. 644 645 NOTE: This variable is not yet used in as many places as 646 it should be. Expect the exact semantics of this variable 647 to change in the short term as parts of the cross-compile 648 framework continue to be cleaned up. 649 650The following variables are defined to commands to perform the 651appropriate operation, with the default in [brackets]. Note that 652the defaults change if USETOOLS == "yes": 653 654TOOL_AMIGAAOUT2BB aout to Amiga bootblock converter. [amiga-aout2bb] 655 656TOOL_AMIGAELF2BB ELF to Amiga bootblock converter. [amiga-elf2bb] 657 658TOOL_AMIGATXLT Amige assembly language format translator. [amiga-txlt] 659 660TOOL_ASN1_COMPILE ASN1 compiler. [asn1_compile] 661 662TOOL_AWK Pattern-directed scanning/processing language. [awk] 663 664TOOL_CAP_MKDB Create capability database. [cap_mkdb] 665 666TOOL_CAT Concatenate and print files. [cat] 667 668TOOL_CKSUM Display file checksums. [cksum] 669 670TOOL_COMPILE_ET Error table compiler. [compile_et] 671 672TOOL_CONFIG Build kernel compilation directories. [config] 673 674TOOL_CRUNCHGEN Generate crunched binary build environment. [crunchgen] 675 676TOOL_CTAGS Create a tags file. [ctags] 677 678TOOL_DB Manipulate db(3) databases. [db] 679 680TOOL_DISKLABEL Read and write disk pack label. [disklabel] 681 682TOOL_EQN Format equations for groff. [eqn] 683 684TOOL_FDISK MS-DOS partition maintenance program. [fdisk] 685 686TOOL_FGEN IEEE 1275 Open Firmware FCode Tokenizer. [fgen] 687 688TOOL_GENASSYM Generate constants for assembly files. [genassym] 689 690TOOL_GENCAT Generate NLS message catalogs. [gencat] 691 692TOOL_GMAKE GNU make utility. [gmake] 693 694TOOL_GREP Print lines matching a pattern. [grep] 695 696TOOL_GROFF Front end for groff document formatting system. [groff] 697 698TOOL_HEXDUMP Ascii, decimal, hexadecimal, octal dump. [hexdump] 699 700TOOL_HP300MKBOOT Make bootable image for hp300. [hp300-mkboot] 701 702TOOL_HP700MKBOOT Make bootable image for hp700. [hp700-mkboot] 703 704TOOL_INDXBIB Make bibliographic database's inverted index. [indxbib] 705 706TOOL_INSTALLBOOT Install disk bootstrap software. [installboot] 707 708TOOL_INSTALL_INFO Update info/dir entries. [install-info] 709 710TOOL_JOIN Relational database operator. [join] 711 712TOOL_M4 M4 macro language processor. [m4] 713 714TOOL_MACPPCFIXCOFF Fix up xcoff headers for macppc. [macppc-fixcoff] 715 716TOOL_MAKEFS Create file system image from directory tree. [makefs] 717 718TOOL_MAKEINFO Translate Texinfo documents. [makeinfo] 719 720TOOL_MAKEWHATIS Create a whatis.db database. [makewhatis] 721 722TOOL_MDSETIMAGE Set kernel RAM disk image. [mdsetimage] 723 724TOOL_MENUC Menu compiler. [menuc] 725 726TOOL_MIPSELF2ECOFF Convert ELF-format executable to ECOFF for mips. 727 [mips-elf2ecoff] 728 729TOOL_MKCSMAPPER Make charset mapping table. [mkcsmapper] 730 731TOOL_MKESDB Make encoding scheme database. [mkesdb] 732 733TOOL_MKLOCALE Make LC_CTYPE locale files. [mklocale] 734 735TOOL_MKMAGIC Create database for file(1). [file] 736 737TOOL_MKTEMP Make (unique) temporary file name. [mktemp] 738 739TOOL_MSGC Simple message list compiler. [msgc] 740 741TOOL_MTREE Map a directory hierarchy. [mtree] 742 743TOOL_PAX Manipulate file archives and copy directories. [pax] 744 745TOOL_PIC Compile pictures for groff. [pic] 746 747TOOL_PIGZ Parallel compressor. [pigz] 748 749TOOL_POWERPCMKBOOTIMAGE Make bootable image for powerpc. [powerpc-mkbootimage] 750 751TOOL_PWD_MKDB Generate the password databases. [pwd_mkdb] 752 753TOOL_REFER Preprocess bibliographic references for groff. [refer] 754 755TOOL_ROFF_ASCII Generate ASCII groff output. [nroff] 756 757TOOL_ROFF_DVI Generate DVI groff output. [${TOOL_GROFF} -Tdvi] 758 759TOOL_ROFF_HTML Generate HTML groff output. 760 [${TOOL_GROFF} -Tlatin1 -mdoc2html] 761 762TOOL_ROFF_PS Generate PS groff output. [${TOOL_GROFF} -Tps] 763 764TOOL_ROFF_RAW Generate "raw" groff output. [${TOOL_GROFF} -Z] 765 766TOOL_RPCGEN Remote Procedure Call (RPC) protocol compiler. [rpcgen] 767 768TOOL_SED Stream editor. [sed] 769 770TOOL_SOELIM Eliminate .so's from groff input. [soelim] 771 772TOOL_SPARKCRC Generate a crc suitable for use in a sparkive file. 773 [sparkcrc] 774 775TOOL_STAT Display file status. [stat] 776 777TOOL_STRFILE Create a random access file for storing strings. 778 [strfile] 779 780TOOL_SUNLABEL Read or modify a SunOS disk label. [sunlabel] 781 782TOOL_TBL Format tables for groff. [tbl] 783 784TOOL_UUDECODE Uudecode a binary file. [uudecode] 785 786TOOL_VGRIND Grind nice listings of programs. [vgrind -f] 787 788TOOL_ZIC Time zone compiler. [zic] 789 790<bsd.own.mk> is generally useful when building your own Makefiles so that 791they use the same default owners etc. as the rest of the tree. 792 793 794=-=-=-=-= bsd.dep.mk =-=-=-=-= 795 796The include file <bsd.dep.mk> contains the default targets for building 797.depend files. It creates .d files from entries in SRCS and DPSRCS 798that are C, C++, or Objective C source files, and builds .depend from the 799.d files. All other files in SRCS and all of DPSRCS will be used as 800dependencies for the .d files. In order for this to function correctly, 801it should be .included after all other .mk files and directives that may 802modify SRCS or DPSRCS. It uses the following variables: 803 804SRCS List of source files to build the program. 805 806DPSRCS List of source files which are needed for generating 807 dependencies, but are not needed in ${SRCS}. 808 809 810=-=-=-=-= bsd.files.mk =-=-=-=-= 811 812The include file <bsd.files.mk> handles the FILES variables and is included 813from <bsd.lib.mk> and <bsd.prog.mk>, and uses the following variables: 814 815FILES The list of files to install. 816 817CONFIGFILES Similar semantics to FILES, except that the files 818 are installed by the `configinstall' target, 819 not the `install' target. 820 The FILES* variables documented below also apply. 821 822FILESOWN File owner. [${BINOWN}] 823 824FILESGRP File group. [${BINGRP}] 825 826FILESMODE File mode. [${NONBINMODE}] 827 828FILESDIR The location to install the files. 829 830FILESNAME Optional name to install each file as. 831 832FILESOWN_<fn> File owner of the specific file <fn>. 833 834FILESGRP_<fn> File group of the specific file <fn>. 835 836FILESMODE_<fn> File mode of the specific file <fn>. 837 838FILESDIR_<fn> The location to install the specific file <fn>. 839 840FILESNAME_<fn> Optional name to install <fn> as. 841 842FILESBUILD_<fn> A value different from "no" will add the file to the list of 843 targets to be built by `realall'. Users of that variable 844 should provide a target to build the file. 845 846 847BUILDSYMLINKS List of two word items: 848 lnsrc lntgt 849 For each lnsrc item, create a symlink named lntgt. 850 The lntgt symlinks are removed by the cleandir target. 851 852UUDECODE_FILES List of files which are stored as <file>.uue in the source 853 tree. Each one will be decoded with ${TOOL_UUDECODE}. 854 The source files have a `.uue' suffix, the generated files do 855 not. 856 857UUDECODE_FILES_RENAME_<fn> 858 Rename the output from the decode to the provided name. 859 860 *NOTE: These files are simply decoded, with no install or other 861 rule applying implicitly except being added to the clean 862 target. 863 864=-=-=-=-= bsd.gcc.mk =-=-=-=-= 865 866The include file <bsd.gcc.mk> computes various parameters related to GCC 867support libraries. It defines no targets. <bsd.own.mk> MUST be included 868before <bsd.gcc.mk>. 869 870The primary users of <bsd.gcc.mk> are <bsd.prog.mk> and <bsd.lib.mk>, each 871of which need to know where to find certain GCC support libraries. 872 873The behavior of <bsd.gcc.mk> is influenced by the EXTERNAL_TOOLCHAIN variable, 874which is generally set by the user. If EXTERNAL_TOOLCHAIN it set, then 875the compiler is asked where to find the support libraries, otherwise the 876support libraries are found in ${DESTDIR}/usr/lib. 877 878<bsd.gcc.mk> sets the following variables: 879 880_GCC_CRTBEGIN The full path name to crtbegin.o. 881 882_GCC_CRTBEGINS The full path name to crtbeginS.o. 883 884_GCC_CRTEND The full path name to crtend.o. 885 886_GCC_CRTENDS The full path name to crtendS.o. 887 888_GCC_LIBGCCDIR The directory where libgcc.a is located. 889 890 891=-=-=-=-= bsd.inc.mk =-=-=-=-= 892 893The include file <bsd.inc.mk> defines the includes target and uses the 894variables: 895 896INCS The list of include files. 897 898INCSDIR The location to install the include files. 899 900INCSNAME Target name of the include file, if only one; same as 901 FILESNAME, but for include files. 902 903INCSYMLINKS Similar to SYMLINKS in <bsd.links.mk>, except that these 904 are installed in the 'includes' target and not the 905 (much later) 'install' target. 906 907INCSNAME_<file> The name file <file> should be installed as, if not <file>, 908 same as FILESNAME_<file>, but for include files. 909 910 911=-=-=-=-= bsd.info.mk =-=-=-=-= 912 913The include file <bsd.info.mk> is used to generate and install GNU Info 914documentation from respective Texinfo source files. It defines three 915implicit targets (.txi.info, .texi.info, and .texinfo.info), and uses the 916following variables: 917 918TEXINFO List of Texinfo source files. Info documentation will 919 consist of single files with the extension replaced by 920 .info. 921 922INFOFLAGS Flags to pass to makeinfo. [] 923 924 925=-=-=-=-= bsd.kernobj.mk =-=-=-=-= 926 927The include file <bsd.kernobj.mk> defines variables related to the 928location of kernel sources and object directories. 929 930KERNSRCDIR Is the location of the top of the kernel src. 931 [${_SRC_TOP_}/sys] 932 933KERNARCHDIR Is the location of the machine dependent kernel sources. 934 [arch/${MACHINE}] 935 936KERNCONFDIR Is where the configuration files for kernels are found. 937 [${KERNSRCDIR}/${KERNARCHDIR}/conf] 938 939KERNOBJDIR Is the kernel build directory. The kernel GENERIC for 940 instance will be compiled in ${KERNOBJDIR}/GENERIC. 941 The default value is 942 ${MAKEOBJDIRPREFIX}${KERNSRCDIR}/${KERNARCHDIR}/compile 943 if it exists or the target 'obj' is being made. 944 Otherwise the default is 945 ${KERNSRCDIR}/${KERNARCHDIR}/compile. 946 947It is important that Makefiles (such as those under src/distrib) that 948wish to find compiled kernels use <bsd.kernobj.mk> and ${KERNOBJDIR} 949rather than make assumptions about the location of the compiled kernel. 950 951 952=-=-=-=-= bsd.kinc.mk =-=-=-=-= 953 954The include file <bsd.kinc.mk> defines the many targets (includes, 955subdirectories, etc.), and is used by kernel makefiles to handle 956include file installation. It is intended to be included alone, by 957kernel Makefiles. It uses similar variables to <bsd.inc.mk>. 958Please see <bsd.kinc.mk> for more details, and keep the documentation 959in that file up to date. 960 961 962=-=-=-=-= bsd.lib.mk =-=-=-=-= 963 964The include file <bsd.lib.mk> has support for building libraries. It has 965the same eight targets as <bsd.prog.mk>: all, clean, cleandir, depend, 966includes, install, lint, and tags. Additionally, it has a checkver target 967which checks for installed shared object libraries whose version is greater 968that the version of the source. It has a limited number of suffixes, 969consistent with the current needs of the BSD tree. <bsd.lib.mk> includes 970<bsd.shlib.mk> to get shared library parameters. 971 972It sets/uses the following variables: 973 974LIB The name of the library to build. 975 976LIBDIR Target directory for libraries. 977 978MKARZERO Normally, ar(1) sets the timestamps, uid, gid and 979 permissions in files inside its archives to those of 980 the file it was fed. This leads to non-reproduceable 981 builds. If MKARZERO is set to "yes" (default is "no") 982 then the "D" flag is passed to ar, causing the 983 timestamp, uid and gid to be zeroed and the file 984 permissions to be set to 644. This allows .a files 985 from different builds to be bit identical. 986 987SHLIBINSTALLDIR Target directory for shared libraries if ${USE_SHLIBDIR} 988 is not "no". 989 990SHLIB_MAJOR 991SHLIB_MINOR 992SHLIB_TEENY Major, minor, and teeny version numbers of shared library 993 994USE_SHLIBDIR If not "no", use ${SHLIBINSTALLDIR} instead of ${LIBDIR} 995 as the path to install shared libraries to. 996 USE_SHLIBDIR must be defined before <bsd.own.mk> is included. 997 Default: no 998 999LIBISMODULE If not "no", install as ${LIB}.so (without the "lib" prefix), 1000 and act as "MKDEBUGLIB=no MKLINT=no MKPICINSTALL=no 1001 MKPROFILE=no MKSTATICLIB=no". 1002 Default: no 1003 1004LIBISPRIVATE If not "no", act as "MKDEBUGLIB=no MKLINT=no MKPIC=no 1005 MKPROFILE=no", and don't install the (.a) library. 1006 This is useful for "build only" helper libraries. 1007 Default: no 1008 1009LIBISCXX If not "no", Use ${CXX} instead of ${CC} to link 1010 shared libraries. 1011 This is useful for C++ libraries. 1012 Default: no 1013 1014LINTLIBDIR Target directory for lint libraries. 1015 1016LIBGRP Library group. 1017 1018LIBOWN Library owner. 1019 1020LIBMODE Library mode. 1021 1022LDADD Additional loader objects. 1023 1024MAN The manual pages to be installed (use a .1 - .9 suffix). 1025 1026NOCHECKVER_<library> 1027NOCHECKVER If set, disables checking for installed shared object 1028 libraries with versions greater than the source. A 1029 particular library name, without the "lib" prefix, may 1030 be appended to the variable name to disable the check for 1031 only that library. 1032 1033SRCS List of source files to build the library. Suffix types 1034 .s, .c, and .f are supported. Note, .s files are preferred 1035 to .c files of the same name. (This is not the default for 1036 versions of make.) 1037 1038LIBDPLIBS A list of the tuples: 1039 libname path-to-srcdir-of-libname 1040 1041 For each tuple; 1042 * LIBDO.libname contains the .OBJDIR of the library 1043 `libname', and if it is not set it is determined 1044 from the srcdir and added to MAKEOVERRIDES (the 1045 latter is to allow for build time optimization). 1046 * LDADD gets -L${LIBDO.libname} -llibname added. 1047 * DPADD gets ${LIBDO.libname}/liblibname.so or 1048 ${LIBDO.libname}/liblibname.a added. 1049 1050 This variable may be used for individual libraries, as 1051 well as in parent directories to cache common libraries 1052 as a build-time optimization. 1053 1054The include file <bsd.lib.mk> includes the file named "../Makefile.inc" 1055if it exists, as well as the include file <bsd.man.mk>. 1056 1057It has rules for building profiled objects; profiled libraries are 1058built by default. 1059 1060Libraries are ranlib'd when made. 1061 1062 1063=-=-=-=-= bsd.links.mk =-=-=-=-= 1064 1065The include file <bsd.links.mk> handles the LINKS and SYMLINKS variables 1066and is included from from <bsd.lib.mk> and <bsd.prog.mk>. 1067 1068LINKSOWN, LINKSGRP, and LINKSMODE, are relevant only if a metadata log 1069is used. The defaults may be modified by other bsd.*.mk files which 1070include bsd.links.mk. In the future, these variables may be replaced 1071by a method for explicitly recording hard links in a metadata log. 1072 1073LINKS The list of hard links, consisting of pairs of paths: 1074 source-file target-file 1075 ${DESTDIR} is prepended to both paths before linking. 1076 For example, to link /bin/test and /bin/[, use: 1077 LINKS=/bin/test /bin/[ 1078 1079CONFIGLINKS Similar semantics to LINKS, except that the links 1080 are installed by the `configinstall' target, 1081 not the `install' target. 1082 1083SYMLINKS The list of symbolic links, consisting of pairs of paths: 1084 source-file target-file 1085 ${DESTDIR} is only prepended to target-file before linking. 1086 For example, to symlink /usr/bin/tar to /bin/tar resulting 1087 in ${DESTDIR}/usr/bin/tar -> /bin/tar: 1088 SYMLINKS=/bin/tar /usr/bin/tar 1089 1090CONFIGSYMLINKS Similar semantics to SYMLINKS, except that the symbolic links 1091 are installed by the `configinstall' target, 1092 not the `install' target. 1093 1094LINKSOWN Link owner. [${BINOWN}] 1095 1096LINKSGRP Link group. [${BINGRP}] 1097 1098LINKSMODE Link mode. [${NONBINMODE}] 1099 1100LINKSOWN_<fn> Link owner of the specific file <fn>. 1101 1102LINKSGRP_<fn> Link group of the specific file <fn>. 1103 1104LINKSMODE_<fn> Link mode of the specific file <fn>. 1105 1106 1107=-=-=-=-= bsd.man.mk =-=-=-=-= 1108 1109The include file <bsd.man.mk> handles installing manual pages and their 1110links. 1111 1112It has a three targets: 1113 1114 catinstall: 1115 Install the preformatted manual pages and their links. 1116 htmlinstall: 1117 Install the HTML manual pages and their links. 1118 maninstall: 1119 Install the manual page sources and their links. 1120 1121It sets/uses the following variables: 1122 1123MANDIR Base path for manual installation. 1124 1125MANGRP Manual group. 1126 1127MANOWN Manual owner. 1128 1129MANMODE Manual mode. 1130 1131MANSUBDIR Subdirectory under the manual page section, i.e. "/vax" 1132 or "/tahoe" for machine specific manual pages. 1133 1134MAN The manual pages to be installed (use a .1 - .9 suffix). 1135 1136MLINKS List of manual page links (using a .1 - .9 suffix). The 1137 linked-to file must come first, the linked file second, 1138 and there may be multiple pairs. The files are soft-linked. 1139 1140The include file <bsd.man.mk> includes a file named "../Makefile.inc" if 1141it exists. 1142 1143 1144=-=-=-=-= bsd.obj.mk =-=-=-=-= 1145 1146The include file <bsd.obj.mk> defines targets related to the creation 1147and use of separated object and source directories. 1148 1149If an environment variable named MAKEOBJDIRPREFIX is set, make(1) uses 1150${MAKEOBJDIRPREFIX}${.CURDIR} as the name of the object directory if 1151it exists. Otherwise make(1) looks for the existence of a 1152subdirectory (or a symlink to a directory) of the source directory 1153into which built targets should be placed. If an environment variable 1154named MAKEOBJDIR is set, make(1) uses its value as the name of the 1155object directory; failing that, make first looks for a subdirectory 1156named "obj.${MACHINE}", and if that doesn't exist, it looks for "obj". 1157 1158Object directories are not created automatically by make(1) if they 1159don't exist; you need to run a separate "make obj". (This will happen 1160during a top-level build if "MKOBJDIRS" is set to a value other than 1161"no"). When the source directory is a subdirectory of ${BSDSRCDIR} -- 1162and this is determined by a simple string prefix comparison -- object 1163directories are created in a separate object directory tree, and a 1164symlink to the object directory in that tree is created in the source 1165directory; otherwise, "make obj" assumes that you're not in the main 1166source tree and that it's not safe to use a separate object tree. 1167 1168Several variables used by <bsd.obj.mk> control exactly what 1169directories and links get created during a "make obj": 1170 1171MAKEOBJDIR If set, this is the component name of the object 1172 directory. 1173 1174OBJMACHINE If this is set but MAKEOBJDIR is not set, creates 1175 object directories or links named "obj.${MACHINE}"; 1176 otherwise, just creates ones named "obj". 1177 1178USR_OBJMACHINE If set, and the current directory is a subdirectory of 1179 ${BSDSRCDIR}, create object directory in the 1180 corresponding subdirectory of ${BSDOBJDIR}.${MACHINE}; 1181 otherwise, create it in the corresponding subdirectory 1182 of ${BSDOBJDIR} 1183 1184BUILDID If set, the contents of this variable are appended 1185 to the object directory name. If OBJMACHINE is also 1186 set, ".${BUILDID}" is added after ".${MACHINE}". 1187 1188 1189=-=-=-=-= bsd.prog.mk =-=-=-=-= 1190 1191The include file <bsd.prog.mk> handles building programs from one or 1192more source files, along with their manual pages. It has a limited number 1193of suffixes, consistent with the current needs of the BSD tree. 1194<bsd.prog.mk> includes <bsd.shlib.mk> to get shared library parameters. 1195 1196It has eight targets: 1197 1198 all: 1199 build the program and its manual page. This also 1200 creates a GDB initialization file (.gdbinit) in 1201 the objdir. The .gdbinit file sets the shared library 1202 prefix to ${DESTDIR} to facilitate cross-debugging. 1203 clean: 1204 remove the program, any object files and the files a.out, 1205 Errs, errs, mklog, and ${PROG}.core. 1206 cleandir: 1207 remove all of the files removed by the target clean, as 1208 well as .depend, tags, and any manual pages. 1209 `distclean' is a synonym for `cleandir'. 1210 depend: 1211 make the dependencies for the source files, and store 1212 them in the file .depend. 1213 includes: 1214 install any header files. 1215 install: 1216 install the program and its manual pages; if the Makefile 1217 does not itself define the target install, the targets 1218 beforeinstall and afterinstall may also be used to cause 1219 actions immediately before and after the install target 1220 is executed. 1221 lint: 1222 run lint on the source files 1223 tags: 1224 create a tags file for the source files. 1225 1226It sets/uses the following variables: 1227 1228BINGRP Binary group. 1229 1230BINOWN Binary owner. 1231 1232BINMODE Binary mode. 1233 1234CLEANFILES Additional files to remove for the clean and cleandir targets. 1235 1236COPTS Additional flags to the compiler when creating C objects. 1237 1238COPTS.<fn> Additional flags to the compiler when creating the 1239 C objects for <fn>. 1240 For <fn>.[ly], "<fn>.c" must be used. 1241 1242CPUFLAGS Additional flags to the compiler/assembler to select 1243 CPU instruction set options, CPU tuning options, etc. 1244 1245CPUFLAGS.<fn> Additional flags to the compiler/assembler for <fn>. 1246 For <fn>.[ly], "<fn>.c" must be used. 1247 1248CPPFLAGS Additional flags to the C pre-processor. 1249 1250CPPFLAGS.<fn> Additional flags to the C pre-processor for <fn>. 1251 For <fn>.[ly], "<fn>.c" must be used. 1252 1253GDBINIT List of GDB initialization files to add to "source" 1254 directives in the .gdbinit file that is created in the 1255 objdir. 1256 1257LDADD Additional loader objects. Usually used for libraries. 1258 For example, to load with the compatibility and utility 1259 libraries, use: 1260 1261 LDADD+=-lutil -lcompat 1262 1263LDFLAGS Additional linker flags (passed to ${CC} during link). 1264 1265LINKS See <bsd.links.mk> 1266 1267OBJCOPTS Additional flags to the compiler when creating ObjC objects. 1268 1269OBJCOPTS.<fn> Additional flags to the compiler when creating the 1270 ObjC objects for <fn>. 1271 For <fn>.[ly], "<fn>.c" must be used. 1272 1273SYMLINKS See <bsd.links.mk> 1274 1275MAN Manual pages (should end in .1 - .9). If no MAN variable is 1276 defined, "MAN=${PROG}.1" is assumed. 1277 1278PAXCTL_FLAGS If defined, run paxctl(1) on the program binary after link 1279 time, with the value of this variable as args to paxctl(1). 1280 1281PAXCTL_FLAGS.${PROG} Custom override for PAXCTL_FLAGS. 1282 1283PROG The name of the program to build. If not supplied, nothing 1284 is built. 1285 1286PROG_CXX If defined, the name of the program to build. Also 1287 causes <bsd.prog.mk> to link the program with the C++ 1288 compiler rather than the C compiler. PROG_CXX overrides 1289 the value of PROG if PROG is also set. 1290 1291PROGNAME The name that the above program will be installed as, if 1292 different from ${PROG}. 1293 1294SRCS List of source files to build the program. If SRCS is not 1295 defined, it's assumed to be ${PROG}.c. 1296 1297DPSRCS List of source files which are needed for generating 1298 dependencies, but are not needed in ${SRCS}. 1299 1300DPADD Additional dependencies for the program. Usually used for 1301 libraries. For example, to depend on the compatibility and 1302 utility libraries use: 1303 1304 DPADD+=${LIBCOMPAT} ${LIBUTIL} 1305 1306 The following libraries are predefined for DPADD: 1307 1308 LIBCRT0?= ${DESTDIR}/usr/lib/crt0.o 1309 LIBARCHIVE?= ${DESTDIR}/usr/lib/libarchive.a 1310 LIBASN1?= ${DESTDIR}/usr/lib/libasn1.a 1311 LIBBLUETOOTH?= ${DESTDIR}/usr/lib/libbluetooth.a 1312 LIBBSDMALLOC?= ${DESTDIR}/usr/lib/libbsdmalloc.a 1313 LIBBZ2?= ${DESTDIR}/usr/lib/libbz2.a 1314 LIBC?= ${DESTDIR}/usr/lib/libc.a 1315 LIBC_PIC?= ${DESTDIR}/usr/lib/libc_pic.a 1316 LIBCOM_ERR?= ${DESTDIR}/usr/lib/libcom_err.a 1317 LIBCOMPAT?= ${DESTDIR}/usr/lib/libcompat.a 1318 LIBCRYPT?= ${DESTDIR}/usr/lib/libcrypt.a 1319 LIBCRYPTO?= ${DESTDIR}/usr/lib/libcrypto.a 1320 LIBCRYPTO_IDEA?=${DESTDIR}/usr/lib/libcrypto_idea.a 1321 LIBCRYPTO_MDC2?=${DESTDIR}/usr/lib/libcrypto_mdc2.a 1322 LIBCRYPTO_RC5?= ${DESTDIR}/usr/lib/libcrypto_rc5.a 1323 LIBCURSES?= ${DESTDIR}/usr/lib/libcurses.a 1324 LIBDBM?= ${DESTDIR}/usr/lib/libdbm.a 1325 LIBDES?= ${DESTDIR}/usr/lib/libdes.a 1326 LIBEDIT?= ${DESTDIR}/usr/lib/libedit.a 1327 LIBEVENT?= ${DESTDIR}/usr/lib/libevent.a 1328 LIBFETCH?= ${DESTDIR}/usr/lib/libfetch.a 1329 LIBFORM?= ${DESTDIR}/usr/lib/libform.a 1330 LIBGCC?= ${DESTDIR}/usr/lib/libgcc.a 1331 LIBGNUMALLOC?= ${DESTDIR}/usr/lib/libgnumalloc.a 1332 LIBGSSAPI?= ${DESTDIR}/usr/lib/libgssapi.a 1333 LIBHDB?= ${DESTDIR}/usr/lib/libhdb.a 1334 LIBINTL?= ${DESTDIR}/usr/lib/libintl.a 1335 LIBIPSEC?= ${DESTDIR}/usr/lib/libipsec.a 1336 LIBKADM5CLNT?= ${DESTDIR}/usr/lib/libkadm5clnt.a 1337 LIBKADM5SRV?= ${DESTDIR}/usr/lib/libkadm5srv.a 1338 LIBKAFS?= ${DESTDIR}/usr/lib/libkafs.a 1339 LIBKRB5?= ${DESTDIR}/usr/lib/libkrb5.a 1340 LIBKVM?= ${DESTDIR}/usr/lib/libkvm.a 1341 LIBL?= ${DESTDIR}/usr/lib/libl.a 1342 LIBLBER?= ${DESTDIR}/usr/lib/liblber.a 1343 LIBLDAP?= ${DESTDIR}/usr/lib/libldap.a 1344 LIBLDAP_R?= ${DESTDIR}/usr/lib/libldap_r.a 1345 LIBM?= ${DESTDIR}/usr/lib/libm.a 1346 LIBMENU?= ${DESTDIR}/usr/lib/libmenu.a 1347 LIBOBJC?= ${DESTDIR}/usr/lib/libobjc.a 1348 LIBOSSAUDIO?= ${DESTDIR}/usr/lib/libossaudio.a 1349 LIBPAM?= ${DESTDIR}/usr/lib/libpam.a 1350 LIBPCAP?= ${DESTDIR}/usr/lib/libpcap.a 1351 LIBPCI?= ${DESTDIR}/usr/lib/libpci.a 1352 LIBPMC?= ${DESTDIR}/usr/lib/libpmc.a 1353 LIBPOSIX?= ${DESTDIR}/usr/lib/libposix.a 1354 LIBPTHREAD?= ${DESTDIR}/usr/lib/libpthread.a 1355 LIBPTHREAD_DBG?=${DESTDIR}/usr/lib/libpthread_dbg.a 1356 LIBRADIUS?= ${DESTDIR}/usr/lib/libradius.a 1357 LIBRESOLV?= ${DESTDIR}/usr/lib/libresolv.a 1358 LIBRMT?= ${DESTDIR}/usr/lib/librmt.a 1359 LIBROKEN?= ${DESTDIR}/usr/lib/libroken.a 1360 LIBRPCSVC?= ${DESTDIR}/usr/lib/librpcsvc.a 1361 LIBRT?= ${DESTDIR}/usr/lib/librt.a 1362 LIBSKEY?= ${DESTDIR}/usr/lib/libskey.a 1363 LIBSL?= ${DESTDIR}/usr/lib/libsl.a 1364 LIBSS?= ${DESTDIR}/usr/lib/libss.a 1365 LIBSSH?= ${DESTDIR}/usr/lib/libssh.a 1366 LIBSSL?= ${DESTDIR}/usr/lib/libssl.a 1367 LIBSSP?= ${DESTDIR}/usr/lib/libssp.a 1368 LIBSTDCXX?= ${DESTDIR}/usr/lib/libstdc++.a 1369 LIBSUPCXX?= ${DESTDIR}/usr/lib/libsupc++.a 1370 LIBTERMINFO?= ${DESTDIR}/usr/lib/libterminfo.a 1371 LIBUSBHID?= ${DESTDIR}/usr/lib/libusbhid.a 1372 LIBUTIL?= ${DESTDIR}/usr/lib/libutil.a 1373 LIBWRAP?= ${DESTDIR}/usr/lib/libwrap.a 1374 LIBY?= ${DESTDIR}/usr/lib/liby.a 1375 LIBZ?= ${DESTDIR}/usr/lib/libz.a 1376 1377SHAREDSTRINGS If defined, a new .c.o rule is used that results in shared 1378 strings, using xstr(1). Note that this will not work with 1379 parallel makes. 1380 1381STRIPFLAG The flag passed to the install program to cause the binary 1382 to be stripped. 1383 1384SUBDIR A list of subdirectories that should be built as well. 1385 Each of the targets will execute the same target in the 1386 subdirectories. 1387 1388SCRIPTS A list of interpreter scripts [file.{sh,csh,pl,awk,...}]. 1389 These are installed exactly like programs. 1390 1391SCRIPTSDIR The location to install the scripts. Each script can be 1392 installed to a separate path by setting SCRIPTSDIR_<script>. 1393 1394SCRIPTSNAME The name that the above program will be installed as, if 1395 different from ${SCRIPTS}. These can be further specialized 1396 by setting SCRIPTSNAME_<script>. 1397 1398FILES See description of <bsd.files.mk>. 1399 1400SHLINKDIR Target directory for shared linker. See description of 1401 <bsd.own.mk> for additional information about this variable. 1402 1403The include file <bsd.prog.mk> includes the file named "../Makefile.inc" 1404if it exists, as well as the include file <bsd.man.mk>. 1405 1406Some simple examples: 1407 1408To build foo from foo.c with a manual page foo.1, use: 1409 1410 PROG= foo 1411 1412 .include <bsd.prog.mk> 1413 1414To build foo from foo.c with a manual page foo.2, add the line: 1415 1416 MAN= foo.2 1417 1418If foo does not have a manual page at all, add the line: 1419 1420 MKMAN= no 1421 1422If foo has multiple source files, add the line: 1423 1424 SRCS= a.c b.c c.c d.c 1425 1426 1427=-=-=-=-= bsd.rpc.mk =-=-=-=-= 1428 1429The include file <bsd.rpc.mk> contains a makefile fragment used to 1430construct source files built by rpcgen. 1431 1432The following macros may be defined in makefiles which include 1433<bsd.rpc.mk> in order to control which files get built and how they 1434are to be built: 1435 1436RPC_INCS: construct .h file from .x file 1437RPC_XDRFILES: construct _xdr.c from .x file 1438 (for marshalling/unmarshalling data types) 1439RPC_SVCFILES: construct _svc.c from .x file 1440 (server-side stubs) 1441RPC_SVCFLAGS: Additional flags passed to builds of RPC_SVCFILES. 1442 1443RPC_XDIR: Directory containing .x/.h files 1444 1445 1446=-=-=-=-= bsd.shlib.mk =-=-=-=-= 1447 1448The include file <bsd.shlib.mk> computes parameters for shared library 1449installation and use. It defines no targets. <bsd.own.mk> MUST be 1450included before <bsd.shlib.mk>. 1451 1452<bsd.own.mk> sets the following variables, if they are not already defined 1453(defaults are in brackets): 1454 1455SHLIBINSTALLDIR If ${USE_SHLIBDIR} is not "no", use ${SHLIBINSTALLDIR} 1456 instead of ${LIBDIR} as the base path for shared library 1457 installation. [/lib] 1458 1459SHLIBDIR The path to USE_SHLIBDIR shared libraries to use when building 1460 a program. [/lib for programs in /bin and /sbin, /usr/lib 1461 for all others.] 1462 1463_LIBSODIR Set to ${SHLIBINSTALLDIR} if ${USE_SHLIBDIR} is not "no", 1464 otherwise set to ${LIBDIR} 1465 1466SHLINKINSTALLDIR Base path for shared linker. [/libexec] 1467 1468SHLINKDIR Path to use for shared linker when building a program. 1469 [/libexec for programs in /bin and /sbin, /usr/libexec for 1470 all others.] 1471 1472 1473=-=-=-=-= bsd.subdir.mk =-=-=-=-= 1474 1475The include file <bsd.subdir.mk> contains the default targets for building 1476subdirectories. It has the same eight targets as <bsd.prog.mk>: all, 1477clean, cleandir, depend, includes, install, lint, and tags. It uses the 1478following variables: 1479 1480NOSUBDIR If this variable is defined, then the SUBDIR variable 1481 will be ignored and subdirectories will not be processed. 1482 1483SUBDIR For all of the directories listed in ${SUBDIR}, the 1484 specified directory will be visited and the target made. 1485 1486 As a special case, the use of a token .WAIT as an 1487 entry in SUBDIR acts as a synchronization barrier 1488 when multiple make jobs are run; subdirs before the 1489 .WAIT must complete before any subdirs after .WAIT are 1490 started. See make(1) for some caveats on use of .WAIT 1491 and other special sources. 1492 1493 1494=-=-=-=-= bsd.sys.mk =-=-=-=-= 1495 1496The include file <bsd.sys.mk> is used by <bsd.prog.mk> and 1497<bsd.lib.mk>. It contains overrides that are used when building 1498the NetBSD source tree. 1499 1500The following variables control how various files are compiled/built. 1501(Note that these may be overridden in <bsd.own.mk> if USETOOLS == "yes"): 1502 1503AR Create, modify, and extract from archives. [ar] 1504 1505ARFLAGS Options to ${AR}. [rl] 1506 1507AS Assembler. [as] 1508 1509AFLAGS Options to ${CC} when compiling or linking .s or .S 1510 assembly source files. [] 1511 1512BUILDSEED GCC uses random numbers when compiling C++ code. 1513 If this option is present, seed the random number 1514 generator based on the value, source file names and 1515 the output file name to make builds more deterministic. 1516 Additional information is available in the GCC 1517 documentation of -frandom-seed. 1518 1519CC C compiler. [cc] 1520 1521CFLAGS Options to ${CC}. [Usually -O or -O2] 1522 1523CPP C Pre-Processor. [cpp] 1524 1525CPPFLAGS Options to ${CPP}. [] 1526 1527CPUFLAGS Optimization flags for ${CC}. [] 1528 1529CXX C++ compiler. [c++] 1530 1531CXXFLAGS Options to ${CXX}. [${CFLAGS}] 1532 1533ELF2ECOFF Convert ELF-format executable to ECOFF. [elf2ecoff] 1534 1535FC Fortran compiler. [f77] 1536 1537FFLAGS Options to {$FC}. [-O] 1538 1539HOST_SH Shell. This must be an absolute path, because it may be 1540 substituted into "#!" lines in scripts. [/bin/sh] 1541 1542INSTALL install(1) command. [install] 1543 1544LEX Lexical analyzer. [lex] 1545 1546LFLAGS Options to ${LEX}. [] 1547 1548LPREFIX Symbol prefix for ${LEX} (see -P option in lex(1)) [yy] 1549 1550LD Linker. [ld] 1551 1552LDFLAGS Options to ${CC} during the link process. [] 1553 1554LINT C program verifier. [lint] 1555 1556LINTFLAGS Options to ${LINT}. [-chapbxzFS] 1557 1558LORDER List dependencies for object files. [lorder] 1559 1560MAKE make(1). [make] 1561 1562MKDEP Construct Makefile dependency list. [mkdep] 1563 1564NM List symbols from object files. [nm] 1565 1566PC Pascal compiler. [pc] (Not present) 1567 1568PFLAGS Options to ${PC}. [] 1569 1570OBJC Objective C compiler. [${CC}] 1571 1572OBJCFLAGS Options to ${OBJC}. [${CFLAGS}] 1573 1574OBJCOPY Copy and translate object files. [objcopy] 1575 1576OBJDUMP Display information from object files. [objdump] 1577 1578RANLIB Generate index to archive. [ranlib] 1579 1580SIZE List section sizes and total size. [size] 1581 1582STRIP Discard symbols from object files. [strip] 1583 1584TSORT Topological sort of a directed graph. [tsort -q] 1585 1586YACC LALR(1) parser generator. [yacc] 1587 1588YFLAGS Options to ${YACC}. [] 1589 1590YHEADER If defined, add "-d" to YFLAGS, and add dependencies 1591 from <file>.y to <file>.h and <file>.c, and add 1592 <foo>.h to CLEANFILES. 1593 1594YPREFIX If defined, add "-p ${YPREFIX}" to YFLAGS. 1595 1596 1597Other variables of note (incomplete list): 1598 1599NOGCCERROR If defined, prevents passing certain ${CFLAGS} to GCC 1600 that cause warnings to be fatal, such as: 1601 -Werror -Wa,--fatal-warnings 1602 (The latter being for as(1).) 1603 1604WARNS Crank up GCC warning options; the distinct levels are: 1605 WARNS=1 1606 WARNS=2 1607 WARNS=3 1608 WARNS=4 1609 1610=-=-=-=-= bsd.x11.mk =-=-=-=-= 1611 1612The include file <bsd.x11.mk> contains parameters and targets for 1613cross-building X11 from ${X11SRCDIR.xc} / ${X11MITSRCDIR.*}. 1614It should be included after the general Makefile contents but before 1615the include files such as <bsd.prog.mk> and <bsd.lib.mk>. 1616 1617It provides the following targets: 1618 .man.1 .man.3 .man.4 .man.5 .man.7: 1619 If ${MAN} or ${PROG} is set and ${MKMAN} != "no", 1620 these rules convert from X11's manual page source 1621 into an mdoc.old source file. 1622 cleanx11man: 1623 Clean up the mdoc.old files generated by the above. 1624 1625It sets the following variables: 1626 1627BINDIR Set to ${X11BINDIR}. 1628 To override, define after including <bsd.x11.mk> 1629 1630LIBDIR Set to ${X11USRLIBDIR}. 1631 To override, define after including <bsd.x11.mk> 1632 1633MANDIR Set to ${X11MANDIR}. 1634 To override, define after including <bsd.x11.mk> 1635 1636CPPFLAGS Appended with definitions to include from 1637 ${DESTDIR}${X11INCDIR} 1638 1639LDFLAGS Appended with definitions to link from 1640 ${DESTDIR}${X11USRLIBDIR} 1641 1642X11FLAGS.CONNECTION Equivalent to X11's CONNECTION_FLAGS. 1643 1644X11FLAGS.EXTENSION Equivalent to X11's EXT_DEFINES. 1645 1646X11FLAGS.LOADABLE Equivalent to X11's LOADABLE. 1647 1648X11FLAGS.OS_DEFINES Equivalent to X11's OS_DEFINES. 1649 1650X11FLAGS.SERVER Equivalent to X11's ServerDefines. 1651 1652X11FLAGS.THREADLIB Equivalent to X11's THREADS_DEFINES for libraries. 1653 1654X11FLAGS.THREADS Equivalent to X11's THREADS_DEFINES. 1655 1656X11FLAGS.VERSION cpp(1) definitions of OSMAJORVERSION and OSMINORVERSION. 1657 1658X11FLAGS.DIX Equivalent to X11's DIX_DEFINES. 1659 1660X11TOOL_UNXCOMM Commandline to convert `XCOMM' comments to `#' 1661 1662It uses the following variables: 1663 1664APPDEFS List of app-default files to install. 1665 1666CPPSCRIPTS List of files/scripts to run through cpp(1) 1667 and then ${X11TOOL_UNXCOMM}. The source files 1668 have a `.cpp' suffix, the generated files do not. 1669 1670CPPSCRIPTFLAGS Additional flags to cpp(1) when building CPPSCRIPTS. 1671 1672CPPSCRIPTFLAGS_<fn> Additional flags to cpp(1) when building CPPSCRIPT <fn>. 1673 1674 1675=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 1676