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