2003-06-13 03:26:19 +04:00
|
|
|
# $NetBSD: bsd.README,v 1.114 2003/06/12 23:26:19 provos 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
|
|
|
|
|
|
|
This is the README file for the new make "include" files for the BSD
|
|
|
|
source tree. The files are installed in /usr/share/mk, and are, by
|
1995-01-13 03:27:49 +03:00
|
|
|
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
|
1997-03-25 00:54:12 +03:00
|
|
|
object, and ".so" denotes a shared (position-independent) object.
|
|
|
|
|
2002-04-19 07:08:05 +04:00
|
|
|
There are various make variables used during the build. Basic rule for
|
|
|
|
the variable naming scheme is as follows:
|
|
|
|
|
|
|
|
MKxxx Can be set to `no' by a user to disable functionality.
|
|
|
|
Defaults to `yes' (or usually does)
|
|
|
|
|
|
|
|
NOxxx If defined, disables a feature. Not intended for users,
|
|
|
|
it's to allow Makefiles to disable functionality that
|
|
|
|
they don't support (such as missing man pages).
|
2002-08-19 18:51:58 +04:00
|
|
|
NOxxx variables must be defined before <bsd.own.mk>
|
|
|
|
is included.
|
2002-04-19 07:08:05 +04:00
|
|
|
|
1999-02-12 04:10:06 +03:00
|
|
|
The following variables that control how things are made/installed that
|
1999-02-12 18:10:22 +03:00
|
|
|
are not set by default. These should not be set by Makefiles; they're for
|
|
|
|
the user to define in MAKECONF (see bsd.own.mk, below) or on the make(1)
|
|
|
|
command line:
|
1997-03-25 00:54:12 +03:00
|
|
|
|
1999-02-12 04:10:06 +03:00
|
|
|
BUILD If defined, 'make install' checks that the targets in the
|
|
|
|
source directories are up-to-date and remakes them if they
|
1997-03-25 00:54:12 +03:00
|
|
|
are out of date, instead of blindly trying to install
|
2001-06-19 17:42:07 +04:00
|
|
|
out of date or non-existent targets.
|
1997-03-25 00:54:12 +03:00
|
|
|
|
1999-02-12 04:10:06 +03:00
|
|
|
UPDATE If defined, 'make install' only installs targets that are
|
|
|
|
more recently modified in the source directories that their
|
|
|
|
installed counterparts.
|
|
|
|
|
2001-11-19 07:45:06 +03:00
|
|
|
UNPRIVED If defined, 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".
|
1999-08-21 10:19:33 +04:00
|
|
|
|
2002-01-01 02:11:05 +03:00
|
|
|
MKBFD If "no", don't build libbfd, libiberty, or any of
|
|
|
|
the things that depend on them (binutils/gas/ld,
|
* 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
|
|
|
gdb, dbsym, mdsetimage).
|
2002-01-01 02:11:05 +03:00
|
|
|
|
1999-02-12 04:10:06 +03:00
|
|
|
MKCATPAGES If "no", don't build or install the catman pages.
|
|
|
|
|
|
|
|
MKDOC If "no", don't build or install the documentation.
|
|
|
|
|
2002-09-22 19:08:17 +04: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.
|
|
|
|
|
* 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
|
|
|
MKGDB If "no", don't build gdb.
|
2002-01-01 02:11:05 +03:00
|
|
|
|
|
|
|
MKGCC If "no", don't build gcc or any of the gcc-related
|
|
|
|
libraries (libg2c, libgcc, libobjc, libstdc++).
|
|
|
|
|
2002-01-28 02:33:51 +03:00
|
|
|
MKIEEEFP If "no", don't add code for IEEE754/IEC60559 conformance.
|
|
|
|
Has no effect on most platforms.
|
|
|
|
|
1999-02-12 18:10:22 +03:00
|
|
|
MKINFO If "no", don't build or install Info documentation from
|
|
|
|
Texinfo source files.
|
1999-02-12 04:10:06 +03:00
|
|
|
|
|
|
|
MKLINT If "no", don't build or install the lint libraries.
|
|
|
|
|
|
|
|
MKMAN If "no", don't build or install the man or catman pages.
|
1999-02-12 15:38:44 +03:00
|
|
|
Also acts as "MKCATPAGES=no"
|
1999-02-12 04:10:06 +03:00
|
|
|
|
2001-01-24 10:57:07 +03:00
|
|
|
MKNLS If "no", don't build or install the NLS files and locale
|
|
|
|
definition files.
|
1999-02-12 04:10:06 +03:00
|
|
|
|
1999-11-30 19:16:41 +03:00
|
|
|
MKOBJ If "no", don't enable the rule which creates objdirs.
|
|
|
|
"yes" by default.
|
|
|
|
|
|
|
|
MKOBJDIRS If "no", don't create objdirs during a "make build".
|
|
|
|
"no" by default.
|
1999-02-12 04:10:06 +03:00
|
|
|
|
|
|
|
MKPIC If "no", don't build or install shared libraries.
|
|
|
|
|
|
|
|
MKPICINSTALL If "no", don't install the *_pic.a libraries.
|
|
|
|
|
|
|
|
MKPROFILE If "no", don't build or install the profiling libraries.
|
|
|
|
|
1999-02-13 06:04:09 +03:00
|
|
|
MKSHARE If "no", act as "MKCATPAGES=no MKDOC=no MKINFO=no MKMAN=no
|
|
|
|
MKNLS=no". I.e, don't build catman pages, documentation,
|
|
|
|
Info documentation, man pages, NLS files, ...
|
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.
|
2000-12-30 07:11:34 +03:00
|
|
|
If you intend to run a cross build, you will need to supply the following
|
|
|
|
host tools, and configure the following variables properly:
|
|
|
|
|
|
|
|
OBJCOPY objcopy - copy and translate object files
|
|
|
|
|
|
|
|
STRIP strip - Discard symbols from object files
|
|
|
|
|
|
|
|
CONFIG config - build kernel compilation directories
|
|
|
|
|
|
|
|
RPCGEN rpcgen - Remote Procedure Call (RPC) protocol compiler
|
|
|
|
|
|
|
|
MKLOCALE mklocale - make LC_CTYPE locale files
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2001-10-13 10:06:55 +04:00
|
|
|
MTREE mtree - build directory tree from a spec file
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.man.mk> handles installing manual pages and their
|
|
|
|
links.
|
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
It has a two targets:
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
maninstall:
|
1997-03-25 00:54:12 +03:00
|
|
|
Install the manual page sources and their links.
|
|
|
|
catinstall:
|
|
|
|
Install the preformatted manual pages and their links.
|
1993-03-21 12:45:37 +03: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.
|
|
|
|
|
1996-01-23 01:46:06 +03:00
|
|
|
MAN The manual pages to be installed (use a .1 - .9 suffix).
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-01-23 01:46:06 +03:00
|
|
|
MLINKS List of manual page links (using a .1 - .9 suffix). The
|
1993-03-21 12:45:37 +03:00
|
|
|
linked-to file must come first, the linked file second,
|
|
|
|
and there may be multiple pairs. The files are soft-linked.
|
|
|
|
|
|
|
|
The include file <bsd.man.mk> includes a file named "../Makefile.inc" if
|
|
|
|
it exists.
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
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.
|
|
|
|
|
1997-06-01 01:21:13 +04:00
|
|
|
To get system-specific configuration parameters, bsd.own.mk will try to
|
|
|
|
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
|
|
|
|
|
|
|
bsd.own.mk sets the following variables, if they are not already defined
|
|
|
|
(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
|
|
|
|
1996-01-23 01:46:06 +03:00
|
|
|
BSDSRCDIR The real path to the system sources, so that 'make obj'
|
|
|
|
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'
|
|
|
|
will work correctly. [/usr/obj]
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-02-26 11:46:09 +03:00
|
|
|
BINGRP Binary group. [wheel]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
1998-02-26 11:46:09 +03:00
|
|
|
BINOWN Binary owner. [root]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
|
|
|
BINMODE Binary mode. [555]
|
|
|
|
|
|
|
|
NONBINMODE Mode for non-executable files. [444]
|
|
|
|
|
|
|
|
MANDIR Base path for manual installation. [/usr/share/man/cat]
|
|
|
|
|
1998-02-26 11:46:09 +03:00
|
|
|
MANGRP Manual group. [wheel]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
1998-02-26 11:46:09 +03:00
|
|
|
MANOWN Manual owner. [root]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
|
|
|
MANMODE Manual mode. [${NONBINMODE}]
|
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
MANINSTALL Manual installation type: maninstall, catinstall, or both
|
|
|
|
|
2001-03-10 14:00:37 +03:00
|
|
|
LDSTATIC Control program linking; if set blank, link everything
|
|
|
|
dynamically. If set to "-static", link everything statically.
|
|
|
|
If not set, programs link according to their makefile.
|
|
|
|
|
1996-01-23 01:46:06 +03:00
|
|
|
LIBDIR Base path for library installation. [/usr/lib]
|
|
|
|
|
|
|
|
LINTLIBDIR Base path for lint(1) library installation. [/usr/libdata/lint]
|
|
|
|
|
|
|
|
LIBGRP Library group. [${BINGRP}]
|
|
|
|
|
|
|
|
LIBOWN Library owner. [${BINOWN}]
|
|
|
|
|
|
|
|
LIBMODE Library mode. [${NONBINMODE}]
|
|
|
|
|
|
|
|
DOCDIR Base path for system documentation (e.g. PSD, USD, etc.)
|
|
|
|
installation. [/usr/share/doc]
|
|
|
|
|
2000-05-02 15:44:20 +04:00
|
|
|
HTMLDOCDIR Base path for html system documentation installation.
|
|
|
|
[/usr/share/doc/html]
|
|
|
|
|
1998-02-26 11:46:09 +03:00
|
|
|
DOCGRP Documentation group. [wheel]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
1998-02-26 11:46:09 +03:00
|
|
|
DOCOWN Documentation owner. [root]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
|
|
|
DOCMODE Documentation mode. [${NONBINMODE}]
|
|
|
|
|
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]
|
|
|
|
|
2001-11-19 19:20:26 +03:00
|
|
|
NLSGRP Native Language Support files group. [wheel]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2001-11-19 19:20:26 +03:00
|
|
|
NLSOWN Native Language Support files owner. [root]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
2001-11-19 19:20:26 +03:00
|
|
|
NLSMODE Native Language Support files mode. [${NONBINMODE}]
|
1993-03-21 12:45:37 +03:00
|
|
|
|
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
|
1996-01-23 01:46:06 +03:00
|
|
|
stripped/not-stripped using a single knob. [-s]
|
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
|
1996-01-23 01:46:06 +03:00
|
|
|
a single knob. [-c]
|
1993-04-10 00:05:56 +04:00
|
|
|
|
1996-04-13 06:08:08 +04:00
|
|
|
Additionally, the following variables may be set by bsd.own.mk or in a
|
|
|
|
make configuration file to modify the behaviour of the system build
|
|
|
|
process (default values are in brackets along with comments, if set by
|
|
|
|
bsd.own.mk):
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2003-04-12 02:40:31 +04:00
|
|
|
MKPICLIB bsd.own.mk provides a default for this variable, which is
|
|
|
|
used by bsd.lib.mk. The default value is provided by
|
|
|
|
bsd.own.mk since non-library Makefiles may need to check
|
|
|
|
its value in order to generate proper dependencies against
|
|
|
|
libraries used only during the build process (which would
|
|
|
|
not be installed into the destination directory).
|
|
|
|
|
2000-06-23 10:11:05 +04:00
|
|
|
MKCRYPTO If set to "no", no cryptography support will be built
|
|
|
|
into the system. Defaults to "yes".
|
1999-07-13 21:58:42 +04:00
|
|
|
|
2000-09-30 04:23:28 +04:00
|
|
|
MKCRYPTO_IDEA If set to "yes", IDEA support will be built into
|
|
|
|
libcrypto_idea.a. Defaults to "no".
|
2000-06-23 10:11:05 +04:00
|
|
|
|
2002-09-26 17:05:54 +04:00
|
|
|
MKCRYPTO_MDC2 If set to "yes", MDC2 support will be built into
|
|
|
|
libcrypto_mdc2.a. Defaults to "no".
|
|
|
|
|
2000-09-30 04:23:28 +04:00
|
|
|
MKCRYPTO_RC5 If set to "yes", RC5 support will be built into
|
|
|
|
libcrypto_rc5.a. Defaults to "no".
|
2000-06-23 10:11:05 +04:00
|
|
|
|
Split the notion of building Hesiod, Kerberos, S/key, and YP
infrastructure and using that infrastructure in programs.
* MKHESIOD, MKKERBEROS, MKSKEY, and MKYP control building
of the infratsructure (libraries, support programs, etc.)
* USE_HESIOD, USE_KERBEROS, USE_SKEY, and USE_YP control
building of support for using the corresponding API
in various libraries/programs that can use it.
As discussed on tech-toolchain.
2002-03-22 21:10:19 +03:00
|
|
|
MKHESIOD If set to "no", disables building of Hesiod infrastructure
|
|
|
|
(libraries and support programs).
|
1993-03-21 12:45:37 +03:00
|
|
|
|
Split the notion of building Hesiod, Kerberos, S/key, and YP
infrastructure and using that infrastructure in programs.
* MKHESIOD, MKKERBEROS, MKSKEY, and MKYP control building
of the infratsructure (libraries, support programs, etc.)
* USE_HESIOD, USE_KERBEROS, USE_SKEY, and USE_YP control
building of support for using the corresponding API
in various libraries/programs that can use it.
As discussed on tech-toolchain.
2002-03-22 21:10:19 +03:00
|
|
|
MKKERBEROS If set to "no", disables building of Kerberos (v4 or v5)
|
|
|
|
infrastructure (libraries and support programs).
|
1996-01-23 01:46:06 +03:00
|
|
|
|
Split the notion of building Hesiod, Kerberos, S/key, and YP
infrastructure and using that infrastructure in programs.
* MKHESIOD, MKKERBEROS, MKSKEY, and MKYP control building
of the infratsructure (libraries, support programs, etc.)
* USE_HESIOD, USE_KERBEROS, USE_SKEY, and USE_YP control
building of support for using the corresponding API
in various libraries/programs that can use it.
As discussed on tech-toolchain.
2002-03-22 21:10:19 +03:00
|
|
|
MKSKEY If set to "no", disables building of S/key authentication
|
|
|
|
infrastructure (libraries and support programs).
|
|
|
|
|
|
|
|
MKYP If set to "no", disables building of YP (NIS)
|
|
|
|
infrastructure (libraries and support programs).
|
|
|
|
|
|
|
|
USE_HESIOD If set to "no", disables building Hesiod support into
|
|
|
|
various system utilities/libraries that support it.
|
|
|
|
If MKHESIOD is set to "no", USE_HESIOD will also be
|
|
|
|
forced to "no".
|
|
|
|
|
|
|
|
USE_KERBEROS If set to "no", disables building Kerberos (v4 or v5)
|
|
|
|
support into various system utilities/libraries that
|
|
|
|
support it. If MKKERBEROS is set to "no", USE_KERBEROS
|
|
|
|
will also be forced to "no".
|
|
|
|
|
|
|
|
USE_SKEY If set to "no", disables building S/key authentication
|
|
|
|
support into various system utilities/libraries that
|
|
|
|
support it. If MKSKEY is set to "no", USE_SKEY will
|
|
|
|
also be forced to "no".
|
|
|
|
|
|
|
|
USE_YP If set to "no", disables building YP (NIS) support into
|
|
|
|
various system utilities/libraries that support it. If
|
|
|
|
MKYP is set to "no", USE_YP will also be forced to "no".
|
1996-01-23 01:46:06 +03:00
|
|
|
|
|
|
|
MANZ Compress manual pages at installation time.
|
|
|
|
|
|
|
|
NOPROFILE Do not build profiled versions of system libraries
|
|
|
|
|
|
|
|
NOPIC Do not build PIC versions of system libraries, and
|
|
|
|
do not build shared libraries. [set if ${MACHINE_ARCH}
|
2000-09-10 23:10:50 +04:00
|
|
|
is "sh3" and ${OBJECT_FMT} is "COFF", unset otherwise.]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
1998-07-22 22:22:35 +04:00
|
|
|
NOLINT Do not build lint libraries.
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1999-07-13 21:58:42 +04:00
|
|
|
OBJECT_FMT Object file format. [set to "ELF" on architectures that
|
|
|
|
use ELF -- currently if ${MACHINE_ARCH} is "alpha",
|
|
|
|
"mipsel", "mipseb", "powerpc", "sparc", "sparc64",
|
2001-05-31 09:04:41 +04:00
|
|
|
"i386" and some m68k machines, or set to "a.out" on
|
|
|
|
other architectures].
|
1998-02-23 13:09:31 +03:00
|
|
|
|
2001-06-18 21:04:44 +04:00
|
|
|
MKSOFTFLOAT If "yes", build with options to enable the compiler to
|
|
|
|
generate output containing library calls for floating
|
|
|
|
point and possibly soft-float library support. Defaults
|
|
|
|
to "no".
|
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
|
|
|
|
If "yes", this indicates that the platform being built
|
|
|
|
does not have a working in-tree toolchain. If the
|
|
|
|
MACHINE_ARCH in question falls into this category, the
|
|
|
|
variable is conditionally assigned the value "yes".
|
|
|
|
Otherwise, the variable is unconditionally assigned the
|
|
|
|
value "no".
|
|
|
|
|
|
|
|
If TOOLCHAIN_MISSING is "yes", the variables MKBFD, MKGCC,
|
|
|
|
and MKGDB are unconditionally assigned the value "no".
|
|
|
|
|
|
|
|
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
|
|
|
|
tree. For example, if a platform is a TOOLCHAIN_MISSING
|
|
|
|
platform, EXTERNAL_TOOLCHAIN can be used to re-enable the
|
|
|
|
cross-compile framework.
|
|
|
|
|
|
|
|
If EXTERNAL_TOOLCHAIN is defined, the variable 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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
1996-04-13 06:08:08 +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
|
|
|
The include file <bsd.shlib.mk> computes parameters for shared library
|
|
|
|
installation and use. It defines no targets. <bsd.own.mk> MUST be
|
|
|
|
included before bsd.shlib.mk.
|
|
|
|
|
|
|
|
bsd.own.mk sets the following variables, if they are not already defined
|
|
|
|
(defaults are in brackets):
|
|
|
|
|
|
|
|
SHLIBINSTALLDIR If ${USE_SHLIBDIR} is "yes", use ${SHLIBINSTALLDIR} instead of
|
|
|
|
${LIBDIR} as the base path for shared library installation.
|
|
|
|
[/lib]
|
|
|
|
|
|
|
|
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.]
|
|
|
|
|
|
|
|
_LIBSODIR Set to ${SHLIBINSTALLDIR} if ${USE_SHLIBDIR} is "yes",
|
|
|
|
otherwise set to ${LIBDIR}
|
|
|
|
|
|
|
|
SHLINKINSTALLDIR Base path for shared linker. [/libexec]
|
|
|
|
|
|
|
|
SHLINKDIR Path to use for shared linker when building a program.
|
|
|
|
[/libexec for programs in /bin and /sbin, /usr/libexec for
|
|
|
|
all others.]
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
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
|
|
|
|
before bsd.gcc.mk.
|
|
|
|
|
|
|
|
The primary users of bsd.gcc.mk are <bsd.prog.mk> and <bsd.lib.mk>, each
|
|
|
|
of which need to know where to find certain GCC support libraries.
|
|
|
|
|
|
|
|
The behavior of bsd.gcc.mk is influenced by the EXTERNAL_TOOLCHAIN variable,
|
|
|
|
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.
|
|
|
|
|
|
|
|
bsd.gcc.mk sets the following variables:
|
|
|
|
|
|
|
|
_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.
|
|
|
|
|
|
|
|
_GCC_CRTENDS The full path name to crtendS.o.
|
|
|
|
|
|
|
|
_GCC_LIBGCCDIR The directory where libgcc.a is located.
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
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
|
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
|
|
|
of suffixes, consistent with the current needs of the BSD tree. 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.
|
|
|
|
|
|
|
|
CLEANFILES Additional files to remove for the clean and cleandir targets.
|
|
|
|
|
|
|
|
COPTS Additional flags to the compiler when creating C objects.
|
|
|
|
|
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.
|
|
|
|
|
1998-04-13 16:03:07 +04:00
|
|
|
CPPFLAGS Additional flags to the C pre-processor
|
|
|
|
|
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
|
|
|
|
|
|
|
LDFLAGS Additional loader flags.
|
|
|
|
|
|
|
|
LINKS The list of binary links; should be full pathnames, the
|
|
|
|
linked-to file coming first, followed by the linked
|
|
|
|
file. The files are hard-linked. For example, to link
|
|
|
|
/bin/test and /bin/[, use:
|
|
|
|
|
|
|
|
LINKS= ${DESTDIR}/bin/test ${DESTDIR}/bin/[
|
|
|
|
|
1997-03-13 05:45:58 +03:00
|
|
|
SYMLINKS The list of symbolic links; should be full pathnames.
|
1997-03-23 01:33:53 +03:00
|
|
|
Syntax is identical to LINKS. Note that DESTDIR is not
|
|
|
|
automatically included in the link.
|
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
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
The following libraries are predefined for DPADD:
|
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBCRT0?= ${DESTDIR}/usr/lib/crt0.o
|
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
|
|
|
|
LIBC_PIC?= ${DESTDIR}/usr/lib/libc_pic.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBCDK?= ${DESTDIR}/usr/lib/libcdk.a
|
|
|
|
LIBCOM_ERR?= ${DESTDIR}/usr/lib/libcom_err.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBCOMPAT?= ${DESTDIR}/usr/lib/libcompat.a
|
|
|
|
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
|
|
|
|
LIBDBM?= ${DESTDIR}/usr/lib/libdbm.a
|
|
|
|
LIBDES?= ${DESTDIR}/usr/lib/libdes.a
|
|
|
|
LIBEDIT?= ${DESTDIR}/usr/lib/libedit.a
|
2003-06-13 03:26:19 +04:00
|
|
|
LIBEVENT?= ${DESTDIR}/usr/lib/libevent.a
|
2001-01-05 15:59:25 +03:00
|
|
|
LIBFORM?= ${DESTDIR}/usr/lib/libform.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
|
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
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBKADM?= ${DESTDIR}/usr/lib/libkadm.a
|
|
|
|
LIBKADM5CLNT?= ${DESTDIR}/usr/lib/libkadm5clnt.a
|
|
|
|
LIBKADM5SRV?= ${DESTDIR}/usr/lib/libkadm5srv.a
|
|
|
|
LIBKAFS?= ${DESTDIR}/usr/lib/libkafs.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBKDB?= ${DESTDIR}/usr/lib/libkdb.a
|
|
|
|
LIBKRB?= ${DESTDIR}/usr/lib/libkrb.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBKRB5?= ${DESTDIR}/usr/lib/libkrb5.a
|
|
|
|
LIBKSTREAM?= ${DESTDIR}/usr/lib/libkstream.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBKVM?= ${DESTDIR}/usr/lib/libkvm.a
|
|
|
|
LIBL?= ${DESTDIR}/usr/lib/libl.a
|
|
|
|
LIBM?= ${DESTDIR}/usr/lib/libm.a
|
1999-11-23 16:22:37 +03:00
|
|
|
LIBMENU?= ${DESTDIR}/usr/lib/libmenu.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBMP?= ${DESTDIR}/usr/lib/libmp.a
|
1997-04-18 18:30:24 +04:00
|
|
|
LIBNTP?= ${DESTDIR}/usr/lib/libntp.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBOBJC?= ${DESTDIR}/usr/lib/libobjc.a
|
|
|
|
LIBOSSAUDIO?= ${DESTDIR}/usr/lib/libossaudio.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBPC?= ${DESTDIR}/usr/lib/libpc.a
|
|
|
|
LIBPCAP?= ${DESTDIR}/usr/lib/libpcap.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBPCI?= ${DESTDIR}/usr/lib/libpci.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBPLOT?= ${DESTDIR}/usr/lib/libplot.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
|
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
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBSKEY?= ${DESTDIR}/usr/lib/libskey.a
|
2002-06-09 08:04:32 +04:00
|
|
|
LIBSS?= ${DESTDIR}/usr/lib/libss.a
|
|
|
|
LIBSSL?= ${DESTDIR}/usr/lib/libssl.a
|
|
|
|
LIBSKEY?= ${DESTDIR}/usr/lib/libskey.a
|
|
|
|
LIBSL?= ${DESTDIR}/usr/lib/libsl.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBTERMCAP?= ${DESTDIR}/usr/lib/libtermcap.a
|
|
|
|
LIBTELNET?= ${DESTDIR}/usr/lib/libtelnet.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
|
|
|
|
LIBWRAP?= ${DESTDIR}/usr/lib/libwrap.a
|
|
|
|
LIBY?= ${DESTDIR}/usr/lib/liby.a
|
|
|
|
LIBZ?= ${DESTDIR}/usr/lib/libz.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.
|
|
|
|
|
|
|
|
SCRIPTSNAME The name that the above program will be installed as, if
|
|
|
|
different from ${SCRIPTS}. These can be further specialized
|
|
|
|
by setting SCRIPTSNAME_<script>.
|
|
|
|
|
|
|
|
FILES A list of files to install. The installation is controlled
|
|
|
|
by the FILESNAME, FILESOWN, FILESGRP, FILESMODE, FILESDIR
|
|
|
|
variables that can be further specialized by FILES<VAR>_<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
|
|
|
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
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.subdir.mk> contains the default targets for building
|
1996-04-04 06:05:03 +04:00
|
|
|
subdirectories. It has the same eight targets as <bsd.prog.mk>: all,
|
|
|
|
clean, cleandir, depend, includes, install, lint, and tags. For all of
|
2000-12-30 17:34:51 +03:00
|
|
|
the directories listed in the variable SUBDIR, the specified directory
|
1996-04-04 06:05:03 +04:00
|
|
|
will be visited and the target made. There is also a default target which
|
|
|
|
allows the command "make subdir" where subdir is any directory listed in
|
2000-12-30 17:34:51 +03:00
|
|
|
the variable SUBDIR.
|
|
|
|
|
|
|
|
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
|
2001-02-01 23:27:06 +03:00
|
|
|
started. See make(1) for some caveats on use of .WAIT and other
|
|
|
|
special sources.
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
1997-03-27 20:33:34 +03:00
|
|
|
The include file <bsd.links.mk> handles the LINKS and SYMLINKS variables
|
|
|
|
and is included from from bsd.lib.mk and bsd.prog.mk.
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.files.mk> handles the FILES variables and is included
|
|
|
|
from bsd.lib.mk and bsd.prog.mk.
|
1997-03-25 00:54:12 +03:00
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
1997-06-01 01:21:13 +04:00
|
|
|
The include file <bsd.inc.mk> defines the includes target and uses two
|
|
|
|
variables:
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2001-10-30 18:17:16 +03:00
|
|
|
INCS The list of include files
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2001-10-30 18:17:16 +03: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.
|
|
|
|
|
|
|
|
INCSNAME_<file> The name file <file> should be installed as, if not <file>,
|
|
|
|
same as FILESNAME_<file>, but for include files.
|
1997-03-25 00:54:12 +03:00
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
1998-06-13 03:28:53 +04:00
|
|
|
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
|
|
|
|
kernel Makefiles. Please see bsd.kinc.mk for more details, and keep
|
|
|
|
the documentation in that file up to date.
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
1999-02-12 18:10:22 +03:00
|
|
|
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. []
|
|
|
|
|
|
|
|
INSTALL_INFO Name of install-info program. [install-info]
|
|
|
|
|
|
|
|
MAKEINFO Name of makeinfo program. [makeinfo]
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
1995-10-22 03:45:53 +03:00
|
|
|
The include file <bsd.sys.mk> is used by <bsd.prog.mk> and
|
1995-12-13 04:25:05 +03:00
|
|
|
<bsd.lib.mk>. It contains overrides that are used when building
|
|
|
|
the NetBSD source tree. For instance, if "PARALLEL" is defined by
|
|
|
|
the program/library Makefile, it includes a set of rules for lex and
|
|
|
|
yacc that allow multiple lex and yacc targets to be built in parallel.
|
1995-10-22 03:45:53 +03:00
|
|
|
|
2000-10-04 23:27:45 +04:00
|
|
|
Other variables of note (incomplete list):
|
|
|
|
|
2001-11-01 10:17:17 +03:00
|
|
|
WARNS Crank up gcc warning options; the distinct levels are:
|
|
|
|
WARNS=1
|
|
|
|
WARNS=2
|
|
|
|
WARNS=3
|
2000-10-04 23:27:45 +04:00
|
|
|
|
|
|
|
FORMAT_AUDIT If FORMAT_AUDIT is set, and WFORMAT is set and > 1, turn on
|
|
|
|
WFORMAT -Wnetbsd-format-audit for extra-stringent format checking.
|
2001-02-01 23:27:06 +03:00
|
|
|
WFORMAT belongs in individual makefiles and/or
|
|
|
|
Makefile.inc files. (set WFORMAT=1 in individual
|
|
|
|
makefiles if a program is not security critical and is
|
|
|
|
doing bizarre things with format strings which would
|
|
|
|
be even uglier if rewritten) FORMAT_AUDIT should go in
|
|
|
|
mk.conf if you're doing format-string auditing.
|
2000-10-04 23:27:45 +04:00
|
|
|
FORMAT_AUDIT may go away in time.
|
|
|
|
|
1995-10-22 03:45:53 +03:00
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
The include file <bsd.lib.mk> has support for building libraries. It has
|
1996-04-04 06:05:03 +04:00
|
|
|
the same eight targets as <bsd.prog.mk>: all, clean, cleandir, depend,
|
1998-11-07 12:40:35 +03:00
|
|
|
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,
|
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
|
|
|
consistent with the current needs of the BSD tree. bsd.lib.mk includes
|
|
|
|
<bsd.shlib.mk> to get shared library parameters.
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
It sets/uses the following variables:
|
|
|
|
|
1995-01-03 02:59:01 +03:00
|
|
|
LIB The name of the library to build.
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
LIBDIR Target directory for libraries.
|
|
|
|
|
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
|
|
|
SHLIBINSTALLDIR Target directory for shared libraries if ${USE_SHLIBDIR}
|
* 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
|
|
|
is "yes".
|
|
|
|
|
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
|
|
|
USE_SHLIBDIR If "yes", use ${SHLIBINSTALLDIR} instead of ${LIBDIR}
|
* 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
|
|
|
as the path to install shared libraries to.
|
2002-08-19 18:51:58 +04:00
|
|
|
USE_SHLIBDIR must be defined before <bsd.own.mk> is included.
|
* 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
|
|
|
LINTLIBDIR Target directory for lint libraries.
|
|
|
|
|
|
|
|
LIBGRP Library group.
|
|
|
|
|
|
|
|
LIBOWN Library owner.
|
|
|
|
|
|
|
|
LIBMODE Library mode.
|
|
|
|
|
|
|
|
LDADD Additional loader objects.
|
|
|
|
|
1996-01-23 01:46:06 +03:00
|
|
|
MAN The manual pages to be installed (use a .1 - .9 suffix).
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1999-02-12 18:10:22 +03:00
|
|
|
MKLINKLIB If "no", act as "MKPICINSTALL=no MKPROFILE=no".
|
|
|
|
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).
|
|
|
|
|
1999-11-28 07:50:41 +03:00
|
|
|
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.
|
|
|
|
|
1998-11-07 12:40:35 +03:00
|
|
|
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.
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
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.)
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
1993-05-26 15:51:49 +04:00
|
|
|
Libraries are ranlib'd when made.
|
1997-08-20 14:53:04 +04:00
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
1999-07-13 21:58:42 +04:00
|
|
|
|
1999-12-01 06:33:52 +03:00
|
|
|
The include file <bsd.obj.mk> defines targets related to the creation
|
|
|
|
and use of separated object and source directories.
|
|
|
|
|
2000-05-07 05:19:58 +04:00
|
|
|
If an environment variable named MAKEOBJDIRPREFIX is set, make(1) uses
|
|
|
|
${MAKEOBJDIRPREFIX}${.CURDIR} as the name of the object directory if
|
2001-02-01 23:27:06 +03:00
|
|
|
it exists. Otherwise make(1) looks for the existence of a
|
2000-05-07 05:19:58 +04:00
|
|
|
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".
|
1999-12-01 06:33:52 +03:00
|
|
|
|
|
|
|
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
|
2000-01-08 04:41:13 +03:00
|
|
|
"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.
|
1999-12-01 06:33:52 +03:00
|
|
|
|
|
|
|
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}
|
|
|
|
|
2002-03-14 21:26:32 +03:00
|
|
|
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}".
|
|
|
|
|
1999-12-01 06:33:52 +03:00
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
2000-05-07 05:19:58 +04:00
|
|
|
|
|
|
|
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.
|
2002-04-10 19:05:41 +04:00
|
|
|
It defaults to ${_SRC_TOP_}/sys
|
2000-05-07 05:19:58 +04:00
|
|
|
|
|
|
|
KERNARCHDIR Is the location of the machine dependent kernel
|
|
|
|
sources. It defaults to arch/${MACHINE}
|
|
|
|
|
|
|
|
KERNCONFDIR Is where the configuration files for kernels are
|
|
|
|
found; default is ${KERNSRCDIR}/${KERNARCHDIR}/conf.
|
|
|
|
|
|
|
|
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
|
|
|
|
wish to find compiled kernels use bsd.kernobj.mk and ${KERNOBJDIR}
|
|
|
|
rather than make assumptions about the location of the compiled kernel.
|
|
|
|
|
2003-01-05 22:18:52 +03:00
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.rpc.mk> contains a makefile fragment used to
|
|
|
|
construct source files built by rpcgen.
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
RPC_INCS: construct .h file from .x file
|
|
|
|
RPC_XDRFILES: construct _xdr.c from .x file
|
|
|
|
(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.
|
|
|
|
|
|
|
|
RPC_XDIR: Directory containing .x/.h files
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-05-07 05:19:58 +04:00
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|