[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.289

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

CVSweb <webmaster@jp.NetBSD.org>