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