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