2016-08-20 19:11:07 +03:00
|
|
|
# $NetBSD: bsd.README,v 1.356 2016/08/20 16:11:07 christos Exp $
|
1997-03-29 11:02:45 +03:00
|
|
|
# @(#)bsd.README 8.2 (Berkeley) 4/2/94
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-07-22 03:39:55 +04:00
|
|
|
This is the README file for the make "include" files for the NetBSD
|
|
|
|
source tree. The files are installed in /usr/share/mk, and are,
|
|
|
|
by convention, named with the suffix ".mk".
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
Note, this file is not intended to replace reading through the .mk
|
|
|
|
files for anything tricky.
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
|
|
|
RANDOM THINGS WORTH KNOWING:
|
|
|
|
|
|
|
|
The files are simply C-style #include files, and pretty much behave like
|
|
|
|
you'd expect. The syntax is slightly different in that a single '.' is
|
|
|
|
used instead of the hash mark, i.e. ".include <bsd.prog.mk>".
|
|
|
|
|
|
|
|
One difference that will save you lots of debugging time is that inclusion
|
|
|
|
of the file is normally done at the *end* of the Makefile. The reason for
|
|
|
|
this is because .mk files often modify variables and behavior based on the
|
|
|
|
values of variables set in the Makefile. To make this work, remember that
|
|
|
|
the FIRST target found is the target that is used, i.e. if the Makefile has:
|
|
|
|
|
|
|
|
a:
|
|
|
|
echo a
|
|
|
|
a:
|
|
|
|
echo a number two
|
|
|
|
|
|
|
|
the command "make a" will echo "a". To make things confusing, the SECOND
|
|
|
|
variable assignment is the overriding one, i.e. if the Makefile has:
|
|
|
|
|
|
|
|
a= foo
|
|
|
|
a= bar
|
|
|
|
|
|
|
|
b:
|
|
|
|
echo ${a}
|
|
|
|
|
|
|
|
the command "make b" will echo "bar". This is for compatibility with the
|
|
|
|
way the V7 make behaved.
|
|
|
|
|
|
|
|
It's fairly difficult to make the BSD .mk files work when you're building
|
2001-02-01 23:27:06 +03:00
|
|
|
multiple programs in a single directory. It's a lot easier to split up the
|
1993-03-21 12:45:37 +03:00
|
|
|
programs than to deal with the problem. Most of the agony comes from making
|
1998-05-03 20:39:45 +04:00
|
|
|
the "obj" directory stuff work right, not because we switched to a new version
|
1993-03-21 12:45:37 +03:00
|
|
|
of make. So, don't get mad at us, figure out a better way to handle multiple
|
|
|
|
architectures so we can quit using the symbolic link stuff. (Imake doesn't
|
|
|
|
count.)
|
|
|
|
|
|
|
|
The file .depend in the source directory is expected to contain dependencies
|
|
|
|
for the source files. This file is read automatically by make after reading
|
|
|
|
the Makefile.
|
|
|
|
|
|
|
|
The variable DESTDIR works as before. It's not set anywhere but will change
|
|
|
|
the tree where the file gets installed.
|
|
|
|
|
|
|
|
The profiled libraries are no longer built in a different directory than
|
|
|
|
the regular libraries. A new suffix, ".po", is used to denote a profiled
|
2010-02-22 15:33:22 +03:00
|
|
|
object, and ".pico" denotes a shared (position-independent) object.
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2004-01-02 19:12:36 +03:00
|
|
|
There are various make variables used during the build.
|
|
|
|
|
|
|
|
Many variables support a (case sensitive) value of "no" or "yes",
|
|
|
|
and are tested with ${VAR} == "no" and ${VAR} != "no" .
|
|
|
|
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
The basic rule for the variable naming scheme is as follows:
|
|
|
|
|
2008-10-17 19:04:18 +04:00
|
|
|
HOST_xxx A command that runs on the host machine regardless of
|
|
|
|
whether or not the system is being cross compiled, or
|
|
|
|
flags for such a command.
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKxxx Can be set to "no" to disable functionality, or
|
|
|
|
"yes" to enable it.
|
|
|
|
Usually defaults to "yes", although some variables
|
|
|
|
default to "no".
|
|
|
|
Due to make(1) implementation issues, if a temporary
|
2008-09-06 02:26:28 +04:00
|
|
|
command-line override of a mk.conf(5) or <bsd.own.mk>
|
2008-07-22 12:01:54 +04:00
|
|
|
setting is required whilst still honoring a particular
|
2005-12-22 05:52:40 +03:00
|
|
|
Makefile's setting of MKxxx, use
|
|
|
|
env MKxxx=value make
|
|
|
|
instead of
|
|
|
|
make MKxxx=value
|
|
|
|
|
|
|
|
NOxxx If defined, disables a feature.
|
|
|
|
Not intended for users.
|
|
|
|
This is to allow Makefiles to disable functionality
|
|
|
|
that they don't support (such as missing man pages).
|
|
|
|
NOxxx variables must be defined before <bsd.own.mk>
|
|
|
|
is included.
|
|
|
|
|
2008-10-17 19:04:18 +04:00
|
|
|
TOOL_xxx A tool that is provided as part of the USETOOLS
|
|
|
|
framework. When not using the USETOOLS framework,
|
|
|
|
TOOL_xxx variables should refer to tools that are
|
|
|
|
already installed on the host system.
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
The following variables that control how things are made/installed that
|
|
|
|
are not set by default. These should not be set by Makefiles; they're for
|
2008-09-06 02:26:28 +04:00
|
|
|
the user to define in MAKECONF (see <bsd.own.mk>, below, or mk.conf(5))
|
|
|
|
or on the make(1) command line:
|
2005-12-22 05:52:40 +03:00
|
|
|
|
|
|
|
BUILD If defined, 'make install' checks that the targets in the
|
|
|
|
source directories are up-to-date and remakes them if they
|
|
|
|
are out of date, instead of blindly trying to install
|
|
|
|
out of date or non-existent targets.
|
|
|
|
|
|
|
|
MAKEVERBOSE Control how "verbose" the standard make(1) rules are.
|
|
|
|
Default: 2
|
|
|
|
Supported values:
|
|
|
|
0 Minimal output ("quiet")
|
|
|
|
1 Describe what is occurring
|
|
|
|
2 Describe what is occurring and echo the actual command
|
2008-11-13 23:40:11 +03:00
|
|
|
3 Ignore the effect of the "@" prefix in make commands
|
|
|
|
4 Trace shell commands using the shell's -x flag
|
2005-12-22 05:52:40 +03:00
|
|
|
|
2013-02-15 23:49:48 +04:00
|
|
|
MKATF If "no", don't build the Automated Testing Framework (ATF),
|
|
|
|
which includes the libatf-c, libatf-c++ and libatf-sh libraries
|
|
|
|
and the various command line tools. Also, because the build of
|
|
|
|
the libraries is disabled, don't build the NetBSD test suite
|
|
|
|
either.
|
2008-07-12 16:15:43 +04:00
|
|
|
Default: yes
|
|
|
|
|
2009-09-08 11:08:00 +04:00
|
|
|
MKBFD Obsolete, use MKBINUTILS
|
|
|
|
|
2010-04-23 23:41:02 +04:00
|
|
|
MKBINUTILS If "no", don't build binutils (gas, ld, etc and libbfd,
|
|
|
|
libopcodes)
|
2005-12-22 05:52:40 +03:00
|
|
|
Default: yes
|
|
|
|
|
2010-04-23 23:41:02 +04:00
|
|
|
MKBSDTAR If "yes", use the libarchive based cpio and tar instead of
|
|
|
|
the pax frontends.
|
|
|
|
Default: no
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKCATPAGES If "no", don't build or install the catman pages.
|
2012-02-08 02:58:49 +04:00
|
|
|
Default: no
|
2005-12-22 05:52:40 +03:00
|
|
|
|
2008-10-26 10:09:11 +03:00
|
|
|
MKCOMPAT If "no", don't build or install the src/compat.
|
2012-09-30 07:07:25 +04:00
|
|
|
Default: yes on amd64/mips64/sparc64, no elsewhere.
|
2008-10-26 10:09:11 +03:00
|
|
|
|
2015-06-19 21:13:52 +03:00
|
|
|
MKCOMPATTESTS If "yes", build and install the NetBSD test suite when
|
|
|
|
building and installing src/compat.
|
|
|
|
Default: no
|
|
|
|
|
2015-06-27 19:21:07 +03:00
|
|
|
MKCOMPATX11 If "yes", build and install the X11 libraries when
|
|
|
|
building and installing src/compat.
|
|
|
|
Default: no
|
|
|
|
|
2008-07-12 16:15:43 +04:00
|
|
|
MKCOMPLEX If "no", don't build libm support for <complex.h>
|
|
|
|
Default: yes
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKCRYPTO If "no", no cryptography support will be built into the system,
|
2006-03-20 07:03:10 +03:00
|
|
|
and also acts as "MKKERBEROS=no".
|
2005-12-22 05:52:40 +03:00
|
|
|
Default: yes
|
|
|
|
|
2012-07-14 20:04:04 +04:00
|
|
|
MKCRYPTO_RC5 If not "no", RC5 support will be built into libcrypto_rc5
|
2005-12-22 05:52:40 +03:00
|
|
|
Default: no
|
|
|
|
|
2014-03-25 13:52:55 +04:00
|
|
|
MKCTF If "no", do not build and install CTF tools, and also
|
|
|
|
don't generate and manipulate CTF data of ELF binaries
|
|
|
|
during build.
|
|
|
|
Default: no
|
|
|
|
|
2016-02-01 18:00:43 +03:00
|
|
|
NOCTF Don't generate and manipulate CTF data of ELF binaries
|
|
|
|
during build. It is set internally for standalone programs.
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKCVS If "no", don't build or install cvs(1).
|
|
|
|
Default: yes
|
|
|
|
|
2006-07-23 15:41:24 +04:00
|
|
|
MKDEBUG If "no", don't build and install separate debugging symbols
|
|
|
|
into /usr/libdata/debug.
|
|
|
|
Default: no
|
|
|
|
|
2016-02-21 06:34:27 +03:00
|
|
|
NODEBUG Don't compile with debugging symbols during build.
|
|
|
|
It is set internally for standalone programs.
|
|
|
|
|
2008-08-27 04:16:09 +04:00
|
|
|
MKDEBUGLIB Build *_g.a debugging libraries, which are compiled
|
|
|
|
with -DDEBUG.
|
2006-04-09 05:52:06 +04:00
|
|
|
Default: no
|
|
|
|
|
2013-03-05 06:02:07 +04:00
|
|
|
MKDEPINCLUDES If "yes" issue .include statements in the .depend file
|
|
|
|
instead of inlining the contents of the .d files. Useful
|
|
|
|
when stale dependencies are present, to list the exact
|
|
|
|
files that need refreshing. It is off by default because
|
|
|
|
it is possibly slower.
|
|
|
|
Default "no"
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKDOC If "no", don't build or install the documentation.
|
|
|
|
Default: yes
|
|
|
|
|
2012-09-29 16:03:41 +04:00
|
|
|
MKDTRACE If "no", do not build and install the kernel modules,
|
|
|
|
utilities and libraries used to implement the dtrace(1)
|
|
|
|
facility.
|
|
|
|
Default: no
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKDYNAMICROOT If "no", build programs in /bin and /sbin statically,
|
|
|
|
don't install certain libraries in /lib, and don't
|
|
|
|
install the shared linker into /libexec.
|
|
|
|
Default: yes
|
|
|
|
|
2009-11-30 19:13:22 +03:00
|
|
|
MKEXTSRC If not "no", 'make build' also descends into either src/extsrc
|
|
|
|
to cross-build programs and libraries externally added by
|
|
|
|
users, and automatically enables creation of those sets.
|
|
|
|
Default: no
|
|
|
|
|
2008-02-27 03:36:00 +03:00
|
|
|
MKGCC If "no", don't build gcc(1) or any of the GCC-related
|
2006-10-09 12:32:11 +04:00
|
|
|
libraries (libgcc, libobjc, libstdc++).
|
2005-12-22 05:52:40 +03:00
|
|
|
Default: yes
|
|
|
|
|
2008-02-27 03:36:00 +03:00
|
|
|
MKGCCCMDS If "no", don't build gcc(1), but do build the GCC-related
|
|
|
|
libraries (libgcc, libobjc, libstdc++).
|
2005-12-22 05:52:40 +03:00
|
|
|
Default: yes
|
|
|
|
|
|
|
|
MKGDB If "no", don't build gdb(1).
|
|
|
|
Default: yes
|
|
|
|
|
2014-07-06 22:22:03 +04:00
|
|
|
MKGROFFHTMLDOC If "no", avoid trying to use groff to generate html for
|
|
|
|
miscellaneous articles, as this seems to sometimes want
|
|
|
|
to run software not in base. Does not affect html man
|
|
|
|
pages.
|
|
|
|
Default: no
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKHESIOD If "no", disables building of Hesiod infrastructure
|
|
|
|
(libraries and support programs).
|
|
|
|
Default: yes
|
|
|
|
|
|
|
|
MKHOSTOBJ If not "no", for programs intended to be run on the compile
|
|
|
|
host, the name, release, and architecture of the host
|
|
|
|
operating system will be suffixed to the name of the object
|
|
|
|
directory created by "make obj".
|
|
|
|
Default: no
|
|
|
|
|
2008-08-31 05:21:41 +04:00
|
|
|
MKHTML If "no", don't build or install the HTML man pages.
|
|
|
|
Default: yes
|
2005-12-22 05:52:40 +03:00
|
|
|
|
|
|
|
MKIEEEFP If "no", don't add code for IEEE754/IEC60559 conformance.
|
|
|
|
Has no effect on most platforms.
|
|
|
|
Default: yes
|
|
|
|
|
2008-09-09 15:54:19 +04:00
|
|
|
MKSTRIPIDENT Strip the RCS IDs from program binaries and shared libraries.
|
|
|
|
Default: no
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKINET6 If "no", disables building of INET6 (IPv6) infrastructure
|
2010-06-20 10:54:23 +04:00
|
|
|
(libraries and support programs). This option must not be
|
|
|
|
set to "no" if MKX11 is not "no".
|
2005-12-22 05:52:40 +03:00
|
|
|
Default: yes
|
|
|
|
|
|
|
|
MKINFO If "no", don't build or install Info documentation from
|
|
|
|
Texinfo source files.
|
|
|
|
Default: yes
|
|
|
|
|
|
|
|
MKIPFILTER If "no", don't build or install the IP Filter programs and LKM.
|
|
|
|
Default: yes
|
|
|
|
|
2008-05-22 17:40:30 +04:00
|
|
|
MKISCSI If "no", don't build or install iSCSI library or applications
|
2006-06-24 09:14:01 +04:00
|
|
|
(depends on libpthread.)
|
|
|
|
Default: yes
|
|
|
|
|
2014-05-05 23:06:29 +04:00
|
|
|
MKKDEBUG If "yes", force building of kernel symbol info and creation
|
|
|
|
of netbsd.gdb in all kernel builds, independently of the
|
|
|
|
settings for "makeoptions DEBUG" in the kernel config file.
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKKERBEROS If "no", disables building of Kerberos v5
|
|
|
|
infrastructure (libraries and support programs).
|
|
|
|
Default: yes
|
|
|
|
|
2012-10-02 08:53:11 +04:00
|
|
|
MKKMOD If "no", disables building of kernel modules.
|
|
|
|
Default: yes
|
|
|
|
|
2013-02-15 23:49:48 +04:00
|
|
|
MKKYUA If "no", don't build Kyua nor its dependent library Lutok.
|
|
|
|
Note that setting this to "no" does not disable the build of
|
|
|
|
the NetBSD test suite itself; the build of the tests is
|
|
|
|
controlled by the MKATF knob.
|
|
|
|
Default: no (until the import is done and validated)
|
|
|
|
|
2008-05-22 17:40:30 +04:00
|
|
|
MKLDAP If "no", disables building of LDAP infrastructure
|
|
|
|
(libraries and support programs).
|
|
|
|
Default: yes
|
|
|
|
|
2013-04-28 08:44:21 +04:00
|
|
|
MKLIBCXX If not "no", build and install libc++.
|
|
|
|
Default: no
|
|
|
|
|
|
|
|
MKLIBSTDCXX If not "no", build and install libstdc++.
|
|
|
|
Default: yes
|
|
|
|
|
2008-05-02 15:45:19 +04:00
|
|
|
MKLINKLIB If "no", act as "MKLINT=no MKPICINSTALL=no MKPROFILE=no".
|
2005-12-22 05:52:40 +03:00
|
|
|
Also:
|
|
|
|
- don't install the .a libraries
|
|
|
|
- don't install _pic.a libraries on PIC systems
|
|
|
|
- don't build .a libraries on PIC systems
|
|
|
|
- don't install the .so symlink on ELF systems
|
|
|
|
I.e, only install the shared library (and the .so.major
|
|
|
|
symlink on ELF).
|
|
|
|
Default: yes
|
|
|
|
|
|
|
|
MKLINT If "no", don't build or install the lint libraries.
|
|
|
|
Default: yes
|
|
|
|
|
2009-12-23 21:00:38 +03:00
|
|
|
MKLVM If "no", don't build or install the logical volume manager
|
2008-12-23 05:55:23 +03:00
|
|
|
and device mapper tools and libraries
|
2009-12-23 21:02:25 +03:00
|
|
|
Default: yes
|
2008-12-23 05:55:23 +03:00
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKMAN If "no", don't build or install the man or catman pages,
|
|
|
|
and also acts as "MKCATPAGES=no MKHTML=no".
|
|
|
|
Default: yes
|
|
|
|
|
2009-10-24 02:14:37 +04:00
|
|
|
MKMANDOC If "yes", mandoc is built as tool and used to compile
|
|
|
|
catman or html pages. A directory can be exempted by
|
|
|
|
defining NOMANDOC. Individual man pages are exempted
|
2011-01-13 02:05:31 +03:00
|
|
|
if NOMANDOC.${target} is set to "yes".
|
2012-02-08 02:58:49 +04:00
|
|
|
Default: yes
|
2009-10-24 02:14:37 +04:00
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKMANZ If not "no", compress manual pages at installation time.
|
|
|
|
Default: no
|
|
|
|
|
2009-09-30 03:56:26 +04:00
|
|
|
MKMDNS If "no", disables building of mDNS infrastructure
|
|
|
|
(libraries and support programs).
|
|
|
|
Default: yes
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKNLS If "no", don't build or install the NLS files and locale
|
|
|
|
definition files.
|
|
|
|
Default: yes
|
2010-08-22 22:56:18 +04:00
|
|
|
|
|
|
|
MKNPF If "no", don't build or install the NPF and its modules.
|
|
|
|
Default: yes
|
2005-12-22 05:52:40 +03:00
|
|
|
|
|
|
|
MKOBJ If "no", don't enable the rule which creates objdirs,
|
|
|
|
and also acts as "MKOBJDIRS=no".
|
|
|
|
Default: yes
|
|
|
|
|
|
|
|
MKOBJDIRS If "no", don't create objdirs during a "make build".
|
|
|
|
Default: no
|
|
|
|
|
|
|
|
MKPAM If "no", disables building of PAM authentication
|
|
|
|
infrastructure (libraries and support programs).
|
2006-07-15 01:37:10 +04:00
|
|
|
Default: yes
|
2005-12-22 05:52:40 +03:00
|
|
|
|
2008-07-12 16:15:43 +04:00
|
|
|
MKPCC If "no", don't build pcc(1) or any of the PCC-related
|
|
|
|
libraries (libpcc, libpccsoftfloat).
|
|
|
|
Default: no
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKPF If "no", don't build or install the pf programs and LKM.
|
|
|
|
Default: yes
|
|
|
|
|
|
|
|
MKPIC If "no", don't build or install shared libraries, and
|
|
|
|
also acts as "MKPICLIB=no"
|
2012-09-20 19:48:54 +04:00
|
|
|
Default: yes (for MACHINE_ARCHs that support it)
|
2005-12-22 05:52:40 +03:00
|
|
|
|
|
|
|
MKPICINSTALL If "no", don't install the *_pic.a libraries.
|
|
|
|
Default: yes
|
|
|
|
|
|
|
|
MKPICLIB If "no", don't build *_pic.a libraries, and build the
|
|
|
|
shared object libraries from the .a libraries.
|
|
|
|
A symlink is installed in ${DESTDIR}/usr/lib for the
|
|
|
|
_pic.a library pointing to the .a library.
|
|
|
|
Default: yes
|
|
|
|
|
2007-12-29 00:35:45 +03:00
|
|
|
MKPIE If "no", create regular executables. Otherwise create
|
|
|
|
PIE (Position Independent Executables).
|
|
|
|
Default: no
|
|
|
|
|
2016-02-07 17:31:21 +03:00
|
|
|
NOPIE Don't create PIE (Position Independent Executables)
|
2016-02-01 18:00:43 +03:00
|
|
|
It is set internally for standalone programs.
|
|
|
|
|
2010-06-19 07:50:30 +04:00
|
|
|
MKPIGZGZIP If "no", only install pigz as pigz, not gzip.
|
2010-06-17 10:17:02 +04:00
|
|
|
Default: no
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKPOSTFIX If "no", don't build or install postfix(1).
|
|
|
|
Default: yes
|
|
|
|
|
|
|
|
MKPROFILE If "no", don't build or install the profiling (*_p.a) libraries.
|
|
|
|
Default: yes
|
|
|
|
|
2016-08-20 14:21:50 +03:00
|
|
|
MKRADEONFIRMWARE If "no", install the /libdata/firmware/radeon directory,
|
|
|
|
which is necessary for the radeon DRM driver.
|
|
|
|
Default: yes on i386 and amd64, no elsewhere.
|
|
|
|
|
2016-06-14 16:26:45 +03:00
|
|
|
MKRELRO If "partial", set the non-PLT GOT to read-only. If "full"
|
|
|
|
also force immediate symbol binding.
|
|
|
|
Default: no
|
|
|
|
|
2012-05-25 14:48:48 +04:00
|
|
|
MKREPRO If "yes", create reproducable builds. This enables
|
|
|
|
different switches to make two builds from the same source tree
|
|
|
|
result in the same build results.
|
|
|
|
Default: no
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKSHARE If "no", act as "MKCATPAGES=no MKDOC=no MKHTML=no MKINFO=no
|
|
|
|
MKMAN=no MKNLS=no".
|
|
|
|
I.e, don't build catman pages, documentation, Info
|
|
|
|
documentation, man pages, NLS files, ...
|
|
|
|
Default: yes
|
|
|
|
|
|
|
|
MKSKEY If "no", disables building of S/key authentication
|
|
|
|
infrastructure (libraries and support programs).
|
|
|
|
Default: yes
|
|
|
|
|
2013-08-03 23:31:26 +04:00
|
|
|
MKSLJIT If "no", disables building of sljit (stack-less platform
|
2012-11-24 18:01:28 +04:00
|
|
|
independent JIT compiler) private library and tests.
|
|
|
|
Default: yes on amd64, i386 and sparc, no elsewhere.
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKSOFTFLOAT If not "no", build with options to enable the compiler to
|
|
|
|
generate output containing library calls for floating
|
|
|
|
point and possibly soft-float library support.
|
|
|
|
Default: no
|
|
|
|
|
|
|
|
MKSTATICLIB If "no", don't build or install the normal static (*.a)
|
|
|
|
libraries.
|
|
|
|
Default: yes
|
|
|
|
|
2016-02-20 18:18:46 +03:00
|
|
|
MKTOOLSDEBUG If "yes" build the tools with debugging symbols.
|
|
|
|
Default: no
|
|
|
|
|
2012-11-04 20:27:28 +04:00
|
|
|
MKTPM If "no" then don't build the Trusted Platform Module
|
|
|
|
infrastructure.
|
|
|
|
Default: no
|
|
|
|
|
2016-08-20 14:21:50 +03:00
|
|
|
MKUNBOUND If not "no", build and install the "unbound" DNS resolver.
|
2016-08-20 19:11:07 +03:00
|
|
|
Default: yes
|
2016-08-20 14:21:50 +03:00
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKUNPRIVED If not "no", don't set the owner/group/mode when installing
|
|
|
|
files or directories, and keep a metadata log of what
|
|
|
|
the owner/group/mode should be. This allows a
|
|
|
|
non-root "make install".
|
|
|
|
Default: no
|
|
|
|
|
|
|
|
MKUPDATE If not "no", 'make install' only installs targets that are
|
|
|
|
more recently modified in the source directories that their
|
|
|
|
installed counterparts.
|
|
|
|
Default: no
|
|
|
|
|
2015-07-23 11:03:24 +03:00
|
|
|
MKX11 If not "no", 'make build' also descends into
|
|
|
|
src/external/mit/xorg to cross-build X11 and automatically
|
|
|
|
enables creation of X sets.
|
2008-07-29 08:40:14 +04:00
|
|
|
Default: no
|
|
|
|
|
2015-07-23 11:03:24 +03:00
|
|
|
MKX11FONTS If not "no", do not build or install the X fonts. The xfont
|
|
|
|
set is still created but will be empty.
|
2009-06-18 10:36:58 +04:00
|
|
|
Default: yes
|
|
|
|
|
2015-07-23 11:03:24 +03:00
|
|
|
MKX11MOTIF: If "yes", build the native X11 libGLw with Motif stubs. If
|
|
|
|
Motif is not installed in the default location /usr/pkg, the
|
|
|
|
location can be specified using the X11MOTIFPATH variable.
|
2013-06-02 15:02:40 +04:00
|
|
|
Default: no
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
MKYP If "no", disables building of YP (NIS)
|
|
|
|
infrastructure (libraries and support programs).
|
|
|
|
Default: yes
|
|
|
|
|
2012-09-20 19:48:54 +04:00
|
|
|
MKZFS If "no", do not build and install utilities and libraries
|
|
|
|
used to manage ZFS file system. Do not build zfs and solaris
|
2015-04-22 22:43:45 +03:00
|
|
|
compatibility kernel modules. Note: ZFS requires 64bit
|
|
|
|
atomic operations.
|
|
|
|
Default: yes on amd64, no elsewhere.
|
2009-10-06 02:32:58 +04:00
|
|
|
|
2012-08-08 17:56:13 +04:00
|
|
|
MKRUMP If "no", do not build and install rump related headers,
|
|
|
|
libraries, and programs.
|
|
|
|
Default: yes
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
USE_HESIOD If "no", disables building Hesiod support into
|
|
|
|
various system utilities/libraries that support it.
|
|
|
|
If ${MKHESIOD} is "no", USE_HESIOD will also be
|
|
|
|
forced to "no".
|
|
|
|
|
|
|
|
USE_INET6 If "no", disables building INET6 (IPv6) support into
|
|
|
|
various system utilities/libraries that support it.
|
|
|
|
If ${MKINET6} is "no", USE_INET6 will also be
|
|
|
|
forced to "no".
|
|
|
|
|
2007-10-06 04:21:44 +04:00
|
|
|
USE_JEMALLOC If "no", disables building the "jemalloc" allocator
|
|
|
|
designed for improved performance with threaded
|
|
|
|
applications. The "phkmalloc" allocator as used up
|
|
|
|
before NetBSD-5.0 will be substituted.
|
|
|
|
|
2006-03-21 00:25:31 +03:00
|
|
|
USE_KERBEROS If "no", disables building Kerberos v5
|
2005-12-22 05:52:40 +03:00
|
|
|
support into various system utilities/libraries that
|
|
|
|
support it. If ${MKKERBEROS} is "no", USE_KERBEROS
|
|
|
|
will also be forced to "no".
|
|
|
|
|
2008-05-22 17:40:30 +04:00
|
|
|
USE_LDAP If "no", disables building LDAP support into various
|
|
|
|
system utilities/libraries that support it.
|
|
|
|
If ${MKLDAP} is "no", USE_LDAP will also be forced to "no".
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
USE_PAM If "no", disables building PAM authentication support
|
|
|
|
into various system utilities/libraries that support it.
|
|
|
|
If ${MKPAM} is "no", USE_PAM will also be forced to "no".
|
|
|
|
|
|
|
|
USE_SKEY If "no", disables building S/key authentication
|
|
|
|
support into various system utilities/libraries that
|
|
|
|
support it. If ${MKSKEY} is "no", USE_SKEY will
|
|
|
|
also be forced to "no".
|
2008-03-31 06:42:27 +04:00
|
|
|
Default: no
|
2005-12-22 05:52:40 +03:00
|
|
|
|
2008-02-27 03:36:00 +03:00
|
|
|
USE_SSP If "no", disables GCC stack protection code, which
|
2009-11-12 16:22:34 +03:00
|
|
|
detects stack overflows and aborts the program. The
|
2010-05-26 18:52:10 +04:00
|
|
|
stack protection code imposes a performance penalty
|
2009-11-15 17:59:47 +03:00
|
|
|
of about 5%.
|
2009-11-12 17:46:37 +03:00
|
|
|
Default: "no", unless "USE_FORT" is set to "yes"
|
2006-11-09 20:06:54 +03:00
|
|
|
|
2016-03-13 20:56:56 +03:00
|
|
|
NOSSP Don't compile with stack protector during build.
|
|
|
|
It is set internally for standalone programs.
|
|
|
|
|
2009-01-22 17:04:15 +03:00
|
|
|
USE_FORT If "yes" turns on substitute wrappers for commonly used
|
|
|
|
functions that do not do bounds checking regularly, but
|
|
|
|
they could in some cases by using the gcc
|
2012-09-20 19:48:54 +04:00
|
|
|
__builtin_object_size() function to determine the buffer
|
2009-01-22 17:04:15 +03:00
|
|
|
size where it is known and detect buffer overflows.
|
|
|
|
These substitute functions are in /usr/include/ssp.
|
2009-11-12 16:22:34 +03:00
|
|
|
Default: depends on the part of the source tree
|
2009-01-22 17:04:15 +03:00
|
|
|
|
2016-03-13 20:56:56 +03:00
|
|
|
NOFORT Don't compile with substitute wrappers during build.
|
|
|
|
It is set internally for standalone programs.
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
USE_YP If "no", disables building YP (NIS) support into
|
|
|
|
various system utilities/libraries that support it.
|
|
|
|
If ${MKYP} is "no", USE_YP will also be forced to "no".
|
|
|
|
|
2011-06-30 22:13:51 +04:00
|
|
|
USE_PIGZGZIP If "no", use the host "gzip" program to compress things.
|
2014-01-27 11:57:28 +04:00
|
|
|
Otherwise, build tools/pigz, set TOOL_GZIP=${TOOL_PIGZ},
|
|
|
|
and use nbpigz to compress things.
|
2010-08-15 11:27:33 +04:00
|
|
|
Default: "no".
|
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
COPTS.lib<lib>
|
2006-05-12 03:47:34 +04:00
|
|
|
OBJCOPTS.lib<lib>
|
2005-12-22 05:52:40 +03:00
|
|
|
LDADD.lib<lib>
|
|
|
|
CPPFLAGS.lib<lib>
|
|
|
|
CXXFLAGS.lib<lib>
|
|
|
|
COPTS.<prog>
|
2006-05-12 03:47:34 +04:00
|
|
|
OBJCCOPTS.<prog>
|
2005-12-22 05:52:40 +03:00
|
|
|
LDADD.<prog>
|
|
|
|
CPPFLAGS.<prog>
|
|
|
|
CXXFLAGS.<prog> These provide a way to specify additions to the associated
|
|
|
|
variables in a way that applies only to a particular library
|
|
|
|
or program. <lib> corresponds to the LIB variable set in
|
|
|
|
the library's makefile. <prog> corresponds to either PROG
|
|
|
|
or PROG_CXX (if set). For example, if COPTS.libcrypto is
|
|
|
|
set to "-g", "-g" will be added to COPTS only when compiling
|
|
|
|
the crypto library.
|
2003-07-18 04:33:18 +04:00
|
|
|
|
2011-05-19 18:29:27 +04:00
|
|
|
The active compiler is selected using the following variables:
|
|
|
|
AVAILABLE_COMPILER
|
|
|
|
List of available compiler suites. Processed in order
|
|
|
|
for selecting the active compiler for each frontend.
|
|
|
|
HAVE_PCC If defined, PCC is present and enabled.
|
|
|
|
HAVE_LLVM If defined, LLVM/Clang is present and enabled.
|
|
|
|
UNSUPPORTED_COMPILER.xxx
|
|
|
|
If defined, the support for compiler "xxx" is disabled.
|
|
|
|
|
|
|
|
For the frontends (CC, CPP, CXX, FC and OBJC) the following variables exist:
|
|
|
|
ACTIVE_CC Active compile suite for the CC frontend.
|
|
|
|
SUPPORTED_CC Compile suite with support for the CC frontend.
|
|
|
|
TOOL_CC.xxx Path to the CC frontend for compiler "xxx"
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
=-=-=-=-= sys.mk =-=-=-=-=
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
The include file <sys.mk> has the default rules for all makes, in the BSD
|
|
|
|
environment or otherwise. You probably don't want to touch this file.
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
=-=-=-=-= bsd.own.mk =-=-=-=-=
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-04-13 06:08:08 +04:00
|
|
|
The include file <bsd.own.mk> contains source tree configuration parameters,
|
|
|
|
such as the owners, groups, etc. for both manual pages and binaries, and
|
|
|
|
a few global "feature configuration" parameters.
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
It has no targets.
|
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
To get system-specific configuration parameters, <bsd.own.mk> will try to
|
1997-06-01 01:21:13 +04:00
|
|
|
include the file specified by the "MAKECONF" variable. If MAKECONF is not
|
|
|
|
set, or no such file exists, the system make configuration file, /etc/mk.conf
|
|
|
|
is included. These files may define any of the variables described below.
|
1996-04-13 06:08:08 +04:00
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
<bsd.own.mk> sets the following variables, if they are not already defined
|
1996-04-13 06:08:08 +04:00
|
|
|
(defaults are in brackets):
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2002-04-26 19:02:02 +04:00
|
|
|
NETBSDSRCDIR Top of the NetBSD source tree.
|
|
|
|
If _SRC_TOP_ != "", that will be used as the default,
|
|
|
|
otherwise BSDSRCDIR will be used as the default.
|
|
|
|
Various makefiles within the NetBSD source tree will
|
|
|
|
use this to reference the top level of the source tree.
|
|
|
|
|
2002-04-10 19:05:41 +04:00
|
|
|
_SRC_TOP_ Top of the system source tree, as determined by <bsd.own.mk>
|
2002-04-26 19:02:02 +04:00
|
|
|
based on the presence of tools/ and build.sh. This variable
|
|
|
|
is "internal" to <bsd.own.mk>, although its value is only
|
|
|
|
determined once and then propagated to all sub-makes.
|
2002-04-10 19:05:41 +04:00
|
|
|
|
2012-11-04 14:59:13 +04:00
|
|
|
_NETBSD_VERSION_DEPENDS
|
|
|
|
A list of files which contain information about
|
|
|
|
the version of the NetBSD being built. This is
|
|
|
|
defined only if the current directory appears
|
|
|
|
to be inside a NetBSD source tree. The list of
|
|
|
|
files includes ${NETBSDSRCDIR}/sys/sys/param.h
|
|
|
|
(which contains the kernel version number),
|
|
|
|
${NETBSDSRCDIR}/sys/conf/newvers.sh and
|
|
|
|
${NETBSDSRCDIR}/sys/conf/osrelease.sh (which
|
|
|
|
interpret the information in sys/sys/param.h), and
|
|
|
|
${_SRC_TOP_OBJ_}/params (which is an optional file,
|
|
|
|
created by "make build" in ${_SRC_TOP_}/Makefile,
|
|
|
|
containing all the variables that may influence the
|
|
|
|
build).
|
|
|
|
|
|
|
|
Targets that depend on the NetBSD version, or on
|
|
|
|
variables defined at build time, can declare a
|
|
|
|
dependency on ${_NETBSD_VERSION_DEPENDS}, like this:
|
|
|
|
|
|
|
|
version.c: ${_NETBSD_VERSION_DEPENDS}
|
|
|
|
commands to create version.c
|
|
|
|
|
1996-01-23 01:46:06 +03:00
|
|
|
BSDSRCDIR The real path to the system sources, so that 'make obj'
|
2003-07-10 14:33:58 +04:00
|
|
|
will work correctly. [/usr/src]
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-01-23 01:46:06 +03:00
|
|
|
BSDOBJDIR The real path to the system 'obj' tree, so that 'make obj'
|
2003-07-10 14:33:58 +04:00
|
|
|
will work correctly. [/usr/obj]
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
BINGRP Binary group. [wheel]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
BINOWN Binary owner. [root]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
BINMODE Binary mode. [555]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
NONBINMODE Mode for non-executable files. [444]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
MANDIR Base path for manual installation. [/usr/share/man/cat]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
MANGRP Manual group. [wheel]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
MANOWN Manual owner. [root]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
MANMODE Manual mode. [${NONBINMODE}]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2008-08-31 05:21:41 +04:00
|
|
|
MANINSTALL Manual installation type. Space separated list:
|
|
|
|
catinstall, htmlinstall, maninstall
|
2012-02-17 04:00:02 +04:00
|
|
|
Default value derived from MKCATPAGES and MKHTML.
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2001-03-10 14:00:37 +03:00
|
|
|
LDSTATIC Control program linking; if set blank, link everything
|
2003-07-28 11:03:43 +04:00
|
|
|
dynamically. If set to "-static", link everything statically.
|
2001-03-10 14:00:37 +03:00
|
|
|
If not set, programs link according to their makefile.
|
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
LIBDIR Base path for library installation. [/usr/lib]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
LINTLIBDIR Base path for lint(1) library installation. [/usr/libdata/lint]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
LIBGRP Library group. [${BINGRP}]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
LIBOWN Library owner. [${BINOWN}]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
LIBMODE Library mode. [${NONBINMODE}]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
|
|
|
DOCDIR Base path for system documentation (e.g. PSD, USD, etc.)
|
2003-07-10 14:33:58 +04:00
|
|
|
installation. [/usr/share/doc]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
DOCGRP Documentation group. [wheel]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
DOCOWN Documentation owner. [root]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
DOCMODE Documentation mode. [${NONBINMODE}]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2014-08-05 19:25:20 +04:00
|
|
|
GZIP_N_FLAG Flags to pass to TOOL_GZIP to prevent it from inserting
|
|
|
|
file names or timestamps in the compressed output.
|
|
|
|
[-n, or -nT when TOOL_GZIP is really TOOL_PIGZ]
|
|
|
|
|
2001-11-19 19:20:26 +03:00
|
|
|
NLSDIR Base path for Native Language Support files installation.
|
1996-01-23 01:46:06 +03:00
|
|
|
[/usr/share/nls]
|
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
NLSGRP Native Language Support files group. [wheel]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
NLSOWN Native Language Support files owner. [root]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
NLSMODE Native Language Support files mode. [${NONBINMODE}]
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2009-10-10 23:05:28 +04:00
|
|
|
X11SRCDIR The path to the xsrc tree. [${NETBSDSRCDIR}/../xsrc,
|
|
|
|
if that exists; otherwise /usr/xsrc]
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2008-08-28 11:53:53 +04:00
|
|
|
X11SRCDIR.local The path to the local X11 src tree. [${X11SRCDIR}/local]
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2008-08-28 11:53:53 +04:00
|
|
|
X11SRCDIR.lib<package>
|
|
|
|
X11SRCDIR.<package>
|
|
|
|
The path to the xorg src tree for the specificed package>.
|
|
|
|
[${X11SRCDIR}/external/mit/xorg/<package>/dist]
|
|
|
|
|
|
|
|
X11ROOTDIR Root directory of the X11 installation. [/usr/X11R6 or
|
|
|
|
[/usr/X11R7]
|
2004-01-07 15:06:34 +03:00
|
|
|
|
|
|
|
X11BINDIR X11 bin directory. [${X11ROOTDIR}/bin]
|
|
|
|
|
|
|
|
X11FONTDIR X11 font directory. [${X11ROOTDIR}/lib/X11/fonts]
|
|
|
|
|
|
|
|
X11INCDIR X11 include directory. [${X11ROOTDIR}/include]
|
|
|
|
|
|
|
|
X11LIBDIR X11 lib/x11 (config) directory. [${X11ROOTDIR}/lib/X11]
|
|
|
|
|
|
|
|
X11MANDIR X11 manual directory. [${X11ROOTDIR}/man]
|
|
|
|
|
|
|
|
X11USRLIBDIR X11 library directory. [${X11ROOTDIR}/lib]
|
|
|
|
|
1998-02-04 10:08:56 +03:00
|
|
|
STRIPFLAG The flag passed to the install program to cause the binary
|
1993-03-21 12:45:37 +03:00
|
|
|
to be stripped. This is to be used when building your
|
|
|
|
own install script so that the entire system can be made
|
2004-02-13 08:13:37 +03:00
|
|
|
stripped/not-stripped using a single knob. []
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-04-10 00:05:56 +04:00
|
|
|
COPY The flag passed to the install program to cause the binary
|
|
|
|
to be copied rather than moved. This is to be used when
|
|
|
|
building our own install script so that the entire system
|
|
|
|
can either be installed with copies, or with moves using
|
2003-07-10 14:33:58 +04:00
|
|
|
a single knob. [-c]
|
1993-04-10 00:05:56 +04:00
|
|
|
|
2012-12-03 00:19:46 +04:00
|
|
|
MAKEDIRTARGETENV
|
|
|
|
Environment variables passed to the child make process
|
|
|
|
invoked by MAKEDIRTARGET.
|
|
|
|
|
2004-04-13 16:25:03 +04:00
|
|
|
MAKEDIRTARGET dir target [params]
|
|
|
|
Runs "cd $${dir} && ${MAKE} [params] $${target}",
|
|
|
|
displaying a "pretty" message whilst doing so.
|
|
|
|
|
2004-05-12 20:56:41 +04:00
|
|
|
RELEASEMACHINEDIR
|
|
|
|
Subdirectory used below RELEASEDIR when building
|
|
|
|
a release. [${MACHINE}]
|
|
|
|
|
|
|
|
RELEASEMACHINE Subdirectory or path component used for the following
|
|
|
|
paths:
|
|
|
|
distrib/${RELEASEMACHINE}
|
|
|
|
distrib/notes/${RELEASEMACHINE}
|
|
|
|
etc/etc.${RELEASEMACHINE}
|
|
|
|
Used when building a release. [${MACHINE}]
|
2004-04-13 16:25:03 +04:00
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
Additionally, the following variables may be set by <bsd.own.mk> or in a
|
2008-07-22 12:01:54 +04:00
|
|
|
make configuration file to modify the behavior of the system build
|
1996-04-13 06:08:08 +04:00
|
|
|
process (default values are in brackets along with comments, if set by
|
2003-08-03 13:23:14 +04:00
|
|
|
<bsd.own.mk>):
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2005-12-22 05:52:40 +03:00
|
|
|
USETOOLS Indicates whether the tools specified by ${TOOLDIR} should
|
|
|
|
be used as part of a build in progress.
|
|
|
|
Supported values:
|
|
|
|
|
|
|
|
yes Use the tools from TOOLDIR.
|
|
|
|
Must be set to this if cross-compiling.
|
|
|
|
|
|
|
|
no Do not use the tools from TOOLDIR, but refuse to
|
|
|
|
build native compilation tool components that are
|
|
|
|
version-specific for that tool.
|
|
|
|
|
|
|
|
never Do not use the tools from TOOLDIR, even when
|
|
|
|
building native tool components. This is similar to
|
|
|
|
the traditional NetBSD build method, but does not
|
|
|
|
verify that the compilation tools in use are
|
|
|
|
up-to-date enough in order to build the tree
|
|
|
|
successfully. This may cause build or runtime
|
|
|
|
problems when building the whole NetBSD source tree.
|
|
|
|
|
|
|
|
Default: "yes" if building all or part of a whole NetBSD
|
|
|
|
source tree (detected automatically); "no" otherwise
|
|
|
|
(to preserve traditional semantics of the <bsd.*.mk>
|
|
|
|
make(1) include files).
|
2004-01-02 19:12:36 +03:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
OBJECT_FMT Object file format. [set to "ELF" on architectures that
|
2008-01-09 14:25:58 +03:00
|
|
|
use ELF -- currently all architectures].
|
1998-02-23 13:09:31 +03:00
|
|
|
|
* Eliminate the USE_NEW_TOOLCHAIN variable. Instead, split it into
two variables:
TOOLCHAIN_MISSING -- set to "yes" on platforms for which there is
no working in-tree toolchain (hppa, ns32k, sh5, x86_64).
EXTERNAL_TOOLCHAIN -- if defined by the user, points to the root of
an external toolchain (e.g. /usr/local/gnu). This enables the cross-build
framework even for TOOLCHAIN_MISSING platforms.
If TOOLCHAIN_MISSING is set to "yes", MKGDB, MKBFD, and MKGCC are all
unconditionally set to "no", since the bits are not there to build.
If EXTERNAL_TOOLCHAIN is set, MKGCC is unconditionally set to "no",
since the external toolchain's compiler is not in-sync with the
in-tree compiler support components (e.g. libgcc).
* Set MACHINE_CPU much earlier in bsd.own.mk, so that more tests in
that file can use it.
2002-09-18 03:18:25 +04:00
|
|
|
TOOLCHAIN_MISSING
|
2004-01-02 19:12:36 +03:00
|
|
|
If not "no", this indicates that the platform being built
|
* Eliminate the USE_NEW_TOOLCHAIN variable. Instead, split it into
two variables:
TOOLCHAIN_MISSING -- set to "yes" on platforms for which there is
no working in-tree toolchain (hppa, ns32k, sh5, x86_64).
EXTERNAL_TOOLCHAIN -- if defined by the user, points to the root of
an external toolchain (e.g. /usr/local/gnu). This enables the cross-build
framework even for TOOLCHAIN_MISSING platforms.
If TOOLCHAIN_MISSING is set to "yes", MKGDB, MKBFD, and MKGCC are all
unconditionally set to "no", since the bits are not there to build.
If EXTERNAL_TOOLCHAIN is set, MKGCC is unconditionally set to "no",
since the external toolchain's compiler is not in-sync with the
in-tree compiler support components (e.g. libgcc).
* Set MACHINE_CPU much earlier in bsd.own.mk, so that more tests in
that file can use it.
2002-09-18 03:18:25 +04:00
|
|
|
does not have a working in-tree toolchain. If the
|
2004-01-02 19:12:36 +03:00
|
|
|
${MACHINE_ARCH} in question falls into this category,
|
2012-09-20 19:48:54 +04:00
|
|
|
TOOLCHAIN_MISSING is conditionally assigned the value "yes".
|
* Eliminate the USE_NEW_TOOLCHAIN variable. Instead, split it into
two variables:
TOOLCHAIN_MISSING -- set to "yes" on platforms for which there is
no working in-tree toolchain (hppa, ns32k, sh5, x86_64).
EXTERNAL_TOOLCHAIN -- if defined by the user, points to the root of
an external toolchain (e.g. /usr/local/gnu). This enables the cross-build
framework even for TOOLCHAIN_MISSING platforms.
If TOOLCHAIN_MISSING is set to "yes", MKGDB, MKBFD, and MKGCC are all
unconditionally set to "no", since the bits are not there to build.
If EXTERNAL_TOOLCHAIN is set, MKGCC is unconditionally set to "no",
since the external toolchain's compiler is not in-sync with the
in-tree compiler support components (e.g. libgcc).
* Set MACHINE_CPU much earlier in bsd.own.mk, so that more tests in
that file can use it.
2002-09-18 03:18:25 +04:00
|
|
|
Otherwise, the variable is unconditionally assigned the
|
|
|
|
value "no".
|
2009-09-08 11:08:00 +04:00
|
|
|
If not "no", ${MKBINUTILS}, ${MKGCC}, and ${MKGDB} are
|
2004-01-02 19:12:36 +03:00
|
|
|
unconditionally assigned the value "no".
|
* Eliminate the USE_NEW_TOOLCHAIN variable. Instead, split it into
two variables:
TOOLCHAIN_MISSING -- set to "yes" on platforms for which there is
no working in-tree toolchain (hppa, ns32k, sh5, x86_64).
EXTERNAL_TOOLCHAIN -- if defined by the user, points to the root of
an external toolchain (e.g. /usr/local/gnu). This enables the cross-build
framework even for TOOLCHAIN_MISSING platforms.
If TOOLCHAIN_MISSING is set to "yes", MKGDB, MKBFD, and MKGCC are all
unconditionally set to "no", since the bits are not there to build.
If EXTERNAL_TOOLCHAIN is set, MKGCC is unconditionally set to "no",
since the external toolchain's compiler is not in-sync with the
in-tree compiler support components (e.g. libgcc).
* Set MACHINE_CPU much earlier in bsd.own.mk, so that more tests in
that file can use it.
2002-09-18 03:18:25 +04:00
|
|
|
|
|
|
|
EXTERNAL_TOOLCHAIN
|
|
|
|
This variable is not directly set by <bsd.own.mk>, but
|
|
|
|
including <bsd.own.mk> is the canonical way to gain
|
|
|
|
access to this variable. The variable should be defined
|
|
|
|
either in the user's environment or in the user's mk.conf
|
|
|
|
file. If defined, this variable indicates the root of
|
|
|
|
an external toolchain which will be used to build the
|
2004-01-02 19:12:36 +03:00
|
|
|
tree. For example, if a platform is a ${TOOLCHAIN_MISSING}
|
* Eliminate the USE_NEW_TOOLCHAIN variable. Instead, split it into
two variables:
TOOLCHAIN_MISSING -- set to "yes" on platforms for which there is
no working in-tree toolchain (hppa, ns32k, sh5, x86_64).
EXTERNAL_TOOLCHAIN -- if defined by the user, points to the root of
an external toolchain (e.g. /usr/local/gnu). This enables the cross-build
framework even for TOOLCHAIN_MISSING platforms.
If TOOLCHAIN_MISSING is set to "yes", MKGDB, MKBFD, and MKGCC are all
unconditionally set to "no", since the bits are not there to build.
If EXTERNAL_TOOLCHAIN is set, MKGCC is unconditionally set to "no",
since the external toolchain's compiler is not in-sync with the
in-tree compiler support components (e.g. libgcc).
* Set MACHINE_CPU much earlier in bsd.own.mk, so that more tests in
that file can use it.
2002-09-18 03:18:25 +04:00
|
|
|
platform, EXTERNAL_TOOLCHAIN can be used to re-enable the
|
|
|
|
cross-compile framework.
|
|
|
|
|
2004-01-02 19:12:36 +03:00
|
|
|
If EXTERNAL_TOOLCHAIN is defined, ${MKGCC} is unconditionally
|
|
|
|
assigned the value "no", since the external version of the
|
|
|
|
compiler may not be able to build the library components of
|
|
|
|
the in-tree compiler.
|
* Eliminate the USE_NEW_TOOLCHAIN variable. Instead, split it into
two variables:
TOOLCHAIN_MISSING -- set to "yes" on platforms for which there is
no working in-tree toolchain (hppa, ns32k, sh5, x86_64).
EXTERNAL_TOOLCHAIN -- if defined by the user, points to the root of
an external toolchain (e.g. /usr/local/gnu). This enables the cross-build
framework even for TOOLCHAIN_MISSING platforms.
If TOOLCHAIN_MISSING is set to "yes", MKGDB, MKBFD, and MKGCC are all
unconditionally set to "no", since the bits are not there to build.
If EXTERNAL_TOOLCHAIN is set, MKGCC is unconditionally set to "no",
since the external toolchain's compiler is not in-sync with the
in-tree compiler support components (e.g. libgcc).
* Set MACHINE_CPU much earlier in bsd.own.mk, so that more tests in
that file can use it.
2002-09-18 03:18:25 +04:00
|
|
|
|
|
|
|
NOTE: This variable is not yet used in as many places as
|
|
|
|
it should be. Expect the exact semantics of this variable
|
|
|
|
to change in the short term as parts of the cross-compile
|
|
|
|
framework continue to be cleaned up.
|
|
|
|
|
2008-10-27 02:13:24 +03:00
|
|
|
The following variables are defined to commands to perform the
|
|
|
|
appropriate operation, with the default in [brackets]. Note that
|
|
|
|
the defaults change if USETOOLS == "yes":
|
|
|
|
|
|
|
|
TOOL_AMIGAAOUT2BB aout to Amiga bootblock converter. [amiga-aout2bb]
|
|
|
|
|
|
|
|
TOOL_AMIGAELF2BB ELF to Amiga bootblock converter. [amiga-elf2bb]
|
|
|
|
|
|
|
|
TOOL_AMIGATXLT Amige assembly language format translator. [amiga-txlt]
|
|
|
|
|
|
|
|
TOOL_ASN1_COMPILE ASN1 compiler. [asn1_compile]
|
|
|
|
|
|
|
|
TOOL_AWK Pattern-directed scanning/processing language. [awk]
|
|
|
|
|
|
|
|
TOOL_CAP_MKDB Create capability database. [cap_mkdb]
|
|
|
|
|
|
|
|
TOOL_CAT Concatenate and print files. [cat]
|
|
|
|
|
|
|
|
TOOL_CKSUM Display file checksums. [cksum]
|
|
|
|
|
|
|
|
TOOL_COMPILE_ET Error table compiler. [compile_et]
|
|
|
|
|
|
|
|
TOOL_CONFIG Build kernel compilation directories. [config]
|
|
|
|
|
|
|
|
TOOL_CRUNCHGEN Generate crunched binary build environment. [crunchgen]
|
|
|
|
|
|
|
|
TOOL_CTAGS Create a tags file. [ctags]
|
|
|
|
|
|
|
|
TOOL_DB Manipulate db(3) databases. [db]
|
|
|
|
|
|
|
|
TOOL_DISKLABEL Read and write disk pack label. [disklabel]
|
|
|
|
|
|
|
|
TOOL_EQN Format equations for groff. [eqn]
|
|
|
|
|
|
|
|
TOOL_FDISK MS-DOS partition maintenance program. [fdisk]
|
|
|
|
|
|
|
|
TOOL_FGEN IEEE 1275 Open Firmware FCode Tokenizer. [fgen]
|
|
|
|
|
|
|
|
TOOL_GENASSYM Generate constants for assembly files. [genassym]
|
|
|
|
|
|
|
|
TOOL_GENCAT Generate NLS message catalogs. [gencat]
|
|
|
|
|
|
|
|
TOOL_GMAKE GNU make utility. [gmake]
|
|
|
|
|
2009-02-25 23:36:44 +03:00
|
|
|
TOOL_GREP Print lines matching a pattern. [grep]
|
|
|
|
|
2008-10-27 02:13:24 +03:00
|
|
|
TOOL_GROFF Front end for groff document formatting system. [groff]
|
|
|
|
|
2014-01-27 11:57:28 +04:00
|
|
|
TOOL_GZIP Compression/decompression tool. [gzip]
|
|
|
|
|
2014-08-05 19:25:20 +04:00
|
|
|
TOOL_GZIP_N Same as TOOL_GZIP, plus a command line option to
|
|
|
|
prevent it from inserting file names or timestamps
|
|
|
|
into the compressed output.
|
|
|
|
[${TOOL_GZIP} ${GZIP_N_FLAG}]
|
|
|
|
|
2008-10-27 02:13:24 +03:00
|
|
|
TOOL_HEXDUMP Ascii, decimal, hexadecimal, octal dump. [hexdump]
|
|
|
|
|
|
|
|
TOOL_HP300MKBOOT Make bootable image for hp300. [hp300-mkboot]
|
|
|
|
|
2014-02-24 11:23:38 +04:00
|
|
|
TOOL_HPPAMKBOOT Make bootable image for hppa. [hppa-mkboot]
|
2008-10-27 02:13:24 +03:00
|
|
|
|
|
|
|
TOOL_INDXBIB Make bibliographic database's inverted index. [indxbib]
|
|
|
|
|
|
|
|
TOOL_INSTALLBOOT Install disk bootstrap software. [installboot]
|
|
|
|
|
|
|
|
TOOL_INSTALL_INFO Update info/dir entries. [install-info]
|
|
|
|
|
|
|
|
TOOL_JOIN Relational database operator. [join]
|
|
|
|
|
|
|
|
TOOL_M4 M4 macro language processor. [m4]
|
|
|
|
|
|
|
|
TOOL_MACPPCFIXCOFF Fix up xcoff headers for macppc. [macppc-fixcoff]
|
|
|
|
|
|
|
|
TOOL_MAKEFS Create file system image from directory tree. [makefs]
|
|
|
|
|
|
|
|
TOOL_MAKEINFO Translate Texinfo documents. [makeinfo]
|
|
|
|
|
|
|
|
TOOL_MAKEWHATIS Create a whatis.db database. [makewhatis]
|
|
|
|
|
|
|
|
TOOL_MDSETIMAGE Set kernel RAM disk image. [mdsetimage]
|
|
|
|
|
|
|
|
TOOL_MENUC Menu compiler. [menuc]
|
|
|
|
|
|
|
|
TOOL_MIPSELF2ECOFF Convert ELF-format executable to ECOFF for mips.
|
|
|
|
[mips-elf2ecoff]
|
|
|
|
|
|
|
|
TOOL_MKCSMAPPER Make charset mapping table. [mkcsmapper]
|
|
|
|
|
|
|
|
TOOL_MKESDB Make encoding scheme database. [mkesdb]
|
|
|
|
|
|
|
|
TOOL_MKLOCALE Make LC_CTYPE locale files. [mklocale]
|
|
|
|
|
|
|
|
TOOL_MKMAGIC Create database for file(1). [file]
|
|
|
|
|
2013-02-11 02:05:51 +04:00
|
|
|
TOOL_MKNOD Make device special file. [mknod]
|
|
|
|
|
2008-10-27 02:13:24 +03:00
|
|
|
TOOL_MKTEMP Make (unique) temporary file name. [mktemp]
|
|
|
|
|
|
|
|
TOOL_MSGC Simple message list compiler. [msgc]
|
|
|
|
|
|
|
|
TOOL_MTREE Map a directory hierarchy. [mtree]
|
|
|
|
|
2014-05-08 17:58:34 +04:00
|
|
|
TOOL_NCDCS Turn ELF kernel into a NCD firmware image. [ncdcs]
|
|
|
|
|
2008-10-27 02:13:24 +03:00
|
|
|
TOOL_PAX Manipulate file archives and copy directories. [pax]
|
|
|
|
|
|
|
|
TOOL_PIC Compile pictures for groff. [pic]
|
|
|
|
|
2010-06-20 10:54:23 +04:00
|
|
|
TOOL_PIGZ Parallel compressor. [pigz]
|
|
|
|
|
2008-10-27 02:13:24 +03:00
|
|
|
TOOL_POWERPCMKBOOTIMAGE Make bootable image for powerpc. [powerpc-mkbootimage]
|
|
|
|
|
|
|
|
TOOL_PWD_MKDB Generate the password databases. [pwd_mkdb]
|
|
|
|
|
|
|
|
TOOL_REFER Preprocess bibliographic references for groff. [refer]
|
|
|
|
|
|
|
|
TOOL_ROFF_ASCII Generate ASCII groff output. [nroff]
|
|
|
|
|
|
|
|
TOOL_ROFF_DVI Generate DVI groff output. [${TOOL_GROFF} -Tdvi]
|
|
|
|
|
|
|
|
TOOL_ROFF_HTML Generate HTML groff output.
|
|
|
|
[${TOOL_GROFF} -Tlatin1 -mdoc2html]
|
|
|
|
|
|
|
|
TOOL_ROFF_PS Generate PS groff output. [${TOOL_GROFF} -Tps]
|
|
|
|
|
|
|
|
TOOL_ROFF_RAW Generate "raw" groff output. [${TOOL_GROFF} -Z]
|
|
|
|
|
|
|
|
TOOL_RPCGEN Remote Procedure Call (RPC) protocol compiler. [rpcgen]
|
|
|
|
|
|
|
|
TOOL_SED Stream editor. [sed]
|
|
|
|
|
|
|
|
TOOL_SOELIM Eliminate .so's from groff input. [soelim]
|
|
|
|
|
|
|
|
TOOL_SPARKCRC Generate a crc suitable for use in a sparkive file.
|
|
|
|
[sparkcrc]
|
|
|
|
|
|
|
|
TOOL_STAT Display file status. [stat]
|
|
|
|
|
|
|
|
TOOL_STRFILE Create a random access file for storing strings.
|
|
|
|
[strfile]
|
|
|
|
|
|
|
|
TOOL_SUNLABEL Read or modify a SunOS disk label. [sunlabel]
|
|
|
|
|
|
|
|
TOOL_TBL Format tables for groff. [tbl]
|
|
|
|
|
|
|
|
TOOL_UUDECODE Uudecode a binary file. [uudecode]
|
|
|
|
|
|
|
|
TOOL_VGRIND Grind nice listings of programs. [vgrind -f]
|
|
|
|
|
|
|
|
TOOL_ZIC Time zone compiler. [zic]
|
|
|
|
|
2013-12-07 03:14:15 +04:00
|
|
|
For each possible value of MACHINE_CPU, MACHINES.${MACHINE_CPU} contain a
|
|
|
|
list of what ports can be built for it. This keeps those definitions in
|
|
|
|
centralized place.
|
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
<bsd.own.mk> is generally useful when building your own Makefiles so that
|
1993-03-21 12:45:37 +03:00
|
|
|
they use the same default owners etc. as the rest of the tree.
|
|
|
|
|
Only use the MKDYNAMICROOT semantics (i.e. -rpath=/lib,/usr/lib and
-dynamic-linker=/libexec/ld.elf_so) if the BINDIR of the program being
built is /bin or /sbin.
The reason we do this is because now all programs *except* those in
/bin and /sbin (i.e. the "special cases") match the default the compiler
uses, which is what is used for things in e.g. xsrc, pkgsrc, and other
random 3rd party programs.
This is done by decoupling where a shlib is installed from how it
is located. Two new variables, SHLIBINSTALLDIR and SHLINKINSTALLDIR,
contain the former information, and key off MKDYNAMICROOT only. SHLIBDIR
and SHLINKDIR contain the latter, and key off MKDYNAMICROOT and BINDIR.
The SHLIBINSTALLDIR, SHLIBDIR, _LIBSODIR, SHLINKINSTALLDIR, and
SHLINKDIR parameters are moved to a new <bsd.shlib.mk>; see bsd.README
for usage details.
2002-09-28 01:37:50 +04:00
|
|
|
|
2011-09-10 20:57:35 +04:00
|
|
|
=-=-=-=-= bsd.clean.mk =-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.clean.mk> defines the clean and cleandir
|
|
|
|
targets. It uses the following variables:
|
|
|
|
|
|
|
|
CLEANFILES Files to remove for both the clean and cleandir targets.
|
|
|
|
|
|
|
|
CLEANDIRFILES Files to remove for the cleandir target, but not for
|
|
|
|
the clean target.
|
|
|
|
|
2011-10-05 16:34:04 +04:00
|
|
|
MKCLEANSRC Controls whether or not the clean and cleandir targets
|
|
|
|
will delete files from both the object directory,
|
|
|
|
${.OBJDIR}, and the source directory, ${.CURDIR}.
|
|
|
|
|
|
|
|
If MKCLEANSRC is set to "no", then the file names in
|
|
|
|
CLEANFILES or CLEANDIRFILES are interpreted relative
|
|
|
|
to the object directory, ${.OBJDIR}. This is the
|
|
|
|
traditional behaviour.
|
|
|
|
|
|
|
|
If MKCLEANSRC is set to "yes", then the file deletion
|
|
|
|
is performed relative to both the object directory,
|
|
|
|
${.OBJDIR}, and the source directory, ${.CURDIR}. (This
|
|
|
|
has no effect if ${.OBJDIR} is the same as ${.CURDIR}.)
|
|
|
|
Deleting files from ${.CURDIR} is intended to remove
|
|
|
|
stray output files that had been left in the source
|
|
|
|
directory by an earlier build that did not use object
|
|
|
|
directories.
|
|
|
|
|
|
|
|
The default is MKCLEANSRC=yes. If you always build with
|
|
|
|
separate object directories, and you are sure that there
|
|
|
|
are no stray files in the source directories, then you
|
|
|
|
may set MKCLEANSRC=no to save some time.
|
|
|
|
|
|
|
|
MKCLEANVERIFY Controls whether or not the clean and cleandir targets
|
|
|
|
will verify that files have been deleted.
|
|
|
|
|
|
|
|
If MKCLEANVERIFY is set to "no", then the files will
|
|
|
|
be deleted using a "rm -f" command, and its success or
|
|
|
|
failure will be ignored.
|
|
|
|
|
|
|
|
If MKCLEANVERIFY is set to "yes", then the success of
|
|
|
|
the "rm -f" command will be verified using an "ls"
|
|
|
|
command.
|
|
|
|
|
|
|
|
The default is MKCLEANVERIFY=yes. If you are sure that
|
|
|
|
there will be no problems caused by file permissions,
|
|
|
|
read-only file systems, or the like, then you may set
|
|
|
|
MKCLEANVERIFY=no to save some time.
|
2011-09-10 20:57:35 +04:00
|
|
|
|
|
|
|
To use the clean and cleandir targets defined in <bsd.clean.mk>, other
|
|
|
|
Makefiles or bsd.*.mk files should append file names to the CLEANFILES
|
|
|
|
or CLEANDIRFILES variables. For example:
|
|
|
|
|
|
|
|
CLEANFILES+= a.out
|
|
|
|
CLEANDIRFILES+= .depend
|
|
|
|
|
|
|
|
.include <bsd.clean.mk>
|
|
|
|
|
2012-11-19 20:04:54 +04:00
|
|
|
The files listed in CLEANFILES and CLEANDIRFILES must not be
|
|
|
|
directories, because the potential risk from running "rm -rf" commands
|
|
|
|
in bsd.clean.mk is considered too great. If you want to recursively
|
|
|
|
delete a directory as part of "make clean" or "make cleandir" then you
|
|
|
|
need to provide your own target.
|
2011-09-10 20:57:35 +04:00
|
|
|
|
2003-07-29 05:26:15 +04:00
|
|
|
=-=-=-=-= bsd.dep.mk =-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.dep.mk> contains the default targets for building
|
2003-08-02 04:34:25 +04:00
|
|
|
.depend files. It creates .d files from entries in SRCS and DPSRCS
|
|
|
|
that are C, C++, or Objective C source files, and builds .depend from the
|
|
|
|
.d files. All other files in SRCS and all of DPSRCS will be used as
|
|
|
|
dependencies for the .d files. In order for this to function correctly,
|
2003-07-31 17:47:32 +04:00
|
|
|
it should be .included after all other .mk files and directives that may
|
|
|
|
modify SRCS or DPSRCS. It uses the following variables:
|
|
|
|
|
|
|
|
SRCS List of source files to build the program.
|
|
|
|
|
|
|
|
DPSRCS List of source files which are needed for generating
|
|
|
|
dependencies, but are not needed in ${SRCS}.
|
2003-07-29 05:26:15 +04:00
|
|
|
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
=-=-=-=-= bsd.files.mk =-=-=-=-=
|
Only use the MKDYNAMICROOT semantics (i.e. -rpath=/lib,/usr/lib and
-dynamic-linker=/libexec/ld.elf_so) if the BINDIR of the program being
built is /bin or /sbin.
The reason we do this is because now all programs *except* those in
/bin and /sbin (i.e. the "special cases") match the default the compiler
uses, which is what is used for things in e.g. xsrc, pkgsrc, and other
random 3rd party programs.
This is done by decoupling where a shlib is installed from how it
is located. Two new variables, SHLIBINSTALLDIR and SHLINKINSTALLDIR,
contain the former information, and key off MKDYNAMICROOT only. SHLIBDIR
and SHLINKDIR contain the latter, and key off MKDYNAMICROOT and BINDIR.
The SHLIBINSTALLDIR, SHLIBDIR, _LIBSODIR, SHLINKINSTALLDIR, and
SHLINKDIR parameters are moved to a new <bsd.shlib.mk>; see bsd.README
for usage details.
2002-09-28 01:37:50 +04:00
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
The include file <bsd.files.mk> handles the FILES variables and is included
|
2003-08-03 13:23:14 +04:00
|
|
|
from <bsd.lib.mk> and <bsd.prog.mk>, and uses the following variables:
|
2003-07-22 08:23:28 +04:00
|
|
|
|
|
|
|
FILES The list of files to install.
|
|
|
|
|
2004-05-22 20:04:58 +04:00
|
|
|
CONFIGFILES Similar semantics to FILES, except that the files
|
|
|
|
are installed by the `configinstall' target,
|
|
|
|
not the `install' target.
|
|
|
|
The FILES* variables documented below also apply.
|
|
|
|
|
2003-07-22 08:23:28 +04:00
|
|
|
FILESOWN File owner. [${BINOWN}]
|
|
|
|
|
|
|
|
FILESGRP File group. [${BINGRP}]
|
|
|
|
|
2008-03-28 09:04:40 +03:00
|
|
|
FILESMODE File mode. [${NONBINMODE}]
|
2003-07-22 08:23:28 +04:00
|
|
|
|
|
|
|
FILESDIR The location to install the files.
|
|
|
|
|
|
|
|
FILESNAME Optional name to install each file as.
|
|
|
|
|
2004-05-22 20:04:58 +04:00
|
|
|
FILESOWN_<fn> File owner of the specific file <fn>.
|
|
|
|
|
|
|
|
FILESGRP_<fn> File group of the specific file <fn>.
|
|
|
|
|
|
|
|
FILESMODE_<fn> File mode of the specific file <fn>.
|
|
|
|
|
2008-03-11 16:33:16 +03:00
|
|
|
FILESDIR_<fn> The location to install the specific file <fn>.
|
2004-05-22 20:04:58 +04:00
|
|
|
|
|
|
|
FILESNAME_<fn> Optional name to install <fn> as.
|
2003-07-22 08:23:28 +04:00
|
|
|
|
2011-09-09 14:08:14 +04:00
|
|
|
FILESBUILD If this variable is defined, then its value will be
|
|
|
|
used as the default for all FILESBUILD_<fn> variables.
|
|
|
|
Otherwise, the default will be "no".
|
|
|
|
|
2008-12-05 21:51:16 +03:00
|
|
|
FILESBUILD_<fn> A value different from "no" will add the file to the list of
|
|
|
|
targets to be built by `realall'. Users of that variable
|
|
|
|
should provide a target to build the file.
|
|
|
|
|
Only use the MKDYNAMICROOT semantics (i.e. -rpath=/lib,/usr/lib and
-dynamic-linker=/libexec/ld.elf_so) if the BINDIR of the program being
built is /bin or /sbin.
The reason we do this is because now all programs *except* those in
/bin and /sbin (i.e. the "special cases") match the default the compiler
uses, which is what is used for things in e.g. xsrc, pkgsrc, and other
random 3rd party programs.
This is done by decoupling where a shlib is installed from how it
is located. Two new variables, SHLIBINSTALLDIR and SHLINKINSTALLDIR,
contain the former information, and key off MKDYNAMICROOT only. SHLIBDIR
and SHLINKDIR contain the latter, and key off MKDYNAMICROOT and BINDIR.
The SHLIBINSTALLDIR, SHLIBDIR, _LIBSODIR, SHLINKINSTALLDIR, and
SHLINKDIR parameters are moved to a new <bsd.shlib.mk>; see bsd.README
for usage details.
2002-09-28 01:37:50 +04:00
|
|
|
|
2003-09-20 10:20:41 +04:00
|
|
|
BUILDSYMLINKS List of two word items:
|
2003-09-03 09:38:09 +04:00
|
|
|
lnsrc lntgt
|
|
|
|
For each lnsrc item, create a symlink named lntgt.
|
|
|
|
The lntgt symlinks are removed by the cleandir target.
|
|
|
|
|
2004-03-18 05:00:00 +03:00
|
|
|
UUDECODE_FILES List of files which are stored as <file>.uue in the source
|
|
|
|
tree. Each one will be decoded with ${TOOL_UUDECODE}.
|
2012-09-20 19:48:54 +04:00
|
|
|
The source files have a `.uue' suffix, the generated files do
|
2004-03-18 05:00:00 +03:00
|
|
|
not.
|
2004-03-18 06:26:55 +03:00
|
|
|
|
2008-03-11 16:33:16 +03:00
|
|
|
UUDECODE_FILES_RENAME_<fn>
|
|
|
|
Rename the output from the decode to the provided name.
|
2004-03-18 05:00:00 +03:00
|
|
|
|
|
|
|
*NOTE: These files are simply decoded, with no install or other
|
|
|
|
rule applying implicitly except being added to the clean
|
|
|
|
target.
|
Only use the MKDYNAMICROOT semantics (i.e. -rpath=/lib,/usr/lib and
-dynamic-linker=/libexec/ld.elf_so) if the BINDIR of the program being
built is /bin or /sbin.
The reason we do this is because now all programs *except* those in
/bin and /sbin (i.e. the "special cases") match the default the compiler
uses, which is what is used for things in e.g. xsrc, pkgsrc, and other
random 3rd party programs.
This is done by decoupling where a shlib is installed from how it
is located. Two new variables, SHLIBINSTALLDIR and SHLINKINSTALLDIR,
contain the former information, and key off MKDYNAMICROOT only. SHLIBDIR
and SHLINKDIR contain the latter, and key off MKDYNAMICROOT and BINDIR.
The SHLIBINSTALLDIR, SHLIBDIR, _LIBSODIR, SHLINKINSTALLDIR, and
SHLINKDIR parameters are moved to a new <bsd.shlib.mk>; see bsd.README
for usage details.
2002-09-28 01:37:50 +04:00
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
=-=-=-=-= bsd.gcc.mk =-=-=-=-=
|
Only use the MKDYNAMICROOT semantics (i.e. -rpath=/lib,/usr/lib and
-dynamic-linker=/libexec/ld.elf_so) if the BINDIR of the program being
built is /bin or /sbin.
The reason we do this is because now all programs *except* those in
/bin and /sbin (i.e. the "special cases") match the default the compiler
uses, which is what is used for things in e.g. xsrc, pkgsrc, and other
random 3rd party programs.
This is done by decoupling where a shlib is installed from how it
is located. Two new variables, SHLIBINSTALLDIR and SHLINKINSTALLDIR,
contain the former information, and key off MKDYNAMICROOT only. SHLIBDIR
and SHLINKDIR contain the latter, and key off MKDYNAMICROOT and BINDIR.
The SHLIBINSTALLDIR, SHLIBDIR, _LIBSODIR, SHLINKINSTALLDIR, and
SHLINKDIR parameters are moved to a new <bsd.shlib.mk>; see bsd.README
for usage details.
2002-09-28 01:37:50 +04:00
|
|
|
|
2003-06-01 00:33:15 +04:00
|
|
|
The include file <bsd.gcc.mk> computes various parameters related to GCC
|
|
|
|
support libraries. It defines no targets. <bsd.own.mk> MUST be included
|
2003-08-03 13:23:14 +04:00
|
|
|
before <bsd.gcc.mk>.
|
2003-06-01 00:33:15 +04:00
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
The primary users of <bsd.gcc.mk> are <bsd.prog.mk> and <bsd.lib.mk>, each
|
2003-06-01 00:33:15 +04:00
|
|
|
of which need to know where to find certain GCC support libraries.
|
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
The behavior of <bsd.gcc.mk> is influenced by the EXTERNAL_TOOLCHAIN variable,
|
2003-06-01 00:33:15 +04:00
|
|
|
which is generally set by the user. If EXTERNAL_TOOLCHAIN it set, then
|
|
|
|
the compiler is asked where to find the support libraries, otherwise the
|
|
|
|
support libraries are found in ${DESTDIR}/usr/lib.
|
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
<bsd.gcc.mk> sets the following variables:
|
2003-06-01 00:33:15 +04:00
|
|
|
|
|
|
|
_GCC_CRTBEGIN The full path name to crtbegin.o.
|
|
|
|
|
|
|
|
_GCC_CRTBEGINS The full path name to crtbeginS.o.
|
|
|
|
|
|
|
|
_GCC_CRTEND The full path name to crtend.o.
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
_GCC_CRTENDS The full path name to crtendS.o.
|
|
|
|
|
|
|
|
_GCC_LIBGCCDIR The directory where libgcc.a is located.
|
|
|
|
|
|
|
|
|
|
|
|
=-=-=-=-= bsd.inc.mk =-=-=-=-=
|
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
The include file <bsd.inc.mk> defines the includes target and uses the
|
2003-07-18 04:33:18 +04:00
|
|
|
variables:
|
|
|
|
|
2003-07-22 08:23:28 +04:00
|
|
|
INCS The list of include files.
|
2003-07-18 04:33:18 +04:00
|
|
|
|
|
|
|
INCSDIR The location to install the include files.
|
|
|
|
|
|
|
|
INCSNAME Target name of the include file, if only one; same as
|
|
|
|
FILESNAME, but for include files.
|
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
INCSYMLINKS Similar to SYMLINKS in <bsd.links.mk>, except that these
|
|
|
|
are installed in the 'includes' target and not the
|
|
|
|
(much later) 'install' target.
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
INCSNAME_<file> The name file <file> should be installed as, if not <file>,
|
|
|
|
same as FILESNAME_<file>, but for include files.
|
|
|
|
|
|
|
|
|
|
|
|
=-=-=-=-= bsd.info.mk =-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.info.mk> is used to generate and install GNU Info
|
|
|
|
documentation from respective Texinfo source files. It defines three
|
|
|
|
implicit targets (.txi.info, .texi.info, and .texinfo.info), and uses the
|
|
|
|
following variables:
|
|
|
|
|
|
|
|
TEXINFO List of Texinfo source files. Info documentation will
|
|
|
|
consist of single files with the extension replaced by
|
|
|
|
.info.
|
|
|
|
|
|
|
|
INFOFLAGS Flags to pass to makeinfo. []
|
|
|
|
|
|
|
|
|
|
|
|
=-=-=-=-= bsd.kernobj.mk =-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.kernobj.mk> defines variables related to the
|
|
|
|
location of kernel sources and object directories.
|
|
|
|
|
|
|
|
KERNSRCDIR Is the location of the top of the kernel src.
|
2003-07-22 08:23:28 +04:00
|
|
|
[${_SRC_TOP_}/sys]
|
2003-07-18 04:33:18 +04:00
|
|
|
|
2003-07-22 08:23:28 +04:00
|
|
|
KERNARCHDIR Is the location of the machine dependent kernel sources.
|
|
|
|
[arch/${MACHINE}]
|
2003-07-18 12:26:01 +04:00
|
|
|
|
2003-07-22 08:23:28 +04:00
|
|
|
KERNCONFDIR Is where the configuration files for kernels are found.
|
|
|
|
[${KERNSRCDIR}/${KERNARCHDIR}/conf]
|
2003-07-18 04:33:18 +04:00
|
|
|
|
|
|
|
KERNOBJDIR Is the kernel build directory. The kernel GENERIC for
|
|
|
|
instance will be compiled in ${KERNOBJDIR}/GENERIC.
|
|
|
|
The default value is
|
|
|
|
${MAKEOBJDIRPREFIX}${KERNSRCDIR}/${KERNARCHDIR}/compile
|
|
|
|
if it exists or the target 'obj' is being made.
|
|
|
|
Otherwise the default is
|
|
|
|
${KERNSRCDIR}/${KERNARCHDIR}/compile.
|
|
|
|
|
|
|
|
It is important that Makefiles (such as those under src/distrib) that
|
2003-08-03 13:23:14 +04:00
|
|
|
wish to find compiled kernels use <bsd.kernobj.mk> and ${KERNOBJDIR}
|
2003-07-18 04:33:18 +04:00
|
|
|
rather than make assumptions about the location of the compiled kernel.
|
|
|
|
|
|
|
|
|
|
|
|
=-=-=-=-= bsd.kinc.mk =-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.kinc.mk> defines the many targets (includes,
|
|
|
|
subdirectories, etc.), and is used by kernel makefiles to handle
|
|
|
|
include file installation. It is intended to be included alone, by
|
2003-08-03 13:23:14 +04:00
|
|
|
kernel Makefiles. It uses similar variables to <bsd.inc.mk>.
|
|
|
|
Please see <bsd.kinc.mk> for more details, and keep the documentation
|
|
|
|
in that file up to date.
|
2003-07-18 04:33:18 +04:00
|
|
|
|
2014-01-14 22:51:45 +04:00
|
|
|
=-=-=-=-= bsd.syscall.mk =-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.syscall.mk> contains the logic to create syscall
|
|
|
|
files for various emulations. It includes <bsd.kinc.mk> to handle the
|
|
|
|
rest of the targets.
|
2003-07-18 04:33:18 +04:00
|
|
|
|
|
|
|
=-=-=-=-= bsd.lib.mk =-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.lib.mk> has support for building libraries. It has
|
|
|
|
the same eight targets as <bsd.prog.mk>: all, clean, cleandir, depend,
|
|
|
|
includes, install, lint, and tags. Additionally, it has a checkver target
|
|
|
|
which checks for installed shared object libraries whose version is greater
|
|
|
|
that the version of the source. It has a limited number of suffixes,
|
2003-08-03 13:23:14 +04:00
|
|
|
consistent with the current needs of the BSD tree. <bsd.lib.mk> includes
|
2003-07-18 04:33:18 +04:00
|
|
|
<bsd.shlib.mk> to get shared library parameters.
|
|
|
|
|
|
|
|
It sets/uses the following variables:
|
|
|
|
|
|
|
|
LIB The name of the library to build.
|
|
|
|
|
|
|
|
LIBDIR Target directory for libraries.
|
|
|
|
|
2009-03-13 19:23:31 +03:00
|
|
|
MKARZERO Normally, ar(1) sets the timestamps, uid, gid and
|
|
|
|
permissions in files inside its archives to those of
|
|
|
|
the file it was fed. This leads to non-reproduceable
|
2014-01-14 15:32:35 +04:00
|
|
|
builds. If MKARZERO is set to "yes" (default is the
|
|
|
|
same as MKREPRO, or "no" if MKREPRO is not defined),
|
2009-03-13 19:23:31 +03:00
|
|
|
then the "D" flag is passed to ar, causing the
|
|
|
|
timestamp, uid and gid to be zeroed and the file
|
|
|
|
permissions to be set to 644. This allows .a files
|
|
|
|
from different builds to be bit identical.
|
|
|
|
|
2012-08-24 01:21:14 +04:00
|
|
|
SHLIBINSTALLDIR Target directory for shared libraries if ${USE_SHLIBDIR}
|
|
|
|
is not "no".
|
|
|
|
|
2009-12-30 23:45:46 +03:00
|
|
|
SHLIB_MAJOR
|
|
|
|
SHLIB_MINOR
|
|
|
|
SHLIB_TEENY Major, minor, and teeny version numbers of shared library
|
|
|
|
|
2012-08-24 01:21:14 +04:00
|
|
|
USE_SHLIBDIR If not "no", use ${SHLIBINSTALLDIR} instead of ${LIBDIR}
|
2003-07-18 04:33:18 +04:00
|
|
|
as the path to install shared libraries to.
|
|
|
|
USE_SHLIBDIR must be defined before <bsd.own.mk> is included.
|
2003-07-28 12:53:53 +04:00
|
|
|
Default: no
|
2003-07-18 04:33:18 +04:00
|
|
|
|
2008-08-10 13:25:04 +04:00
|
|
|
LIBISMODULE If not "no", install as ${LIB}.so (without the "lib" prefix),
|
|
|
|
and act as "MKDEBUGLIB=no MKLINT=no MKPICINSTALL=no
|
|
|
|
MKPROFILE=no MKSTATICLIB=no".
|
|
|
|
Default: no
|
|
|
|
|
2008-07-21 16:12:57 +04:00
|
|
|
LIBISPRIVATE If not "no", act as "MKDEBUGLIB=no MKLINT=no MKPIC=no
|
|
|
|
MKPROFILE=no", and don't install the (.a) library.
|
2004-05-23 05:45:21 +04:00
|
|
|
This is useful for "build only" helper libraries.
|
|
|
|
Default: no
|
|
|
|
|
2008-12-06 22:32:05 +03:00
|
|
|
LIBISCXX If not "no", Use ${CXX} instead of ${CC} to link
|
|
|
|
shared libraries.
|
|
|
|
This is useful for C++ libraries.
|
|
|
|
Default: no
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
LINTLIBDIR Target directory for lint libraries.
|
|
|
|
|
|
|
|
LIBGRP Library group.
|
|
|
|
|
|
|
|
LIBOWN Library owner.
|
|
|
|
|
|
|
|
LIBMODE Library mode.
|
|
|
|
|
|
|
|
LDADD Additional loader objects.
|
|
|
|
|
|
|
|
MAN The manual pages to be installed (use a .1 - .9 suffix).
|
|
|
|
|
|
|
|
NOCHECKVER_<library>
|
|
|
|
NOCHECKVER If set, disables checking for installed shared object
|
|
|
|
libraries with versions greater than the source. A
|
|
|
|
particular library name, without the "lib" prefix, may
|
|
|
|
be appended to the variable name to disable the check for
|
|
|
|
only that library.
|
|
|
|
|
|
|
|
SRCS List of source files to build the library. Suffix types
|
|
|
|
.s, .c, and .f are supported. Note, .s files are preferred
|
|
|
|
to .c files of the same name. (This is not the default for
|
|
|
|
versions of make.)
|
|
|
|
|
2004-12-29 17:46:24 +03:00
|
|
|
LIBDPLIBS A list of the tuples:
|
|
|
|
libname path-to-srcdir-of-libname
|
|
|
|
|
|
|
|
For each tuple;
|
|
|
|
* LIBDO.libname contains the .OBJDIR of the library
|
|
|
|
`libname', and if it is not set it is determined
|
|
|
|
from the srcdir and added to MAKEOVERRIDES (the
|
|
|
|
latter is to allow for build time optimization).
|
|
|
|
* LDADD gets -L${LIBDO.libname} -llibname added.
|
|
|
|
* DPADD gets ${LIBDO.libname}/liblibname.so or
|
|
|
|
${LIBDO.libname}/liblibname.a added.
|
|
|
|
|
2012-11-14 02:30:38 +04:00
|
|
|
The special value "_external" for LIBDO.lib makes the
|
|
|
|
build system to assume the library comes from outside
|
|
|
|
of the NetBSD source tree and only causes -llibname
|
|
|
|
to be added to LDADD.
|
|
|
|
|
2004-12-29 17:46:24 +03:00
|
|
|
This variable may be used for individual libraries, as
|
2012-09-20 19:48:54 +04:00
|
|
|
well as in parent directories to cache common libraries
|
2004-12-29 17:46:24 +03:00
|
|
|
as a build-time optimization.
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
The include file <bsd.lib.mk> includes the file named "../Makefile.inc"
|
|
|
|
if it exists, as well as the include file <bsd.man.mk>.
|
|
|
|
|
|
|
|
It has rules for building profiled objects; profiled libraries are
|
|
|
|
built by default.
|
|
|
|
|
|
|
|
Libraries are ranlib'd when made.
|
|
|
|
|
|
|
|
|
|
|
|
=-=-=-=-= bsd.links.mk =-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.links.mk> handles the LINKS and SYMLINKS variables
|
2003-08-03 13:23:14 +04:00
|
|
|
and is included from from <bsd.lib.mk> and <bsd.prog.mk>.
|
|
|
|
|
2009-04-10 20:16:12 +04:00
|
|
|
LINKSOWN, LINKSGRP, and LINKSMODE, are relevant only if a metadata log
|
|
|
|
is used. The defaults may be modified by other bsd.*.mk files which
|
|
|
|
include bsd.links.mk. In the future, these variables may be replaced
|
|
|
|
by a method for explicitly recording hard links in a metadata log.
|
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
LINKS The list of hard links, consisting of pairs of paths:
|
|
|
|
source-file target-file
|
|
|
|
${DESTDIR} is prepended to both paths before linking.
|
|
|
|
For example, to link /bin/test and /bin/[, use:
|
|
|
|
LINKS=/bin/test /bin/[
|
|
|
|
|
2004-05-22 20:04:58 +04:00
|
|
|
CONFIGLINKS Similar semantics to LINKS, except that the links
|
|
|
|
are installed by the `configinstall' target,
|
|
|
|
not the `install' target.
|
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
SYMLINKS The list of symbolic links, consisting of pairs of paths:
|
|
|
|
source-file target-file
|
|
|
|
${DESTDIR} is only prepended to target-file before linking.
|
|
|
|
For example, to symlink /usr/bin/tar to /bin/tar resulting
|
|
|
|
in ${DESTDIR}/usr/bin/tar -> /bin/tar:
|
|
|
|
SYMLINKS=/bin/tar /usr/bin/tar
|
2003-07-18 04:33:18 +04:00
|
|
|
|
2004-05-22 20:04:58 +04:00
|
|
|
CONFIGSYMLINKS Similar semantics to SYMLINKS, except that the symbolic links
|
|
|
|
are installed by the `configinstall' target,
|
|
|
|
not the `install' target.
|
|
|
|
|
2009-04-10 20:16:12 +04:00
|
|
|
LINKSOWN Link owner. [${BINOWN}]
|
|
|
|
|
|
|
|
LINKSGRP Link group. [${BINGRP}]
|
|
|
|
|
|
|
|
LINKSMODE Link mode. [${NONBINMODE}]
|
|
|
|
|
|
|
|
LINKSOWN_<fn> Link owner of the specific file <fn>.
|
|
|
|
|
|
|
|
LINKSGRP_<fn> Link group of the specific file <fn>.
|
|
|
|
|
|
|
|
LINKSMODE_<fn> Link mode of the specific file <fn>.
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
|
|
|
|
=-=-=-=-= bsd.man.mk =-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.man.mk> handles installing manual pages and their
|
|
|
|
links.
|
|
|
|
|
2008-08-31 05:21:41 +04:00
|
|
|
It has a three targets:
|
2003-07-18 04:33:18 +04:00
|
|
|
|
|
|
|
catinstall:
|
|
|
|
Install the preformatted manual pages and their links.
|
2008-08-31 05:21:41 +04:00
|
|
|
htmlinstall:
|
|
|
|
Install the HTML manual pages and their links.
|
|
|
|
maninstall:
|
|
|
|
Install the manual page sources and their links.
|
2003-07-18 04:33:18 +04:00
|
|
|
|
|
|
|
It sets/uses the following variables:
|
|
|
|
|
|
|
|
MANDIR Base path for manual installation.
|
|
|
|
|
|
|
|
MANGRP Manual group.
|
|
|
|
|
|
|
|
MANOWN Manual owner.
|
|
|
|
|
|
|
|
MANMODE Manual mode.
|
|
|
|
|
|
|
|
MANSUBDIR Subdirectory under the manual page section, i.e. "/vax"
|
|
|
|
or "/tahoe" for machine specific manual pages.
|
|
|
|
|
|
|
|
MAN The manual pages to be installed (use a .1 - .9 suffix).
|
|
|
|
|
|
|
|
MLINKS List of manual page links (using a .1 - .9 suffix). The
|
|
|
|
linked-to file must come first, the linked file second,
|
2010-08-25 19:24:29 +04:00
|
|
|
and there may be multiple pairs.
|
2003-07-18 04:33:18 +04:00
|
|
|
|
|
|
|
The include file <bsd.man.mk> includes a file named "../Makefile.inc" if
|
|
|
|
it exists.
|
|
|
|
|
|
|
|
|
|
|
|
=-=-=-=-= bsd.obj.mk =-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.obj.mk> defines targets related to the creation
|
|
|
|
and use of separated object and source directories.
|
|
|
|
|
|
|
|
If an environment variable named MAKEOBJDIRPREFIX is set, make(1) uses
|
|
|
|
${MAKEOBJDIRPREFIX}${.CURDIR} as the name of the object directory if
|
|
|
|
it exists. Otherwise make(1) looks for the existence of a
|
|
|
|
subdirectory (or a symlink to a directory) of the source directory
|
|
|
|
into which built targets should be placed. If an environment variable
|
|
|
|
named MAKEOBJDIR is set, make(1) uses its value as the name of the
|
|
|
|
object directory; failing that, make first looks for a subdirectory
|
|
|
|
named "obj.${MACHINE}", and if that doesn't exist, it looks for "obj".
|
|
|
|
|
|
|
|
Object directories are not created automatically by make(1) if they
|
|
|
|
don't exist; you need to run a separate "make obj". (This will happen
|
|
|
|
during a top-level build if "MKOBJDIRS" is set to a value other than
|
|
|
|
"no"). When the source directory is a subdirectory of ${BSDSRCDIR} --
|
|
|
|
and this is determined by a simple string prefix comparison -- object
|
|
|
|
directories are created in a separate object directory tree, and a
|
|
|
|
symlink to the object directory in that tree is created in the source
|
|
|
|
directory; otherwise, "make obj" assumes that you're not in the main
|
|
|
|
source tree and that it's not safe to use a separate object tree.
|
|
|
|
|
|
|
|
Several variables used by <bsd.obj.mk> control exactly what
|
|
|
|
directories and links get created during a "make obj":
|
|
|
|
|
|
|
|
MAKEOBJDIR If set, this is the component name of the object
|
|
|
|
directory.
|
|
|
|
|
|
|
|
OBJMACHINE If this is set but MAKEOBJDIR is not set, creates
|
|
|
|
object directories or links named "obj.${MACHINE}";
|
|
|
|
otherwise, just creates ones named "obj".
|
|
|
|
|
|
|
|
USR_OBJMACHINE If set, and the current directory is a subdirectory of
|
|
|
|
${BSDSRCDIR}, create object directory in the
|
|
|
|
corresponding subdirectory of ${BSDOBJDIR}.${MACHINE};
|
|
|
|
otherwise, create it in the corresponding subdirectory
|
|
|
|
of ${BSDOBJDIR}
|
|
|
|
|
|
|
|
BUILDID If set, the contents of this variable are appended
|
|
|
|
to the object directory name. If OBJMACHINE is also
|
|
|
|
set, ".${BUILDID}" is added after ".${MACHINE}".
|
2003-06-01 00:33:15 +04:00
|
|
|
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
=-=-=-=-= bsd.prog.mk =-=-=-=-=
|
2003-06-01 00:33:15 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
The include file <bsd.prog.mk> handles building programs from one or
|
|
|
|
more source files, along with their manual pages. It has a limited number
|
2012-09-20 19:48:54 +04:00
|
|
|
of suffixes, consistent with the current needs of the BSD tree.
|
2003-08-03 13:23:14 +04:00
|
|
|
<bsd.prog.mk> includes <bsd.shlib.mk> to get shared library parameters.
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-04-04 06:05:03 +04:00
|
|
|
It has eight targets:
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
all:
|
2002-09-08 07:59:02 +04:00
|
|
|
build the program and its manual page. This also
|
|
|
|
creates a GDB initialization file (.gdbinit) in
|
|
|
|
the objdir. The .gdbinit file sets the shared library
|
|
|
|
prefix to ${DESTDIR} to facilitate cross-debugging.
|
1993-03-21 12:45:37 +03:00
|
|
|
clean:
|
|
|
|
remove the program, any object files and the files a.out,
|
1997-03-29 11:02:45 +03:00
|
|
|
Errs, errs, mklog, and ${PROG}.core.
|
1993-03-21 12:45:37 +03:00
|
|
|
cleandir:
|
|
|
|
remove all of the files removed by the target clean, as
|
|
|
|
well as .depend, tags, and any manual pages.
|
1998-08-09 18:46:19 +04:00
|
|
|
`distclean' is a synonym for `cleandir'.
|
1993-03-21 12:45:37 +03:00
|
|
|
depend:
|
|
|
|
make the dependencies for the source files, and store
|
|
|
|
them in the file .depend.
|
1996-04-04 06:05:03 +04:00
|
|
|
includes:
|
|
|
|
install any header files.
|
1993-03-21 12:45:37 +03:00
|
|
|
install:
|
|
|
|
install the program and its manual pages; if the Makefile
|
|
|
|
does not itself define the target install, the targets
|
|
|
|
beforeinstall and afterinstall may also be used to cause
|
|
|
|
actions immediately before and after the install target
|
|
|
|
is executed.
|
|
|
|
lint:
|
|
|
|
run lint on the source files
|
|
|
|
tags:
|
|
|
|
create a tags file for the source files.
|
|
|
|
|
|
|
|
It sets/uses the following variables:
|
|
|
|
|
|
|
|
BINGRP Binary group.
|
|
|
|
|
|
|
|
BINOWN Binary owner.
|
|
|
|
|
|
|
|
BINMODE Binary mode.
|
|
|
|
|
2011-09-10 20:57:35 +04:00
|
|
|
CLEANDIRFILES Additional files to remove for the cleandir target.
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
CLEANFILES Additional files to remove for the clean and cleandir targets.
|
|
|
|
|
2014-11-30 18:53:29 +03:00
|
|
|
CONFIGOPTS Additional flags to config(1) when building kernels.
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
COPTS Additional flags to the compiler when creating C objects.
|
|
|
|
|
2003-07-22 10:53:21 +04:00
|
|
|
COPTS.<fn> Additional flags to the compiler when creating the
|
|
|
|
C objects for <fn>.
|
|
|
|
For <fn>.[ly], "<fn>.c" must be used.
|
|
|
|
|
2003-05-30 22:43:23 +04:00
|
|
|
CPUFLAGS Additional flags to the compiler/assembler to select
|
|
|
|
CPU instruction set options, CPU tuning options, etc.
|
|
|
|
|
2003-07-22 10:53:21 +04:00
|
|
|
CPUFLAGS.<fn> Additional flags to the compiler/assembler for <fn>.
|
|
|
|
For <fn>.[ly], "<fn>.c" must be used.
|
|
|
|
|
2003-07-22 08:23:28 +04:00
|
|
|
CPPFLAGS Additional flags to the C pre-processor.
|
1998-04-13 16:03:07 +04:00
|
|
|
|
2003-07-22 10:53:21 +04:00
|
|
|
CPPFLAGS.<fn> Additional flags to the C pre-processor for <fn>.
|
|
|
|
For <fn>.[ly], "<fn>.c" must be used.
|
|
|
|
|
2002-09-08 07:59:02 +04:00
|
|
|
GDBINIT List of GDB initialization files to add to "source"
|
|
|
|
directives in the .gdbinit file that is created in the
|
|
|
|
objdir.
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
LDADD Additional loader objects. Usually used for libraries.
|
|
|
|
For example, to load with the compatibility and utility
|
|
|
|
libraries, use:
|
|
|
|
|
1993-12-29 22:30:15 +03:00
|
|
|
LDADD+=-lutil -lcompat
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2006-05-12 08:29:08 +04:00
|
|
|
LDFLAGS Additional linker flags (passed to ${CC} during link).
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
LINKS See <bsd.links.mk>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2006-05-12 03:47:34 +04:00
|
|
|
OBJCOPTS Additional flags to the compiler when creating ObjC objects.
|
|
|
|
|
|
|
|
OBJCOPTS.<fn> Additional flags to the compiler when creating the
|
|
|
|
ObjC objects for <fn>.
|
|
|
|
For <fn>.[ly], "<fn>.c" must be used.
|
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
SYMLINKS See <bsd.links.mk>
|
1997-03-13 05:45:58 +03:00
|
|
|
|
1996-01-23 01:46:06 +03:00
|
|
|
MAN Manual pages (should end in .1 - .9). If no MAN variable is
|
1994-12-22 12:20:40 +03:00
|
|
|
defined, "MAN=${PROG}.1" is assumed.
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-07-22 12:01:54 +04:00
|
|
|
PAXCTL_FLAGS If defined, run paxctl(1) on the program binary after link
|
2008-07-22 03:23:42 +04:00
|
|
|
time, with the value of this variable as args to paxctl(1).
|
2007-01-26 02:04:28 +03:00
|
|
|
|
|
|
|
PAXCTL_FLAGS.${PROG} Custom override for PAXCTL_FLAGS.
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
PROG The name of the program to build. If not supplied, nothing
|
|
|
|
is built.
|
|
|
|
|
2002-01-01 04:38:25 +03:00
|
|
|
PROG_CXX If defined, the name of the program to build. Also
|
|
|
|
causes <bsd.prog.mk> to link the program with the C++
|
|
|
|
compiler rather than the C compiler. PROG_CXX overrides
|
|
|
|
the value of PROG if PROG is also set.
|
2002-01-01 03:34:26 +03:00
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
PROGNAME The name that the above program will be installed as, if
|
|
|
|
different from ${PROG}.
|
|
|
|
|
1998-05-05 21:15:05 +04:00
|
|
|
SRCS List of source files to build the program. If SRCS is not
|
1993-03-21 12:45:37 +03:00
|
|
|
defined, it's assumed to be ${PROG}.c.
|
|
|
|
|
2002-12-20 19:05:16 +03:00
|
|
|
DPSRCS List of source files which are needed for generating
|
|
|
|
dependencies, but are not needed in ${SRCS}.
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
DPADD Additional dependencies for the program. Usually used for
|
|
|
|
libraries. For example, to depend on the compatibility and
|
|
|
|
utility libraries use:
|
|
|
|
|
1993-12-29 22:30:15 +03:00
|
|
|
DPADD+=${LIBCOMPAT} ${LIBUTIL}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2011-10-16 05:14:33 +04:00
|
|
|
The following system libraries are predefined for DPADD:
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2007-07-29 21:06:00 +04:00
|
|
|
LIBARCHIVE?= ${DESTDIR}/usr/lib/libarchive.a
|
2005-01-08 12:53:38 +03:00
|
|
|
LIBASN1?= ${DESTDIR}/usr/lib/libasn1.a
|
2011-02-20 23:16:01 +03:00
|
|
|
LIBATF_C?= ${DESTDIR}/usr/lib/libatf-c.a
|
|
|
|
LIBATF_CXX?= ${DESTDIR}/usr/lib/libatf-c++.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBBIND9?= ${DESTDIR}/usr/lib/libbind9.a
|
2006-06-19 19:44:33 +04:00
|
|
|
LIBBLUETOOTH?= ${DESTDIR}/usr/lib/libbluetooth.a
|
2005-01-08 12:53:38 +03:00
|
|
|
LIBBSDMALLOC?= ${DESTDIR}/usr/lib/libbsdmalloc.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBBZ2?= ${DESTDIR}/usr/lib/libbz2.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBC?= ${DESTDIR}/usr/lib/libc.a
|
|
|
|
LIBCOMPAT?= ${DESTDIR}/usr/lib/libcompat.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBCOM_ERR?= ${DESTDIR}/usr/lib/libcom_err.a
|
|
|
|
LIBCRT0?= ${DESTDIR}/usr/lib/crt0.o
|
2013-11-11 14:24:53 +04:00
|
|
|
LIBCRTI?= ${DESTDIR}/usr/lib/crti.o
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBCRYPT?= ${DESTDIR}/usr/lib/libcrypt.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBCRYPTO?= ${DESTDIR}/usr/lib/libcrypto.a
|
|
|
|
LIBCRYPTO_IDEA?=${DESTDIR}/usr/lib/libcrypto_idea.a
|
2002-09-26 17:05:54 +04:00
|
|
|
LIBCRYPTO_MDC2?=${DESTDIR}/usr/lib/libcrypto_mdc2.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBCRYPTO_RC5?= ${DESTDIR}/usr/lib/libcrypto_rc5.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBCURSES?= ${DESTDIR}/usr/lib/libcurses.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBC_PIC?= ${DESTDIR}/usr/lib/libc_pic.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBDBM?= ${DESTDIR}/usr/lib/libdbm.a
|
|
|
|
LIBDES?= ${DESTDIR}/usr/lib/libdes.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBDNS?= ${DESTDIR}/usr/lib/libdns.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBEDIT?= ${DESTDIR}/usr/lib/libedit.a
|
2003-06-13 03:26:19 +04:00
|
|
|
LIBEVENT?= ${DESTDIR}/usr/lib/libevent.a
|
2013-04-11 05:27:46 +04:00
|
|
|
LIBEVENT_OPENSSL?= ${DESTDIR}/usr/lib/libevent_openssl.a
|
|
|
|
LIBEVENT_PTHREADS?= ${DESTDIR}/usr/lib/libevent_pthreads.a
|
2015-11-08 02:53:28 +03:00
|
|
|
LIBEXECINFO?= ${DESTDIR}/usr/lib/libexecinfo.a
|
2012-03-01 00:07:51 +04:00
|
|
|
LIBEXPAT?= ${DESTDIR}/usr/lib/libexpat.a
|
2008-10-02 21:54:51 +04:00
|
|
|
LIBFETCH?= ${DESTDIR}/usr/lib/libfetch.a
|
2001-01-05 15:59:25 +03:00
|
|
|
LIBFORM?= ${DESTDIR}/usr/lib/libform.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBFL?= ${DESTDIR}/usr/lib/libfl.a
|
|
|
|
LIBG2C?= ${DESTDIR}/usr/lib/libg2c.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBGCC?= ${DESTDIR}/usr/lib/libgcc.a
|
|
|
|
LIBGNUMALLOC?= ${DESTDIR}/usr/lib/libgnumalloc.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBGSSAPI?= ${DESTDIR}/usr/lib/libgssapi.a
|
|
|
|
LIBHDB?= ${DESTDIR}/usr/lib/libhdb.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBHEIMBASE?= ${DESTDIR}/usr/lib/libheimbase.a
|
|
|
|
LIBHEIMNTLM?= ${DESTDIR}/usr/lib/libheimntlm.a
|
|
|
|
LIBHX500?= ${DESTDIR}/usr/lib/libhx500.a
|
2000-10-31 13:49:01 +03:00
|
|
|
LIBINTL?= ${DESTDIR}/usr/lib/libintl.a
|
1999-07-02 00:19:18 +04:00
|
|
|
LIBIPSEC?= ${DESTDIR}/usr/lib/libipsec.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBISC?= ${DESTDIR}/usr/lib/libisc.a
|
|
|
|
LIBISCCC?= ${DESTDIR}/usr/lib/libisccc.a
|
|
|
|
LIBISCFG?= ${DESTDIR}/usr/lib/libiscfg.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBKADM5CLNT?= ${DESTDIR}/usr/lib/libkadm5clnt.a
|
|
|
|
LIBKADM5SRV?= ${DESTDIR}/usr/lib/libkadm5srv.a
|
|
|
|
LIBKAFS?= ${DESTDIR}/usr/lib/libkafs.a
|
|
|
|
LIBKRB5?= ${DESTDIR}/usr/lib/libkrb5.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBKVM?= ${DESTDIR}/usr/lib/libkvm.a
|
|
|
|
LIBL?= ${DESTDIR}/usr/lib/libl.a
|
2008-05-22 17:40:30 +04:00
|
|
|
LIBLBER?= ${DESTDIR}/usr/lib/liblber.a
|
|
|
|
LIBLDAP?= ${DESTDIR}/usr/lib/libldap.a
|
2008-05-28 15:23:26 +04:00
|
|
|
LIBLDAP_R?= ${DESTDIR}/usr/lib/libldap_r.a
|
2010-10-31 14:52:50 +03:00
|
|
|
LIBLUA?= ${DESTDIR}/usr/lib/liblua.a
|
2013-02-17 01:40:05 +04:00
|
|
|
LIBLUTOK?= ${DESTDIR}/usr/lib/liblutok.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBLWRES?= ${DESTDIR}/usr/lib/liblwres.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBM?= ${DESTDIR}/usr/lib/libm.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBMAGIC?= ${DESTDIR}/usr/lib/libmagic.a
|
1999-11-23 16:22:37 +03:00
|
|
|
LIBMENU?= ${DESTDIR}/usr/lib/libmenu.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBOBJC?= ${DESTDIR}/usr/lib/libobjc.a
|
|
|
|
LIBOSSAUDIO?= ${DESTDIR}/usr/lib/libossaudio.a
|
2005-01-08 12:53:38 +03:00
|
|
|
LIBPAM?= ${DESTDIR}/usr/lib/libpam.a
|
2015-11-22 07:59:15 +03:00
|
|
|
LIBPANEL?= ${DESTDIR}/usr/lib/libpanel.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBPCAP?= ${DESTDIR}/usr/lib/libpcap.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBPCI?= ${DESTDIR}/usr/lib/libpci.a
|
2002-08-09 04:21:22 +04:00
|
|
|
LIBPMC?= ${DESTDIR}/usr/lib/libpmc.a
|
1997-05-19 00:21:53 +04:00
|
|
|
LIBPOSIX?= ${DESTDIR}/usr/lib/libposix.a
|
2003-01-24 05:06:37 +03:00
|
|
|
LIBPTHREAD?= ${DESTDIR}/usr/lib/libpthread.a
|
|
|
|
LIBPTHREAD_DBG?=${DESTDIR}/usr/lib/libpthread_dbg.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBPUFFS?= ${DESTDIR}/usr/lib/libpuffs.a
|
|
|
|
LIBQUOTA?= ${DESTDIR}/usr/lib/libquota.a
|
2005-02-20 03:35:02 +03:00
|
|
|
LIBRADIUS?= ${DESTDIR}/usr/lib/libradius.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBRESOLV?= ${DESTDIR}/usr/lib/libresolv.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBRMT?= ${DESTDIR}/usr/lib/librmt.a
|
|
|
|
LIBROKEN?= ${DESTDIR}/usr/lib/libroken.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBRPCSVC?= ${DESTDIR}/usr/lib/librpcsvc.a
|
2003-01-24 05:06:37 +03:00
|
|
|
LIBRT?= ${DESTDIR}/usr/lib/librt.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBRUMP?= ${DESTDIR}/usr/lib/librump.a
|
2011-10-16 05:28:35 +04:00
|
|
|
LIBRUMPFS_CD9660FS?=${DESTDIR}/usr/lib/librumpfs_cd9660fs.a
|
|
|
|
LIBRUMPFS_EFS?= ${DESTDIR}/usr/lib/librumpfs_efs.a
|
|
|
|
LIBRUMPFS_EXT2FS?=${DESTDIR}/usr/lib/librumpfs_ext2fs.a
|
|
|
|
LIBRUMPFS_FFS?= ${DESTDIR}/usr/lib/librumpfs_ffs.a
|
|
|
|
LIBRUMPFS_HFS?= ${DESTDIR}/usr/lib/librumpfs_hfs.a
|
|
|
|
LIBRUMPFS_LFS?= ${DESTDIR}/usr/lib/librumpfs_lfs.a
|
|
|
|
LIBRUMPFS_MSDOSFS?=${DESTDIR}/usr/lib/librumpfs_msdosfs.a
|
|
|
|
LIBRUMPFS_NFS?= ${DESTDIR}/usr/lib/librumpfs_nfs.a
|
|
|
|
LIBRUMPFS_NTFS?=${DESTDIR}/usr/lib/librumpfs_ntfs.a
|
|
|
|
LIBRUMPFS_SYSPUFFS?=${DESTDIR}/usr/lib/librumpfs_syspuffs.a
|
|
|
|
LIBRUMPFS_TMPFS?=${DESTDIR}/usr/lib/librumpfs_tmpfs.a
|
|
|
|
LIBRUMPFS_UDF?= ${DESTDIR}/usr/lib/librumpfs_udf.a
|
|
|
|
LIBRUMPFS_UFS?= ${DESTDIR}/usr/lib/librumpfs_ufs.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBRUMPUSER?= ${DESTDIR}/usr/lib/librumpuser.a
|
|
|
|
LIBSASLC?= ${DESTDIR}/usr/lib/libsaslc.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBSKEY?= ${DESTDIR}/usr/lib/libskey.a
|
2003-09-29 05:06:37 +04:00
|
|
|
LIBSL?= ${DESTDIR}/usr/lib/libsl.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBSQLITE3?= ${DESTDIR}/usr/lib/libsqlite3.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBSS?= ${DESTDIR}/usr/lib/libss.a
|
2005-01-08 12:53:38 +03:00
|
|
|
LIBSSH?= ${DESTDIR}/usr/lib/libssh.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBSSL?= ${DESTDIR}/usr/lib/libssl.a
|
2006-11-09 20:06:54 +03:00
|
|
|
LIBSSP?= ${DESTDIR}/usr/lib/libssp.a
|
2003-09-29 05:06:37 +04:00
|
|
|
LIBSTDCXX?= ${DESTDIR}/usr/lib/libstdc++.a
|
2006-10-09 12:32:11 +04:00
|
|
|
LIBSUPCXX?= ${DESTDIR}/usr/lib/libsupc++.a
|
2010-02-03 18:34:37 +03:00
|
|
|
LIBTERMINFO?= ${DESTDIR}/usr/lib/libterminfo.a
|
2011-11-06 02:56:30 +04:00
|
|
|
LIBTRE?= ${DESTDIR}/usr/lib/libtre.a
|
2016-08-20 14:21:50 +03:00
|
|
|
LIBUNBOUND?= ${DESTDIR}/usr/lib/libunbound.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBUSBHID?= ${DESTDIR}/usr/lib/libusbhid.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBUTIL?= ${DESTDIR}/usr/lib/libutil.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBWIND?= ${DESTDIR}/usr/lib/libwind.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBWRAP?= ${DESTDIR}/usr/lib/libwrap.a
|
|
|
|
LIBY?= ${DESTDIR}/usr/lib/liby.a
|
|
|
|
LIBZ?= ${DESTDIR}/usr/lib/libz.a
|
|
|
|
|
2011-10-16 05:14:33 +04:00
|
|
|
The following X-Windows libraries are predefined for DPADD:
|
|
|
|
|
|
|
|
LIBFS?= ${DESTDIR}/usr/X11R7/lib/libFS.a
|
|
|
|
LIBGL?= ${DESTDIR}/usr/X11R7/lib/libGL.a
|
|
|
|
LIBGLU?= ${DESTDIR}/usr/X11R7/lib/libGLU.a
|
|
|
|
LIBICE?= ${DESTDIR}/usr/X11R7/lib/libICE.a
|
|
|
|
LIBSM?= ${DESTDIR}/usr/X11R7/lib/libSM.a
|
|
|
|
LIBX11?= ${DESTDIR}/usr/X11R7/lib/libX11.a
|
2013-05-31 10:48:43 +04:00
|
|
|
LIBX11_XCB?= ${DESTDIR}/usr/X11R7/lib/libX11-xcb.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBXTRAP?= ${DESTDIR}/usr/X11R7/lib/libXTrap.a
|
|
|
|
LIBXAU?= ${DESTDIR}/usr/X11R7/lib/libXau.a
|
|
|
|
LIBXAW?= ${DESTDIR}/usr/X11R7/lib/libXaw.a
|
2013-09-29 18:36:25 +04:00
|
|
|
LIBXCB?= ${DESTDIR}/usr/X11R7/lib/libxcb.a
|
2011-10-16 05:14:33 +04:00
|
|
|
LIBXDMCP?= ${DESTDIR}/usr/X11R7/lib/libXdmcp.a
|
|
|
|
LIBXEXT?= ${DESTDIR}/usr/X11R7/lib/libXext.a
|
|
|
|
LIBXFONT?= ${DESTDIR}/usr/X11R7/lib/libXfont.a
|
|
|
|
LIBXFT?= ${DESTDIR}/usr/X11R7/lib/libXft.a
|
|
|
|
LIBXI?= ${DESTDIR}/usr/X11R7/lib/libXi.a
|
|
|
|
LIBXINERAMA?= ${DESTDIR}/usr/X11R7/lib/libXinerama.a
|
|
|
|
LIBXMU?= ${DESTDIR}/usr/X11R7/lib/libXmu.a
|
|
|
|
LIBXMUU?= ${DESTDIR}/usr/X11R7/lib/libXmuu.a
|
|
|
|
LIBXPM?= ${DESTDIR}/usr/X11R7/lib/libXpm.a
|
|
|
|
LIBXRANDR?= ${DESTDIR}/usr/X11R7/lib/libXrandr.a
|
|
|
|
LIBXRENDER?= ${DESTDIR}/usr/X11R7/lib/libXrender.a
|
|
|
|
LIBXSS?= ${DESTDIR}/usr/X11R7/lib/libXss.a
|
|
|
|
LIBXT?= ${DESTDIR}/usr/X11R7/lib/libXt.a
|
|
|
|
LIBXTST?= ${DESTDIR}/usr/X11R7/lib/libXtst.a
|
|
|
|
LIBXV?= ${DESTDIR}/usr/X11R7/lib/libXv.a
|
|
|
|
LIBXXF86DGA?= ${DESTDIR}/usr/X11R7/lib/libXxf86dga.a
|
|
|
|
LIBXXF86MISC?= ${DESTDIR}/usr/X11R7/lib/libXxf86misc.a
|
|
|
|
LIBXXF86VM?= ${DESTDIR}/usr/X11R7/lib/libXxf86vm.a
|
|
|
|
LIBDPS?= ${DESTDIR}/usr/X11R7/lib/libdps.a
|
|
|
|
LIBFNTSTUBS?= ${DESTDIR}/usr/X11R7/lib/libfntstubs.a
|
|
|
|
LIBFONTCACHE?= ${DESTDIR}/usr/X11R7/lib/libfontcache.a
|
|
|
|
LIBFONTCONFIG?= ${DESTDIR}/usr/X11R7/lib/libfontconfig.a
|
|
|
|
LIBFONTENC?= ${DESTDIR}/usr/X11R7/lib/libfontenc.a
|
|
|
|
LIBFREETYPE?= ${DESTDIR}/usr/X11R7/lib/libfreetype.a
|
|
|
|
LIBLBXUTIL?= ${DESTDIR}/usr/X11R7/lib/liblbxutil.a
|
|
|
|
LIBXKBFILE?= ${DESTDIR}/usr/X11R7/lib/libxkbfile.a
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
SHAREDSTRINGS If defined, a new .c.o rule is used that results in shared
|
1995-09-25 02:49:06 +03:00
|
|
|
strings, using xstr(1). Note that this will not work with
|
|
|
|
parallel makes.
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2000-01-18 00:21:55 +03:00
|
|
|
STRIPFLAG The flag passed to the install program to cause the binary
|
1993-03-21 12:45:37 +03:00
|
|
|
to be stripped.
|
|
|
|
|
|
|
|
SUBDIR A list of subdirectories that should be built as well.
|
|
|
|
Each of the targets will execute the same target in the
|
|
|
|
subdirectories.
|
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
SCRIPTS A list of interpreter scripts [file.{sh,csh,pl,awk,...}].
|
|
|
|
These are installed exactly like programs.
|
|
|
|
|
2005-03-23 00:12:32 +03:00
|
|
|
SCRIPTSDIR The location to install the scripts. Each script can be
|
|
|
|
installed to a separate path by setting SCRIPTSDIR_<script>.
|
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
SCRIPTSNAME The name that the above program will be installed as, if
|
|
|
|
different from ${SCRIPTS}. These can be further specialized
|
|
|
|
by setting SCRIPTSNAME_<script>.
|
|
|
|
|
2003-07-22 08:23:28 +04:00
|
|
|
FILES See description of <bsd.files.mk>.
|
1997-03-25 00:54:12 +03:00
|
|
|
|
Only use the MKDYNAMICROOT semantics (i.e. -rpath=/lib,/usr/lib and
-dynamic-linker=/libexec/ld.elf_so) if the BINDIR of the program being
built is /bin or /sbin.
The reason we do this is because now all programs *except* those in
/bin and /sbin (i.e. the "special cases") match the default the compiler
uses, which is what is used for things in e.g. xsrc, pkgsrc, and other
random 3rd party programs.
This is done by decoupling where a shlib is installed from how it
is located. Two new variables, SHLIBINSTALLDIR and SHLINKINSTALLDIR,
contain the former information, and key off MKDYNAMICROOT only. SHLIBDIR
and SHLINKDIR contain the latter, and key off MKDYNAMICROOT and BINDIR.
The SHLIBINSTALLDIR, SHLIBDIR, _LIBSODIR, SHLINKINSTALLDIR, and
SHLINKDIR parameters are moved to a new <bsd.shlib.mk>; see bsd.README
for usage details.
2002-09-28 01:37:50 +04:00
|
|
|
SHLINKDIR Target directory for shared linker. See description of
|
|
|
|
<bsd.own.mk> for additional information about this variable.
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
The include file <bsd.prog.mk> includes the file named "../Makefile.inc"
|
|
|
|
if it exists, as well as the include file <bsd.man.mk>.
|
|
|
|
|
|
|
|
Some simple examples:
|
|
|
|
|
|
|
|
To build foo from foo.c with a manual page foo.1, use:
|
|
|
|
|
|
|
|
PROG= foo
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
|
|
|
|
To build foo from foo.c with a manual page foo.2, add the line:
|
|
|
|
|
1994-12-22 15:22:59 +03:00
|
|
|
MAN= foo.2
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
If foo does not have a manual page at all, add the line:
|
|
|
|
|
2001-02-01 23:27:06 +03:00
|
|
|
MKMAN= no
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
If foo has multiple source files, add the line:
|
|
|
|
|
|
|
|
SRCS= a.c b.c c.c d.c
|
|
|
|
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
=-=-=-=-= bsd.rpc.mk =-=-=-=-=
|
2000-12-30 17:34:51 +03:00
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
The include file <bsd.rpc.mk> contains a makefile fragment used to
|
|
|
|
construct source files built by rpcgen.
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
The following macros may be defined in makefiles which include
|
|
|
|
<bsd.rpc.mk> in order to control which files get built and how they
|
|
|
|
are to be built:
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
RPC_INCS: construct .h file from .x file
|
2003-07-18 12:26:01 +04:00
|
|
|
RPC_XDRFILES: construct _xdr.c from .x file
|
2003-07-18 04:33:18 +04:00
|
|
|
(for marshalling/unmarshalling data types)
|
|
|
|
RPC_SVCFILES: construct _svc.c from .x file
|
|
|
|
(server-side stubs)
|
|
|
|
RPC_SVCFLAGS: Additional flags passed to builds of RPC_SVCFILES.
|
1997-03-27 20:33:34 +03:00
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
RPC_XDIR: Directory containing .x/.h files
|
1997-03-27 20:33:34 +03:00
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
=-=-=-=-= bsd.shlib.mk =-=-=-=-=
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
The include file <bsd.shlib.mk> computes parameters for shared library
|
|
|
|
installation and use. It defines no targets. <bsd.own.mk> MUST be
|
2003-08-03 13:23:14 +04:00
|
|
|
included before <bsd.shlib.mk>.
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2003-08-03 13:23:14 +04:00
|
|
|
<bsd.own.mk> sets the following variables, if they are not already defined
|
2003-07-18 04:33:18 +04:00
|
|
|
(defaults are in brackets):
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2012-08-24 01:21:14 +04:00
|
|
|
SHLIBINSTALLDIR If ${USE_SHLIBDIR} is not "no", use ${SHLIBINSTALLDIR}
|
|
|
|
instead of ${LIBDIR} as the base path for shared library
|
|
|
|
installation. [/lib]
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
SHLIBDIR The path to USE_SHLIBDIR shared libraries to use when building
|
|
|
|
a program. [/lib for programs in /bin and /sbin, /usr/lib
|
|
|
|
for all others.]
|
2001-10-30 18:17:16 +03:00
|
|
|
|
2012-08-24 01:21:14 +04:00
|
|
|
_LIBSODIR Set to ${SHLIBINSTALLDIR} if ${USE_SHLIBDIR} is not "no",
|
2003-07-18 04:33:18 +04:00
|
|
|
otherwise set to ${LIBDIR}
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2012-08-24 01:21:14 +04:00
|
|
|
SHLINKINSTALLDIR Base path for shared linker. [/libexec]
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
SHLINKDIR Path to use for shared linker when building a program.
|
|
|
|
[/libexec for programs in /bin and /sbin, /usr/libexec for
|
|
|
|
all others.]
|
1998-06-13 03:28:53 +04:00
|
|
|
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
=-=-=-=-= bsd.subdir.mk =-=-=-=-=
|
1999-02-12 18:10:22 +03:00
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
The include file <bsd.subdir.mk> contains the default targets for building
|
2003-07-18 12:26:01 +04:00
|
|
|
subdirectories. It has the same eight targets as <bsd.prog.mk>: all,
|
2008-10-25 18:58:00 +04:00
|
|
|
clean, cleandir, depend, includes, install, lint, and tags. It uses the
|
|
|
|
following variables:
|
|
|
|
|
|
|
|
NOSUBDIR If this variable is defined, then the SUBDIR variable
|
|
|
|
will be ignored and subdirectories will not be processed.
|
|
|
|
|
|
|
|
SUBDIR For all of the directories listed in ${SUBDIR}, the
|
|
|
|
specified directory will be visited and the target made.
|
|
|
|
|
|
|
|
As a special case, the use of a token .WAIT as an
|
|
|
|
entry in SUBDIR acts as a synchronization barrier
|
|
|
|
when multiple make jobs are run; subdirs before the
|
|
|
|
.WAIT must complete before any subdirs after .WAIT are
|
|
|
|
started. See make(1) for some caveats on use of .WAIT
|
|
|
|
and other special sources.
|
1999-02-12 18:10:22 +03:00
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
=-=-=-=-= bsd.x11.mk =-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.x11.mk> contains parameters and targets for
|
2015-07-23 11:03:24 +03:00
|
|
|
cross-building X11 from ${X11SRCDIR.<package>}. It should be included
|
|
|
|
after the general Makefile contents but before the include files such as
|
|
|
|
<bsd.prog.mk> and <bsd.lib.mk>.
|
2014-01-16 05:19:46 +04:00
|
|
|
|
|
|
|
It provides the following targets:
|
|
|
|
.man.1 .man.3 .man.4 .man.5 .man.7:
|
|
|
|
If ${MAN} or ${PROG} is set and ${MKMAN} != "no",
|
|
|
|
these rules convert from X11's manual page source
|
|
|
|
into an mdoc.old source file.
|
|
|
|
|
|
|
|
It sets the following variables:
|
|
|
|
|
|
|
|
BINDIR Set to ${X11BINDIR}.
|
|
|
|
To override, define after including <bsd.x11.mk>
|
|
|
|
|
|
|
|
LIBDIR Set to ${X11USRLIBDIR}.
|
|
|
|
To override, define after including <bsd.x11.mk>
|
|
|
|
|
|
|
|
MANDIR Set to ${X11MANDIR}.
|
|
|
|
To override, define after including <bsd.x11.mk>
|
|
|
|
|
|
|
|
CPPFLAGS Appended with definitions to include from
|
|
|
|
${DESTDIR}${X11INCDIR}
|
|
|
|
|
|
|
|
LDFLAGS Appended with definitions to link from
|
|
|
|
${DESTDIR}${X11USRLIBDIR}
|
|
|
|
|
|
|
|
X11FLAGS.CONNECTION Equivalent to X11's CONNECTION_FLAGS.
|
|
|
|
|
|
|
|
X11FLAGS.EXTENSION Equivalent to X11's EXT_DEFINES.
|
|
|
|
|
|
|
|
X11FLAGS.LOADABLE Equivalent to X11's LOADABLE.
|
|
|
|
|
|
|
|
X11FLAGS.OS_DEFINES Equivalent to X11's OS_DEFINES.
|
|
|
|
|
|
|
|
X11FLAGS.SERVER Equivalent to X11's ServerDefines.
|
|
|
|
|
|
|
|
X11FLAGS.THREADLIB Equivalent to X11's THREADS_DEFINES for libraries.
|
|
|
|
|
|
|
|
X11FLAGS.THREADS Equivalent to X11's THREADS_DEFINES.
|
|
|
|
|
|
|
|
X11FLAGS.VERSION cpp(1) definitions of OSMAJORVERSION and OSMINORVERSION.
|
|
|
|
|
|
|
|
X11FLAGS.DIX Equivalent to X11's DIX_DEFINES.
|
|
|
|
|
|
|
|
X11TOOL_UNXCOMM Commandline to convert `XCOMM' comments to `#'
|
|
|
|
|
|
|
|
It uses the following variables:
|
|
|
|
|
|
|
|
APPDEFS List of app-default files to install.
|
|
|
|
|
|
|
|
CPPSCRIPTS List of files/scripts to run through cpp(1)
|
|
|
|
and then ${X11TOOL_UNXCOMM}. The source files
|
|
|
|
have a `.cpp' suffix, the generated files do not.
|
|
|
|
|
|
|
|
CPPSCRIPTFLAGS Additional flags to cpp(1) when building CPPSCRIPTS.
|
|
|
|
|
|
|
|
CPPSCRIPTFLAGS_<fn> Additional flags to cpp(1) when building CPPSCRIPT <fn>.
|
|
|
|
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
|
|
|
The following files are described here for completion, but they are not
|
|
|
|
supposed to be included directly from other Makefiles; they are used
|
|
|
|
internally by other system files.
|
|
|
|
|
2003-07-18 04:33:18 +04:00
|
|
|
=-=-=-=-= bsd.sys.mk =-=-=-=-=
|
1999-02-12 18:10:22 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
The include file <bsd.sys.mk> is used by other system mk files and
|
|
|
|
it is not intended to be included standalone. It contains rules and
|
|
|
|
system build variables. It requires bsd.own.mk to be included first.
|
|
|
|
It contains overrides that are used when building the NetBSD source tree.
|
2003-08-02 04:34:25 +04:00
|
|
|
|
|
|
|
The following variables control how various files are compiled/built.
|
2004-01-02 19:12:36 +03:00
|
|
|
(Note that these may be overridden in <bsd.own.mk> if USETOOLS == "yes"):
|
2003-08-02 04:34:25 +04:00
|
|
|
|
|
|
|
AR Create, modify, and extract from archives. [ar]
|
|
|
|
|
|
|
|
ARFLAGS Options to ${AR}. [rl]
|
|
|
|
|
2004-04-18 17:07:00 +04:00
|
|
|
AS Assembler. [as]
|
|
|
|
|
2008-07-21 16:12:57 +04:00
|
|
|
AFLAGS Options to ${CC} when compiling or linking .s or .S
|
|
|
|
assembly source files. []
|
2004-04-18 17:07:00 +04:00
|
|
|
|
2008-08-04 20:02:25 +04:00
|
|
|
BUILDSEED GCC uses random numbers when compiling C++ code.
|
|
|
|
If this option is present, seed the random number
|
|
|
|
generator based on the value, source file names and
|
|
|
|
the output file name to make builds more deterministic.
|
|
|
|
Additional information is available in the GCC
|
|
|
|
documentation of -frandom-seed.
|
|
|
|
|
2003-08-02 04:34:25 +04:00
|
|
|
CC C compiler. [cc]
|
|
|
|
|
|
|
|
CFLAGS Options to ${CC}. [Usually -O or -O2]
|
|
|
|
|
|
|
|
CPP C Pre-Processor. [cpp]
|
|
|
|
|
|
|
|
CPPFLAGS Options to ${CPP}. []
|
|
|
|
|
2004-04-18 17:07:00 +04:00
|
|
|
CPUFLAGS Optimization flags for ${CC}. []
|
2003-08-02 04:34:25 +04:00
|
|
|
|
|
|
|
CXX C++ compiler. [c++]
|
|
|
|
|
|
|
|
CXXFLAGS Options to ${CXX}. [${CFLAGS}]
|
|
|
|
|
|
|
|
ELF2ECOFF Convert ELF-format executable to ECOFF. [elf2ecoff]
|
|
|
|
|
|
|
|
FC Fortran compiler. [f77]
|
|
|
|
|
|
|
|
FFLAGS Options to {$FC}. [-O]
|
|
|
|
|
2008-10-26 18:51:20 +03:00
|
|
|
HOST_SH Shell. This must be an absolute path, because it may be
|
|
|
|
substituted into "#!" lines in scripts. [/bin/sh]
|
|
|
|
|
2003-08-02 04:34:25 +04:00
|
|
|
INSTALL install(1) command. [install]
|
|
|
|
|
|
|
|
LEX Lexical analyzer. [lex]
|
|
|
|
|
|
|
|
LFLAGS Options to ${LEX}. []
|
|
|
|
|
2004-02-07 01:13:58 +03:00
|
|
|
LPREFIX Symbol prefix for ${LEX} (see -P option in lex(1)) [yy]
|
|
|
|
|
2003-08-02 04:34:25 +04:00
|
|
|
LD Linker. [ld]
|
|
|
|
|
2006-05-12 08:29:08 +04:00
|
|
|
LDFLAGS Options to ${CC} during the link process. []
|
2003-08-02 04:34:25 +04:00
|
|
|
|
|
|
|
LINT C program verifier. [lint]
|
|
|
|
|
2014-04-18 04:37:46 +04:00
|
|
|
LINTFLAGS Options to ${LINT}. [-chapbxzgFS]
|
2003-08-02 04:34:25 +04:00
|
|
|
|
|
|
|
LORDER List dependencies for object files. [lorder]
|
|
|
|
|
|
|
|
MAKE make(1). [make]
|
|
|
|
|
|
|
|
MKDEP Construct Makefile dependency list. [mkdep]
|
|
|
|
|
2013-10-28 05:47:13 +04:00
|
|
|
MKDEPCXX Construct Makefile dependency list for C++ files. [mkdep]
|
|
|
|
|
2003-08-02 04:34:25 +04:00
|
|
|
NM List symbols from object files. [nm]
|
|
|
|
|
|
|
|
PC Pascal compiler. [pc] (Not present)
|
|
|
|
|
|
|
|
PFLAGS Options to ${PC}. []
|
|
|
|
|
|
|
|
OBJC Objective C compiler. [${CC}]
|
|
|
|
|
|
|
|
OBJCFLAGS Options to ${OBJC}. [${CFLAGS}]
|
|
|
|
|
|
|
|
OBJCOPY Copy and translate object files. [objcopy]
|
|
|
|
|
2012-01-29 01:32:13 +04:00
|
|
|
OBJCOPYLIBFLAGS Flags to pass to objcopy when library objects are
|
|
|
|
being built. [${.TARGET} =~ "*.po" ? -X : -x]
|
|
|
|
|
2005-05-24 01:58:21 +04:00
|
|
|
OBJDUMP Display information from object files. [objdump]
|
|
|
|
|
2003-08-02 04:34:25 +04:00
|
|
|
RANLIB Generate index to archive. [ranlib]
|
|
|
|
|
2015-06-19 01:29:12 +03:00
|
|
|
READELF Display information from ELF object files. [readelf]
|
|
|
|
|
2003-08-02 04:34:25 +04:00
|
|
|
SIZE List section sizes and total size. [size]
|
|
|
|
|
2015-06-19 01:29:12 +03:00
|
|
|
STRINGS Display printable character sequences in files. [strings]
|
|
|
|
|
2003-08-02 04:34:25 +04:00
|
|
|
STRIP Discard symbols from object files. [strip]
|
|
|
|
|
|
|
|
TSORT Topological sort of a directed graph. [tsort -q]
|
|
|
|
|
|
|
|
YACC LALR(1) parser generator. [yacc]
|
|
|
|
|
|
|
|
YFLAGS Options to ${YACC}. []
|
|
|
|
|
|
|
|
YHEADER If defined, add "-d" to YFLAGS, and add dependencies
|
|
|
|
from <file>.y to <file>.h and <file>.c, and add
|
|
|
|
<foo>.h to CLEANFILES.
|
|
|
|
|
|
|
|
YPREFIX If defined, add "-p ${YPREFIX}" to YFLAGS.
|
|
|
|
|
1995-10-22 03:45:53 +03:00
|
|
|
|
2000-10-04 23:27:45 +04:00
|
|
|
Other variables of note (incomplete list):
|
|
|
|
|
2008-07-22 03:39:55 +04:00
|
|
|
NOGCCERROR If defined, prevents passing certain ${CFLAGS} to GCC
|
|
|
|
that cause warnings to be fatal, such as:
|
|
|
|
-Werror -Wa,--fatal-warnings
|
|
|
|
(The latter being for as(1).)
|
2008-07-22 03:23:42 +04:00
|
|
|
|
2011-05-30 17:47:01 +04:00
|
|
|
NOCLANGERROR If defined and clang is used as C compiler, -Werror is not
|
|
|
|
passed to it.
|
|
|
|
|
2012-06-19 10:20:13 +04:00
|
|
|
WARNS Crank up compiler warning options; the distinct levels are:
|
2001-11-01 10:17:17 +03:00
|
|
|
WARNS=1
|
|
|
|
WARNS=2
|
|
|
|
WARNS=3
|
2005-02-20 04:31:44 +03:00
|
|
|
WARNS=4
|
2012-06-19 10:20:13 +04:00
|
|
|
WARNS=5
|
2014-09-06 16:12:32 +04:00
|
|
|
WARNS=6
|
2000-10-04 23:27:45 +04:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
=-=-=-=-= bsd.host.mk =-=-=-=-=
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
This file is automatically included from bsd.own.mk. It contains settings
|
|
|
|
for all the HOST_* variables that are used in host programs and libraries.
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_AR The host archive processing command
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_CC The host c compiler
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_CFLAGS The host c compiler flags
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_COMPILE.c The host c compiler line with flags
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_COMPILE.cc The host c++ compiler line with flags
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_CPP The host c pre-processor
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_CPPFLAGS The cost c pre-processor flags
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_CXX The host c++ compiler
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_CXXFLAGS The host c++ compiler flags
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_INSTALL_DIR The host command to install a directory
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_INSTALL_FILE The host command to install a file
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_INSTALL_SYMLINK The host command to install a symlink
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_LD The host linker command
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_LDFLAGS The host linker flags
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_LINK.c The host c linker line with flags
|
2008-08-28 11:53:53 +04:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_LINK.cc The host c++ linker line with flags
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_LN The host command to link two files
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_MKDEP The host command to create dependencies for c programs
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_MKDEPCXX The host command to create dependencies for c++ programs
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_OSTYPE The host OSNAME-RELEASE-ARCH tupple
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_RANLIB The host command to create random access archives
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2014-01-16 05:19:46 +04:00
|
|
|
HOST_SH The host Bourne shell interpreter name (absolute path)
|
2004-01-07 15:06:34 +03:00
|
|
|
|
2000-05-07 05:19:58 +04:00
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|