1998-06-13 03:28:53 +04:00
|
|
|
# $NetBSD: bsd.README,v 1.39 1998/06/12 23:28:53 cgd 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
|
|
|
|
multiple programs in a single directory. It's a lot easier split up the
|
|
|
|
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.
|
|
|
|
|
|
|
|
There are two variables that control how things are made/installed that
|
|
|
|
are not set by default:
|
|
|
|
|
|
|
|
BUILD If set '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-existant targets.
|
|
|
|
|
|
|
|
UPDATE 'make install' only installs targets that are more recently
|
|
|
|
modified in the source directories that their installed
|
|
|
|
counterparts.
|
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.
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
|
|
|
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
|
|
|
|
1997-03-25 00:54:12 +03: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
|
|
|
|
|
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]
|
|
|
|
|
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}]
|
|
|
|
|
|
|
|
NLSDIR Base path for National Language Support files installation.
|
|
|
|
[/usr/share/nls]
|
|
|
|
|
1998-02-26 11:46:09 +03:00
|
|
|
NLSGRP National Language Support files group. [wheel]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
1998-02-26 11:46:09 +03:00
|
|
|
NLSOWN National Language Support files owner. [root]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
|
|
|
NLSMODE National 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
|
|
|
|
1996-01-23 01:46:06 +03:00
|
|
|
EXPORTABLE_SYSTEM
|
|
|
|
Do not build /usr/src/domestic, even if it is present.
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-01-23 01:46:06 +03:00
|
|
|
SKEY Compile in support for S/key authentication. [yes, set
|
|
|
|
unconditionally]
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-01-23 01:46:06 +03:00
|
|
|
KERBEROS Compile in support for Kerberos 4 authentication.
|
|
|
|
|
|
|
|
KERBEROS5 Compile in support for Kerberos 5 authentication.
|
|
|
|
|
|
|
|
MANZ Compress manual pages at installation time.
|
|
|
|
|
|
|
|
SYS_INCLUDE Copy or symlink kernel include files into /usr/include.
|
|
|
|
Possible values are "symlinks" or "copies" (which is
|
|
|
|
the same as the variable being unset).
|
|
|
|
|
|
|
|
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}
|
1998-02-23 13:09:31 +03:00
|
|
|
is "vax" "powerpc", unset otherwise.]
|
1996-01-23 01:46:06 +03:00
|
|
|
|
|
|
|
NOLINT Do not build lint libraries. [set, set unconditionally]
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-02-23 13:09:31 +03:00
|
|
|
NOSHLIB Do not build shared libraries [set if ${MACHINE_ARCH}
|
|
|
|
is "powerpc", unset otherwise].
|
|
|
|
|
1998-05-13 17:58:00 +04:00
|
|
|
OBJECT_FMT Object file format. [set to "ELF" on ports that use
|
1998-02-23 13:09:31 +03:00
|
|
|
ELF -- currently if ${MACHINE_ARCH} is "alpha", "mips"
|
|
|
|
or "powerpc" or set to "a.out" on other ports].
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
|
|
|
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
|
|
|
|
of suffixes, consistent with the current needs of the BSD tree.
|
|
|
|
|
1996-04-04 06:05:03 +04:00
|
|
|
It has eight targets:
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
all:
|
|
|
|
build the program and its manual page
|
|
|
|
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.
|
|
|
|
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.
|
|
|
|
|
1998-04-13 16:03:07 +04:00
|
|
|
CPPFLAGS Additional flags to the C pre-processor
|
|
|
|
|
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.
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
LIBC?= ${DESTDIR}/usr/lib/libc.a
|
|
|
|
LIBC_PIC?= ${DESTDIR}/usr/lib/libc_pic.a
|
|
|
|
LIBCOMPAT?= ${DESTDIR}/usr/lib/libcompat.a
|
|
|
|
LIBCRYPT?= ${DESTDIR}/usr/lib/libcrypt.a
|
|
|
|
LIBCURSES?= ${DESTDIR}/usr/lib/libcurses.a
|
|
|
|
LIBDBM?= ${DESTDIR}/usr/lib/libdbm.a
|
|
|
|
LIBDES?= ${DESTDIR}/usr/lib/libdes.a
|
|
|
|
LIBEDIT?= ${DESTDIR}/usr/lib/libedit.a
|
|
|
|
LIBGCC?= ${DESTDIR}/usr/lib/libgcc.a
|
|
|
|
LIBGNUMALLOC?= ${DESTDIR}/usr/lib/libgnumalloc.a
|
|
|
|
LIBKDB?= ${DESTDIR}/usr/lib/libkdb.a
|
|
|
|
LIBKRB?= ${DESTDIR}/usr/lib/libkrb.a
|
|
|
|
LIBKVM?= ${DESTDIR}/usr/lib/libkvm.a
|
|
|
|
LIBL?= ${DESTDIR}/usr/lib/libl.a
|
|
|
|
LIBM?= ${DESTDIR}/usr/lib/libm.a
|
|
|
|
LIBMP?= ${DESTDIR}/usr/lib/libmp.a
|
1997-04-18 18:30:24 +04:00
|
|
|
LIBNTP?= ${DESTDIR}/usr/lib/libntp.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBPC?= ${DESTDIR}/usr/lib/libpc.a
|
|
|
|
LIBPCAP?= ${DESTDIR}/usr/lib/libpcap.a
|
|
|
|
LIBPLOT?= ${DESTDIR}/usr/lib/libplot.a
|
1997-05-19 00:21:53 +04:00
|
|
|
LIBPOSIX?= ${DESTDIR}/usr/lib/libposix.a
|
1997-03-25 00:54:12 +03:00
|
|
|
LIBRESOLV?= ${DESTDIR}/usr/lib/libresolv.a
|
|
|
|
LIBRPCSVC?= ${DESTDIR}/usr/lib/librpcsvc.a
|
|
|
|
LIBSKEY?= ${DESTDIR}/usr/lib/libskey.a
|
|
|
|
LIBTERMCAP?= ${DESTDIR}/usr/lib/libtermcap.a
|
|
|
|
LIBTELNET?= ${DESTDIR}/usr/lib/libtelnet.a
|
|
|
|
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
|
|
|
|
|
|
|
STRIP The flag passed to the install program to cause the binary
|
|
|
|
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>
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
NOMAN= noman
|
|
|
|
|
|
|
|
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
|
|
|
|
the directories listed in the variable SUBDIRS, the specified directory
|
|
|
|
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
|
|
|
|
the variable SUBDIRS.
|
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
|
|
|
|
1997-06-01 01:21:13 +04:00
|
|
|
INCS The list of include files
|
1997-03-25 00:54:12 +03:00
|
|
|
|
1997-06-01 01:21:13 +04:00
|
|
|
INCSDIR The location to install the 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.
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
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
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
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,
|
|
|
|
includes, install, lint, and tags. It has a limited number of suffixes,
|
|
|
|
consistent with the current needs of the BSD tree.
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.port.mk> is used in the FreeBSD ports system.
|
|
|
|
Various common definitions for use in the FreeBSD ports are specified
|
|
|
|
here. The only main changes between the NetBSD version and the
|
|
|
|
original FreeBSD version are that some NetBSD paths have been
|
1997-10-01 03:16:03 +04:00
|
|
|
changed (PORTSDIR is now /usr/pkgsrc, rather than the /usr/ports
|
1997-08-20 14:53:04 +04:00
|
|
|
directory used in FreeBSD, and PREFIX is now /usr/pkg, rather than
|
|
|
|
/usr/local directory used in FreeBSD).
|
|
|
|
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
|
|
|
|
The include file <bsd.port.subdir.mk> is used in the FreeBSD ports
|
|
|
|
system, and controls the sub-directory usage in the system. Once
|
1997-10-01 03:16:03 +04:00
|
|
|
again, the only change is the PORTSDIR veriable (now /usr/pkgsrc
|
1997-08-20 14:53:04 +04:00
|
|
|
rather than the /usr/ports used in FreeBSD).
|