[BACK]Return to bsd.README CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / share / mk

Annotation of src/share/mk/bsd.README, Revision 1.266

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

CVSweb <webmaster@jp.NetBSD.org>