NameDateSize

..20-Dec-201631

atf.test.mkH A D13-Dec-20152.1 KiB

bsd.arch.inc.mkH A D08-Mar-2015387

bsd.compiler.mkH A D04-Jan-20161.7 KiB

bsd.cpu.mkH A D13-Oct-20179.5 KiB

bsd.crunchgen.mkH A D05-Dec-20155 KiB

bsd.dep.mkH A D13-Mar-20165.7 KiB

bsd.doc.mkH A D05-Dec-20154.3 KiB

bsd.dtb.mkH A D03-Jun-2015523

bsd.endian.mkH A D08-Mar-2015506

bsd.files.mkH A D12-Jan-20171.9 KiB

bsd.incs.mkH A D12-Jan-20172.2 KiB

bsd.info.mkH A D08-Mar-20155.4 KiB

bsd.init.mkH A D08-Mar-2015378

bsd.kmod.mkH A D08-Mar-2015524

bsd.lib.mkH A D30-Sep-201512.2 KiB

bsd.libnames.mkH A D02-Feb-20166.8 KiB

bsd.links.mkH A D08-Mar-2015618

bsd.man.mkH A D08-Mar-20156.3 KiB

bsd.nls.mkH A D08-Mar-20151.6 KiB

bsd.obj.mkH A D15-Dec-20153.9 KiB

bsd.own.mkH A D13-Oct-201714.1 KiB

bsd.pkg.mkH A D08-Mar-20151 KiB

bsd.port.mkH A D17-Sep-2015804

bsd.port.options.mkH A D08-Mar-201592

bsd.port.post.mkH A D08-Mar-201574

bsd.port.pre.mkH A D08-Mar-201576

bsd.port.subdir.mkH A D17-Sep-2015594

bsd.prog.mkH A D23-Apr-20166.2 KiB

bsd.progs.mkH A D16-Aug-20163.6 KiB

bsd.READMEH A D12-May-201719.3 KiB

bsd.snmpmod.mkH A D05-Feb-20171,009

bsd.subdir.mkH A D16-Feb-20173.8 KiB

bsd.symver.mkH A D08-Mar-20151.1 KiB

bsd.sys.mkH A D16-Feb-20175.7 KiB

bsd.test.mkH A D16-Feb-20173.1 KiB

local.sys.mkH A D15-Jan-2016240

MakefileH A D09-Oct-20151.1 KiB

netbsd-tests.test.mkH A D16-Dec-2015946

plain.test.mkH A D08-Mar-20151.9 KiB

suite.test.mkH A D16-Feb-20173.5 KiB

sys.mkH A D05-Mar-20187.9 KiB

tap.test.mkH A D28-Dec-20152.8 KiB

version_gen.awkH A D08-Mar-20156.3 KiB

bsd.README

1#	@(#)bsd.README	8.2 (Berkeley) 4/2/94
2# $FreeBSD: stable/10/share/mk/bsd.README 318165 2017-05-10 23:14:09Z jhb $
3
4This is the README file for the "include" files for the FreeBSD
5source tree.  The files are installed in /usr/share/mk, and are by
6convention, named with the suffix ".mk".  These files store several
7build options and should be handled with caution.
8
9Note, this file is not intended to replace reading through the .mk
10files for anything tricky.
11
12There are two main types of make include files.  One type is the generally
13usable make include files, such as bsd.prog.mk and bsd.lib.mk.  The other is
14the internal make include files, such as bsd.files.mk and bsd.man.mk, which
15can not/should not be used directly but are used by the other make include
16files.  In most cases it is only interesting to include bsd.prog.mk or
17bsd.lib.mk.
18
19bsd.cpu.mk		- sets CPU/arch-related variables
20bsd.crunchgen.mk	- building crunched binaries using crunchgen(1)
21bsd.dep.mk		- handle Makefile dependencies
22bsd.doc.mk		- building troff system documents
23bsd.files.mk		- install of general purpose files
24bsd.incs.mk		- install of include files
25bsd.info.mk		- building GNU Info hypertext system
26bsd.init.mk		- initialization for the make include files
27bsd.kmod.mk		- building loadable kernel modules
28bsd.lib.mk		- support for building libraries
29bsd.libnames.mk		- define library names
30bsd.links.mk		- install of links (sym/hard)
31bsd.man.mk		- install of manual pages and their links
32bsd.nls.mk		- build and install of NLS catalogs
33bsd.obj.mk		- creating 'obj' directories and cleaning up
34bsd.own.mk		- define common variables
35bsd.port.mk		- building ports
36bsd.port.post.mk	- building ports
37bsd.port.pre.mk		- building ports
38bsd.port.subdir.mk	- targets for building subdirectories for ports
39bsd.prog.mk		- building programs from source files
40bsd.snmpmod.mk		- building modules for the SNMP daemon bsnmpd
41bsd.subdir.mk		- targets for building subdirectories
42bsd.sys.mk		- common settings used for building FreeBSD sources
43bsd.test.mk		- building test programs from source files
44sys.mk			- default rules for all makes
45
46This file does not document bsd.port*.mk.  They are documented in ports(7).
47
48See also make(1), mkdep(1), style.Makefile(5) and `PMake - A
49Tutorial', located in /usr/share/doc/psd/12.make.
50
51=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
52
53Random things worth knowing about this document:
54
55If appropriate when documenting the variables the default value is
56indicated using square brackets e.g. [gzip].
57In some cases the default value depend on other values (e.g. system
58architecture).  In these cases the most common value is indicated.
59
60This document contains some simple examples of the usage of the BSD make
61include files.  For more examples look at the makefiles in the FreeBSD
62source tree.
63
64=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
65
66RANDOM THINGS WORTH KNOWING:
67
68The files are like C-style #include files, and pretty much behave like
69you'd expect.  The syntax is slightly different in that a single '.' is
70used instead of the hash mark, i.e. ".include <bsd.prog.mk>".
71
72One difference that will save you lots of debugging time is that inclusion
73of the file is normally done at the *end* of the Makefile.  The reason for
74this is because .mk files often modify variables and behavior based on the
75values of variables set in the Makefile.  To make this work, remember that
76the FIRST target found is the target that is used, i.e. if the Makefile has:
77
78	a:
79		echo a
80	a:
81		echo a number two
82
83the command "make a" will echo "a".  To make things confusing, the SECOND
84variable assignment is the overriding one, i.e. if the Makefile has:
85
86	a=	foo
87	a=	bar
88
89	b:
90		echo ${a}
91
92the command "make b" will echo "bar".  This is for compatibility with the
93way the V7 make behaved.
94
95It's fairly difficult to make the BSD .mk files work when you're building
96multiple programs in a single directory.  It's a lot easier to split up
97the programs than to deal with the problem.  Most of the agony comes from
98making the "obj" directory stuff work right, not because we switch to a new
99version of make.  So, don't get mad at us, figure out a better way to handle
100multiple architectures so we can quit using the symbolic link stuff.
101(Imake doesn't count.)
102
103The file .depend in the source directory is expected to contain dependencies
104for the source files.  This file is read automatically by make after reading
105the Makefile.
106
107The variable DESTDIR works as before.  It's not set anywhere but will change
108the tree where the file gets installed.
109
110The profiled libraries are no longer built in a different directory than
111the regular libraries.  A new suffix, ".po", is used to denote a profiled
112object.
113
114=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
115
116The include file <sys.mk> has the default rules for all makes, in the BSD
117environment or otherwise.  You probably don't want to touch this file.
118
119=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
120
121The include file <bsd.man.mk> handles installing manual pages and their
122links.
123
124It has three targets:
125
126	all-man:
127		build manual pages.
128	maninstall:
129		install the manual pages and their links.
130	manlint:
131		verify the validity of manual pages.
132
133It sets/uses the following variables:
134
135MANDIR		Base path for manual installation.
136
137MANGRP		Manual group.
138
139MANOWN		Manual owner.
140
141MANMODE		Manual mode.
142
143MANSUBDIR	Subdirectory under the manual page section, i.e. "/vax"
144		or "/tahoe" for machine specific manual pages.
145
146MAN		The manual pages to be installed (use a .1 - .9 suffix).
147
148MLINKS		List of manual page links (using a .1 - .9 suffix).  The
149		linked-to file must come first, the linked file second,
150		and there may be multiple pairs.  The files are soft-linked.
151
152The include file <bsd.man.mk> includes a file named "../Makefile.inc" if
153it exists.
154
155=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
156
157The include file <bsd.own.mk> contains the owners, groups, etc. for both
158manual pages and binaries.
159
160It has no targets.
161
162It sets/uses the following variables:
163
164BINGRP		Binary group.
165
166BINOWN		Binary owner.
167
168BINMODE		Binary mode.
169
170MANDIR		Base path for manual installation.
171
172MANGRP		Manual group.
173
174MANOWN		Manual owner.
175
176MANMODE		Manual mode.
177
178This file is generally useful when building your own Makefiles so that
179they use the same default owners etc. as the rest of the tree.
180
181=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
182
183The include file <bsd.prog.mk> handles building programs from one or
184more source files, along with their manual pages.  It has a limited number
185of suffixes, consistent with the current needs of the BSD tree.
186
187It has seven targets:
188
189	all:
190		build the program and its manual page
191	clean:
192		remove the program and any object files.
193	cleandir:
194		remove all of the files removed by the target clean, as
195		well as .depend, tags, and any manual pages.
196	depend:
197		make the dependencies for the source files, and store
198		them in the file .depend.
199	install:
200		install the program and its manual pages; if the Makefile
201		does not itself define the target install, the targets
202		beforeinstall and afterinstall may also be used to cause
203		actions immediately before and after the install target
204		is executed.
205	lint:
206		run lint on the source files
207	tags:
208		create a tags file for the source files.
209
210It sets/uses the following variables:
211
212BINGRP		Binary group.
213
214BINOWN		Binary owner.
215
216BINMODE		Binary mode.
217
218CLEANFILES	Additional files to remove and
219CLEANDIRS	additional directories to remove during clean and cleandir
220		targets.  "rm -f" and "rm -rf" used respectively.
221
222CFLAGS		Flags to the compiler when creating C objects.
223
224FILES		A list of non-executable files.
225		The installation is controlled by the FILESNAME, FILESOWN,
226		FILESGRP, FILESMODE, FILESDIR variables that can be
227		further specialized by FILES<VAR>_<file>.
228
229LDADD		Additional loader objects.  Usually used for libraries.
230		For example, to load with the compatibility and utility
231		libraries, use:
232
233			LDADD=-lutil -lcompat
234
235LDFLAGS		Additional loader flags.
236
237LINKS		The list of binary links; should be full pathnames, the
238		linked-to file coming first, followed by the linked
239		file.  The files are hard-linked.  For example, to link
240		/bin/test and /bin/[, use:
241
242			LINKS=	${DESTDIR}/bin/test ${DESTDIR}/bin/[
243
244MAN		Manual pages (should end in .1 - .9).  If no MAN variable
245		is defined, "MAN=${PROG}.1" is assumed.
246
247PROG		The name of the program to build.  If not supplied, nothing
248		is built.
249
250PROG_CXX	If defined, the name of the program to build.  Also
251		causes <bsd.prog.mk> to link the program with the
252		standard C++ library.  PROG_CXX overrides the value
253		of PROG if PROG is also set.
254
255PROGS		When used with <bsd.progs.mk>, allow building multiple
256PROGS_CXX	PROG and PROG_CXX in one Makefile.  To define
257		individual variables for each program the VAR.prog
258		syntax should be used.  For example:
259
260		PROGS=		foo bar
261		SRCS.foo=	foo_src.c
262		LDADD.foo=	-lutil
263		SRCS.bar=	bar_src.c
264
265		The supported variables are:
266		- BINDIR
267		- BINGRP
268		- BINMODE
269		- BINOWN
270		- CFLAGS
271		- CXXFLAGS
272		- DEBUG_FLAGS
273		- DPADD
274		- DPSRCS
275		- INTERNALPROG (no installation)
276		- LDADD
277		- LDFLAGS
278		- LINKS
279		- MAN
280		- MLINKS
281		- NO_WERROR
282		- PROGNAME
283		- SRCS
284		- STRIP
285		- WARNS
286
287PROGNAME	The name that the above program will be installed as, if
288		different from ${PROG}.
289
290SRCS		List of source files to build the program.  If SRCS is not
291		defined, it's assumed to be ${PROG}.c or, if PROG_CXX is
292		defined, ${PROG_CXX}.cc.
293
294DPADD		Additional dependencies for the program.  Usually used for
295		libraries.  For example, to depend on the compatibility and
296		utility libraries use:
297
298			DPADD=${LIBCOMPAT} ${LIBUTIL}
299
300		There is a predefined identifier for each (non-profiled,
301		non-shared) library and object.  Library file names are
302		transformed to identifiers by removing the extension and
303		converting to upper case.
304
305		There are no special identifiers for profiled or shared
306		libraries or objects.  The identifiers for the standard
307		libraries are used in DPADD.  This works correctly iff all
308		the libraries are built at the same time.  Unfortunately,
309		it causes unnecessary relinks to shared libraries when
310		only the static libraries have changed.  Dependencies on
311		shared libraries should be only on the library version
312		numbers.
313
314STRIP		The flag passed to the install program to cause the binary
315		to be stripped.  This is to be used when building your
316		own install script so that the entire system can be made
317		stripped/not-stripped using a single nob.
318
319SUBDIR		A list of subdirectories that should be built as well.
320		Each of the targets will execute the same target in the
321		subdirectories.
322
323SCRIPTS		A list of interpreter scripts [file.{sh,csh,pl,awk,...}].
324		The installation is controlled by the SCRIPTSNAME, SCRIPTSOWN,
325		SCRIPTSGRP, SCRIPTSMODE, SCRIPTSDIR variables that can be
326		further specialized by SCRIPTS<VAR>_<script>.
327
328The include file <bsd.prog.mk> includes the file named "../Makefile.inc"
329if it exists, as well as the include file <bsd.man.mk>.
330
331Some simple examples:
332
333To build foo from foo.c with a manual page foo.1, use:
334
335	PROG=	foo
336
337	.include <bsd.prog.mk>
338
339To build foo from foo.c with a manual page foo.2, add the line:
340
341	MAN=	foo.2
342
343If foo does not have a manual page at all, add the line:
344
345	MAN=
346
347If foo has multiple source files, add the line:
348
349	SRCS=	a.c b.c c.c d.c
350
351=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
352
353The include file, <bsd.snmpmod.mk>, handles building MIB modules for bsnmpd
354from one or more source files, along with their manual pages.  It has a
355limited number of suffixes, consistent with the current needs of the BSD
356tree.
357
358bsd.snmpmod.mk leverages bsd.lib.mk for building MIB modules and
359bsd.files.mk for installing MIB description and definition files.
360
361It implements the following additional targets:
362
363	smilint:
364		execute smilint on the MIBs defined by BMIBS.
365
366		The net-mgmt/libsmi package must be installed before
367		executing this target. The net-mgmt/net-snmp package
368		should be installed as well to reduce false positives
369		from smilint.
370
371It sets/uses the following variables:
372
373BMIBS		The MIB definitions to install.
374
375BMIBSDIR	The directory where the MIB definitions are installed.
376		This defaults to `${SHAREDIR}/snmp/mibs`.
377
378DEFS		The MIB description files to install.
379
380DEFSDIR		The directory where MIB description files are installed.
381		This defaults to `${SHAREDIR}/snmp/defs`.
382
383EXTRAMIBDEFS	Extra MIB description files to use as input when
384		generating ${MOD}_oid.h and ${MOD}_tree.[ch].
385
386EXTRAMIBSYMS	Extra MIB definition files used only for extracting
387		symbols.
388
389		EXTRAMIBSYMS are useful when resolving inter-module
390		dependencies and are useful with files containing only
391		enum-definitions.
392
393		See ${MOD}_oid.h for more details.
394
395LOCALBASE	The package root where smilint and the net-snmp
396		definitions can be found
397
398MOD		The bsnmpd module name.
399
400SMILINT		smilint binary to use with the smilint make target.
401
402SMILINT_FLAGS	flags to pass to smilint.
403
404SMIPATH		A colon-separated directory path where MIBs definitions
405		can be found. See "SMIPATH" in smi_config for more
406		details.
407
408XSYM		MIB names to extract symbols for. See ${MOD}_oid.h for
409		more details.
410
411It generates the following files:
412
413${MOD}_tree.c	A source file and header which programmatically describes
414${MOD}_tree.h	the MIB (type, OID name, ACCESS attributes, etc).
415
416		The files are generated via "gensnmptree -p".
417
418		See gensnmptree(1) for more details.
419
420${MOD}_oid.h	A header which programmatically describes the MIB root and
421		MIB tables.
422
423		The files are generated via "gensnmptree -e".
424
425		See gensnmptree(1) for more details.
426
427=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
428
429The include file <bsd.subdir.mk> contains the default targets for building
430subdirectories.  It has the same seven targets as <bsd.prog.mk>: all, clean,
431cleandir, depend, install, lint, and tags.  For all of the directories
432listed in the variable SUBDIRS, the specified directory will be visited
433and the target made.  There is also a default target which allows the
434command "make subdir" where subdir is any directory listed in the variable
435SUBDIRS.
436
437=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
438
439The include file <bsd.lib.mk> has support for building libraries.  It has
440the same seven targets as <bsd.prog.mk>: all, clean, cleandir, depend,
441install, lint, and tags.  It has a limited number of suffixes, consistent
442with the current needs of the BSD tree.
443
444It sets/uses the following variables:
445
446LIB		The name of the library to build.
447
448LIB_CXX		The name of the library to build. It also causes
449		<bsd.lib.mk> to link the library with the
450		standard C++ library.  LIB_CXX overrides the value
451		of LIB if LIB is also set.
452
453LIBDIR		Target directory for libraries.
454
455LINTLIBDIR	Target directory for lint libraries.
456
457LIBGRP		Library group.
458
459LIBOWN		Library owner.
460
461LIBMODE		Library mode.
462
463LDADD		Additional loader objects.
464
465MAN		The manual pages to be installed (use a .1 - .9 suffix).
466
467SRCS		List of source files to build the library.  Suffix types
468		.s, .c, and .f are supported.  Note, .s files are preferred
469		to .c files of the same name.  (This is not the default for
470		versions of make.)
471
472SHLIB_LDSCRIPT	Template file to generate shared library linker script.
473		If not defined, a simple symlink is created to the real
474		shared object.
475
476LIBRARIES_ONLY	Do not build or install files other than the library.
477
478The include file <bsd.lib.mk> includes the file named "../Makefile.inc"
479if it exists, as well as the include file <bsd.man.mk>.
480
481It has rules for building profiled objects; profiled libraries are
482built by default.
483
484Libraries are ranlib'd before installation.
485
486=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
487
488The include file <bsd.test.mk> handles building one or more test programs
489intended to be used in the FreeBSD Test Suite under /usr/tests/.
490
491It has seven targets:
492
493	all:
494		build the test programs.
495	check:
496		runs the test programs from CHECKDIR with kyua test.
497
498		The beforecheck and aftercheck targets will be invoked, if
499		defined, to execute commands before and after the realcheck
500		target has been executed, respectively.
501
502		The devel/kyua package must be installed before invoking this
503		target.
504
505		See CHECKDIR for more details.
506	clean:
507		remove the test programs and any object files.
508	cleandir:
509		remove all of the files removed by the target clean, as
510		well as .depend and tags.
511	depend:
512		make the dependencies for the source files, and store
513		them in the file .depend.
514	install:
515                install the test programs and their data files; if the
516                Makefile does not itself define the target install, the
517                targets beforeinstall and afterinstall may also be used
518                to cause actions immediately before and after the
519                install target is executed.
520	lint:
521		run lint on the source files.
522	tags:
523		create a tags file for the source files.
524
525It sets/uses the following variables, among many others:
526
527TESTSBASE	Installation prefix for tests. Defaults to /usr/tests
528
529TESTSDIR	Path to the installed tests.  Must be a subdirectory of
530		TESTSBASE and the subpath should match the relative
531		location of the tests within the src tree.
532
533		The value of TESTSDIR defaults to
534		${TESTSBASE}/${RELDIR:H} , e.g. /usr/tests/bin/ls when
535		included from bin/ls/tests .
536
537CHECKDIR	The directory that 'make check' executes tests from.
538
539		The value of CHECKDIR defaults to .OBJDIR.
540
541KYUAFILE	If 'auto' (the default), generate a Kyuafile out of the
542		test programs defined in the Makefile.  If 'yes', then a
543		manually-crafted Kyuafile must be supplied with the
544		sources.  If 'no', no Kyuafile is installed (useful for
545		subdirectories providing helper programs or data files
546		only).
547
548LOCALBASE	The --prefix for the kyua package.
549
550		The value of LOCALBASE defaults to /usr/local .
551
552ATF_TESTS_C	The names of the ATF C test programs to build.
553
554ATF_TESTS_CXX	The names of the ATF C++ test programs to build.
555
556ATF_TESTS_SH	The names of the ATF sh test programs to build.
557
558PLAIN_TESTS_C	The names of the plain (legacy) programs to build.
559
560PLAIN_TESTS_CXX	The names of the plain (legacy) test programs to build.
561
562PLAIN_TESTS_SH	The names of the plain (legacy) test programs to build.
563
564TAP_PERL_INTERPRETER
565		Path to the Perl interpreter to be used for
566		TAP-compliant test programs that are written in Perl.
567		Refer to TAP_TESTS_PERL for details.
568
569TAP_TESTS_C	The names of the TAP-compliant C test programs to build.
570
571TAP_TESTS_CXX	The names of the TAP-compliant C++ test programs to
572		build.
573
574TAP_TESTS_PERL	The names of the TAP-compliant Perl test programs to
575		build.  The corresponding source files should end with
576		the .pl extension; the test program is marked as
577		requiring Perl; and TAP_PERL_INTERPRETER is used in the
578		built scripts as the interpreter of choice.
579
580TAP_TESTS_SH	The names of the TAP-compliant sh test programs to
581		build.
582
583TESTS_SUBDIRS	List of subdirectories containing tests into which to
584		recurse.  Differs from SUBDIR in that these directories
585		get registered into the automatically-generated
586		Kyuafile (if any).
587
588NOT_FOR_TEST_SUITE
589		If defined, none of the built test programs get
590		installed under /usr/tests/ and no Kyuafile is
591		automatically generated.  Should not be used within the
592		FreeBSD source tree but is provided for the benefit of
593		third-parties.
594
595The actual building of the test programs is performed by <bsd.prog.mk>.
596Please see the documentation above for this other file for additional
597details on the behavior of <bsd.test.mk>.
598