]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man7/build.7
MFH
[FreeBSD/FreeBSD.git] / share / man / man7 / build.7
1 .\" Copyright (c) 2000
2 .\"     Mike W. Meyer
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd August 5, 2020
28 .Dt BUILD 7
29 .Os
30 .Sh NAME
31 .Nm build
32 .Nd information on how to build the system
33 .Sh DESCRIPTION
34 The sources for the
35 .Fx
36 system and its applications are contained in three different directories,
37 normally
38 .Pa /usr/src ,
39 .Pa /usr/doc ,
40 and
41 .Pa /usr/ports .
42 These directories may be initially empty or non-existent until updated with
43 .Xr svn 1
44 (or
45 .Xr svnlite 1 ) .
46 Directory
47 .Pa /usr/src
48 contains the
49 .Dq "base system"
50 sources, which is loosely defined as the things required to rebuild
51 the system to a useful state.
52 Directory
53 .Pa /usr/doc
54 contains the source for the system documentation, excluding the manual
55 pages.
56 Directory
57 .Pa /usr/ports
58 contains a tree that provides a consistent interface for building and
59 installing third party applications.
60 For more information about the ports build process, see
61 .Xr ports 7 .
62 .Pp
63 The
64 .Xr make 1
65 command is used in each of these directories to build and install the
66 things in that directory.
67 Issuing the
68 .Xr make 1
69 command in any directory or
70 subdirectory of those directories has the same effect as issuing the
71 same command in all subdirectories of that directory.
72 With no target specified, the things in that directory are just built.
73 .Pp
74 A source tree is allowed to be read-only.
75 As described in
76 .Xr make 1 ,
77 objects are usually built in a separate object directory hierarchy
78 specified by the environment variable
79 .Va MAKEOBJDIRPREFIX ,
80 or under
81 .Pa /usr/obj
82 if variable
83 .Va MAKEOBJDIRPREFIX
84 is not set.
85 The canonical object directory is described in the documentation for the
86 .Cm buildworld
87 target below.
88 .Pp
89 The build may be controlled by defining
90 .Xr make 1
91 variables described in the
92 .Sx ENVIRONMENT
93 section below, and by the variables documented in
94 .Xr make.conf 5 .
95 .Pp
96 The following list provides the names and actions for the targets
97 supported by the build system:
98 .Bl -tag -width ".Cm cleandepend"
99 .It Cm analyze
100 Run Clang static analyzer against all objects and present output on stdout.
101 .It Cm check
102 Run tests for a given subdirectory.
103 The default directory used is
104 .Pa ${.OBJDIR} ,
105 but the check directory can be changed with
106 .Pa ${CHECKDIR} .
107 .It Cm checkworld
108 Run the
109 .Fx
110 test suite on installed world.
111 .It Cm clean
112 Remove any files created during the build process.
113 .It Cm cleandepend
114 Remove the
115 .Pa ${.OBJDIR}/${DEPENDFILE}*
116 files generated by prior
117 .Dq Li "make"
118 and
119 .Dq Li "make depend"
120 steps.
121 .It Cm cleandir
122 Remove the canonical object directory if it exists, or perform
123 actions equivalent to
124 .Dq Li "make clean cleandepend"
125 if it does not.
126 This target will also remove an
127 .Pa obj
128 link in
129 .Pa ${.CURDIR}
130 if that exists.
131 .Pp
132 It is advisable to run
133 .Dq Li "make cleandir"
134 twice: the first invocation will remove the canonical object directory
135 and the second one will clean up
136 .Pa ${.CURDIR} .
137 .It Cm depend
138 Generate a list of build dependencies in file
139 .Pa ${.OBJDIR}/${DEPENDFILE} .
140 Per-object dependencies are generated at build time and stored in
141 .Pa ${.OBJDIR}/${DEPENDFILE}.${OBJ} .
142 .It Cm install
143 Install the results of the build to the appropriate location in the
144 installation directory hierarchy specified in variable
145 .Va DESTDIR .
146 .It Cm obj
147 Create the canonical object directory associated with the current
148 directory.
149 .It Cm objlink
150 Create a symbolic link to the canonical object directory in
151 .Pa ${.CURDIR} .
152 .It Cm tags
153 Generate a tags file using the program specified in the
154 .Xr make 1
155 variable
156 .Va CTAGS .
157 The build system supports
158 .Xr ctags 1
159 and
160 .Nm "GNU Global" .
161 .El
162 .Pp
163 The other supported targets under directory
164 .Pa /usr/src
165 are:
166 .Bl -tag -width ".Cm distributeworld"
167 .It Cm buildenv
168 Spawn an interactive shell with environment variables set up for
169 building the system or individual components.
170 For cross-building the target architecture needs to be specified with
171 .Xr make 1
172 variables
173 .Va TARGET_ARCH
174 and
175 .Va TARGET .
176 .Pp
177 This target is only useful after a complete toolchain (including
178 the compiler, linker, assembler, headers and libraries) has been
179 built; see the
180 .Cm toolchain
181 target below.
182 .It Cm buildworld
183 Build everything but the kernel, configure files in
184 .Pa etc ,
185 and
186 .Pa release .
187 The object directory can be changed from the default
188 .Pa /usr/obj
189 by setting the
190 .Pa MAKEOBJDIRPREFIX
191 .Xr make 1
192 variable.
193 The actual build location prefix used
194 depends on the
195 .Va WITH_UNIFIED_OBJDIR
196 option from
197 .Xr src.conf 5 .
198 If enabled it is
199 .Pa ${MAKEOBJDIRPREFIX}${.CURDIR}/${TARGET}.${TARGET_ARCH}
200 for all builds.
201 If disabled it is
202 .Pa ${MAKEOBJDIRPREFIX}${.CURDIR}
203 for native builds, and
204 .Pa ${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH}${.CURDIR}
205 for cross builds and native builds with variable
206 .Va CROSS_BUILD_TESTING
207 set.
208 .It Cm cleanworld
209 Attempt to clean up targets built by a preceding
210 .Cm buildworld ,
211 or similar step built from this source directory.
212 .It Cm cleanuniverse
213 When
214 .Va WITH_UNIFIED_OBJDIR
215 is enabled, attempt to clean up targets built by a preceding
216 .Cm buildworld ,
217 .Cm universe ,
218 or similar step, for any architecture built from this source directory.
219 .It Cm distributeworld
220 Distribute everything compiled by a preceding
221 .Cm buildworld
222 step.
223 Files are placed in the directory hierarchy specified by
224 .Xr make 1
225 variable
226 .Va DISTDIR .
227 This target is used while building a release; see
228 .Xr release 7 .
229 .It Cm native-xtools
230 This target builds a cross-toolchain for the given
231 .Sy TARGET
232 and
233 .Sy TARGET_ARCH ,
234 as well as a select list of static userland tools for the host system.
235 This is intended to be used in a jail where QEMU is used to improve
236 performance by avoiding emulating binaries that do not need to be emulated.
237 .Sy TARGET
238 and
239 .Sy TARGET_ARCH
240 should be defined.
241 .It Cm native-xtools-install
242 Installs the results to
243 .Pa ${DESTDIR}/${NXTP}
244 where
245 .Va NXTP
246 defaults to
247 .Pa nxb-bin .
248 .Sy TARGET
249 and
250 .Sy TARGET_ARCH
251 must be defined.
252 .It Cm packageworld
253 Archive the results of
254 .Cm distributeworld ,
255 placing the results in
256 .Va DISTDIR .
257 This target is used while building a release; see
258 .Xr release 7 .
259 .It Cm installworld
260 Install everything built by a preceding
261 .Cm buildworld
262 step into the directory hierarchy pointed to by
263 .Xr make 1
264 variable
265 .Va DESTDIR .
266 .Pp
267 If installing onto an NFS file system and running
268 .Xr make 1
269 with the
270 .Fl j
271 option, make sure that
272 .Xr rpc.lockd 8
273 is running on both client and server.
274 See
275 .Xr rc.conf 5
276 on how to make it start at boot time.
277 .It Cm toolchain
278 Create the build toolchain needed to build the rest of the system.
279 For cross-architecture builds, this step creates a cross-toolchain.
280 .It Cm universe
281 For each architecture,
282 execute a
283 .Cm buildworld
284 followed by a
285 .Cm buildkernel
286 for all kernels for that architecture,
287 including
288 .Pa LINT .
289 This command takes a long time.
290 .It Cm kernels
291 Like
292 .Cm universe
293 with
294 .Va WITHOUT_WORLDS
295 defined so only the kernels for each architecture are built.
296 .It Cm worlds
297 Like
298 .Cm universe
299 with
300 .Va WITHOUT_KERNELS
301 defined so only the worlds for each architecture are built.
302 .It Cm update
303 Get updated sources as configured in
304 .Xr make.conf 5 .
305 .It Cm targets
306 Print a list of supported
307 .Va TARGET
308 /
309 .Va TARGET_ARCH
310 pairs for world and kernel targets.
311 .It Cm tinderbox
312 Execute the same targets as
313 .Cm universe .
314 In addition print a summary of all failed targets at the end and
315 exit with an error if there were any.
316 .It Cm toolchains
317 Create a build toolchain for each architecture supported by the build system.
318 .It Cm xdev
319 Builds and installs a cross-toolchain and sysroot for the given
320 .Sy TARGET
321 and
322 .Sy TARGET_ARCH .
323 The sysroot contains target library and headers.
324 The target is an alias for
325 .Cm xdev-build
326 and
327 .Cm xdev-install .
328 The location of the files installed can be controlled with
329 .Va DESTDIR .
330 The target location in
331 .Va DESTDIR
332 is
333 .Pa ${DESTDIR}/${XDTP}
334 where
335 .Va XDTP
336 defaults to
337 .Pa /usr/${XDDIR}
338 and
339 .Va XDDIR
340 defaults to
341 .Pa ${TARGET_ARCH}-freebsd .
342 .It Cm xdev-build
343 Builds for the
344 .Cm xdev
345 target.
346 .It Cm xdev-install
347 Installs the files for the
348 .Cm xdev
349 target.
350 .It Cm xdev-links
351 Installs autoconf-style symlinks to
352 .Pa ${DESTDIR}/usr/bin
353 pointing into the xdev toolchain in
354 .Pa ${DESTDIR}/${XDTP} .
355 .El
356 .Pp
357 Kernel specific build targets in
358 .Pa /usr/src
359 are:
360 .Bl -tag -width ".Cm distributekernel"
361 .It Cm buildkernel
362 Rebuild the kernel and the kernel modules.
363 The object directory can be changed from the default
364 .Pa /usr/obj
365 by setting the
366 .Pa MAKEOBJDIRPREFIX
367 .Xr make 1
368 variable.
369 .It Cm installkernel
370 Install the kernel and the kernel modules to directory
371 .Pa ${DESTDIR}/boot/kernel ,
372 renaming any pre-existing directory with this name to
373 .Pa kernel.old
374 if it contained the currently running kernel.
375 The target directory under
376 .Pa ${DESTDIR}
377 may be modified using the
378 .Va INSTKERNNAME
379 and
380 .Va KODIR
381 .Xr make 1
382 variables.
383 .It Cm distributekernel
384 Install the kernel to the directory
385 .Pa ${DISTDIR}/kernel/boot/kernel .
386 This target is used while building a release; see
387 .Xr release 7 .
388 .It Cm packagekernel
389 Archive the results of
390 .Cm distributekernel ,
391 placing the results in
392 .Va DISTDIR .
393 This target is used while building a release; see
394 .Xr release 7 .
395 .It Cm kernel
396 Equivalent to
397 .Cm buildkernel
398 followed by
399 .Cm installkernel
400 .It Cm kernel-toolchain
401 Rebuild the tools needed for kernel compilation.
402 Use this if you did not do a
403 .Cm buildworld
404 first.
405 .It Cm reinstallkernel
406 Reinstall the kernel and the kernel modules, overwriting the contents
407 of the target directory.
408 As with the
409 .Cm installkernel
410 target, the target directory can be specified using the
411 .Xr make 1
412 variable
413 .Va INSTKERNNAME .
414 .El
415 .Pp
416 Convenience targets for cleaning up the install destination directory
417 denoted by variable
418 .Va DESTDIR
419 include:
420 .Bl -tag -width ".Cm delete-old-libs"
421 .It Cm check-old
422 Print a list of old files and directories in the system.
423 .It Cm delete-old
424 Delete obsolete base system files and directories interactively.
425 When
426 .Li -DBATCH_DELETE_OLD_FILES
427 is specified at the command line, the delete operation will be
428 non-interactive.
429 The variables
430 .Va DESTDIR ,
431 .Va TARGET_ARCH
432 and
433 .Va TARGET
434 should be set as with
435 .Dq Li "make installworld" .
436 .It Cm delete-old-libs
437 Delete obsolete base system libraries interactively.
438 This target should only be used if no third party software uses these
439 libraries.
440 When
441 .Li -DBATCH_DELETE_OLD_FILES
442 is specified at the command line, the delete operation will be
443 non-interactive.
444 The variables
445 .Va DESTDIR ,
446 .Va TARGET_ARCH
447 and
448 .Va TARGET
449 should be set as with
450 .Dq Li "make installworld" .
451 .El
452 .Sh ENVIRONMENT
453 Variables that influence all builds include:
454 .Bl -tag -width ".Va MAKEOBJDIRPREFIX"
455 .It Va DEBUG_FLAGS
456 Defines a set of debugging flags that will be used to build all userland
457 binaries under
458 .Pa /usr/src .
459 When
460 .Va DEBUG_FLAGS
461 is defined, the
462 .Cm install
463 and
464 .Cm installworld
465 targets install binaries from the current
466 .Va MAKEOBJDIRPREFIX
467 without stripping,
468 so that debugging information is retained in the installed binaries.
469 .It Va DESTDIR
470 The directory hierarchy prefix where built objects will be installed.
471 If not set,
472 .Va DESTDIR
473 defaults to the empty string.
474 .It Va MAKEOBJDIRPREFIX
475 Defines the prefix for directory names in the tree of built objects.
476 Defaults to
477 .Pa /usr/obj
478 if not defined.
479 This variable should only be set in the environment or
480 .Pa /etc/src-env.conf
481 and not via
482 .Pa /etc/make.conf
483 or
484 .Pa /etc/src.conf
485 or the command line.
486 .It Va NO_WERROR
487 If defined, compiler warnings will not cause the build to halt,
488 even if the makefile says otherwise.
489 .It Va WITH_CTF
490 If defined, the build process will run the DTrace CTF conversion
491 tools on built objects.
492 .El
493 .Pp
494 Additionally, builds in
495 .Pa /usr/src
496 are influenced by the following
497 .Xr make 1
498 variables:
499 .Bl -tag -width ".Va SUBDIR_OVERRIDE"
500 .It Va KERNCONF
501 Overrides which kernel to build and install for the various kernel
502 make targets.
503 It defaults to
504 .Cm GENERIC .
505 .It Va KERNCONFDIR
506 Overrides the directory in which
507 .Va KERNCONF
508 and any files included by
509 .Va KERNCONF
510 should be found.
511 Defaults to
512 .Pa sys/${ARCH}/conf .
513 .It Va KERNFAST
514 If set, the build target
515 .Cm buildkernel
516 defaults to setting
517 .Va NO_KERNELCLEAN ,
518 .Va NO_KERNELCONFIG ,
519 and
520 .Va NO_KERNELOBJ .
521 When set to a value other than
522 .Cm 1
523 then
524 .Va KERNCONF
525 is set to the value of
526 .Va KERNFAST .
527 .It Va LOCAL_DIRS
528 If set, this variable supplies a list of additional directories relative to
529 the root of the source tree to build as part of the
530 .Cm everything
531 target.
532 The directories are built in parallel with each other,
533 and with the base system directories.
534 Insert a
535 .Va .WAIT
536 directive at the beginning of the
537 .Va LOCAL_DIRS
538 list to ensure all base system directories are built first.
539 .Va .WAIT
540 may also be used as needed elsewhere within the list.
541 .It Va LOCAL_ITOOLS
542 If set, this variable supplies a list of additional tools that are used by the
543 .Cm installworld
544 and
545 .Cm distributeworld
546 targets.
547 .It Va LOCAL_LIB_DIRS
548 If set, this variable supplies a list of additional directories relative to
549 the root of the source tree to build as part of the
550 .Cm libraries
551 target.
552 The directories are built in parallel with each other,
553 and with the base system libraries.
554 Insert a
555 .Va .WAIT
556 directive at the beginning of the
557 .Va LOCAL_DIRS
558 list to ensure all base system libraries are built first.
559 .Va .WAIT
560 may also be used as needed elsewhere within the list.
561 .It Va LOCAL_MTREE
562 If set, this variable supplies a list of additional mtrees relative to the
563 root of the source tree to use as part of the
564 .Cm hierarchy
565 target.
566 .It Va LOCAL_TOOL_DIRS
567 If set, this variable supplies a list of additional directories relative to
568 the root of the source tree to build as part of the
569 .Cm build-tools
570 target.
571 .It Va LOCAL_XTOOL_DIRS
572 If set, this variable supplies a list of additional directories relative to
573 the root of the source tree to build as part of the
574 .Cm cross-tools
575 target.
576 .It Va PORTS_MODULES
577 A list of ports with kernel modules that should be built and installed
578 as part of the
579 .Cm buildkernel
580 and
581 .Cm installkernel
582 process.
583 .Bd -literal -offset indent
584 make PORTS_MODULES=emulators/kqemu-kmod kernel
585 .Ed
586 .It Va STRIPBIN
587 Command to use at install time when stripping binaries.
588 Be sure to add any additional tools required to run
589 .Va STRIPBIN
590 to the
591 .Va LOCAL_ITOOLS
592 .Xr make 1
593 variable before running the
594 .Cm distributeworld
595 or
596 .Cm installworld
597 targets.
598 See
599 .Xr install 1
600 for more details.
601 .It Va SUBDIR_OVERRIDE
602 Override the default list of sub-directories and only build the
603 sub-directory named in this variable.
604 If combined with
605 .Cm buildworld
606 then all libraries and includes, and some of the build tools will still build
607 as well.
608 Specifying
609 .Cm -DNO_LIBS ,
610 and
611 .Cm -DWORLDFAST
612 will only build the specified directory as was done historically.
613 When combined with
614 .Cm buildworld
615 it is necesarry to override
616 .Va LOCAL_LIB_DIRS
617 with any custom directories containing libraries.
618 This allows building a subset of the system in the same way as
619 .Cm buildworld
620 does using its sysroot handling.
621 This variable can also be useful when debugging failed builds.
622 .Bd -literal -offset indent
623 make some-target SUBDIR_OVERRIDE=foo/bar
624 .Ed
625 .It Va TARGET
626 The target hardware platform.
627 This is analogous to the
628 .Dq Nm uname Fl m
629 output.
630 This is necessary to cross-build some target architectures.
631 For example, cross-building for ARM64 machines requires
632 .Va TARGET_ARCH Ns = Ns Li aarch64
633 and
634 .Va TARGET Ns = Ns Li arm64 .
635 If not set,
636 .Va TARGET
637 defaults to the current hardware platform, unless
638 .Va TARGET_ARCH
639 is also set, in which case it defaults to the appropriate
640 value for that architecture.
641 .It Va TARGET_ARCH
642 The target machine processor architecture.
643 This is analogous to the
644 .Dq Nm uname Fl p
645 output.
646 Set this to cross-build for a different architecture.
647 If not set,
648 .Va TARGET_ARCH
649 defaults to the current machine architecture, unless
650 .Va TARGET
651 is also set, in which case it defaults to the appropriate
652 value for that platform.
653 Typically, one only needs to set
654 .Va TARGET .
655 .El
656 .Pp
657 Builds under directory
658 .Pa /usr/src
659 are also influenced by defining one or more of the following symbols,
660 using the
661 .Fl D
662 option of
663 .Xr make 1 :
664 .Bl -tag -width ".Va -DNO_KERNELCONFIG"
665 .It Va LOADER_DEFAULT_INTERP
666 Defines what interpreter the default loader program will have.
667 Valid values include
668 .Dq 4th ,
669 .Dq lua ,
670 and
671 .Dq simp .
672 This creates the default link for
673 .Pa /boot/loader
674 to the loader with that interpreter.
675 It also determines what interpreter is compiled into
676 .Pa userboot .
677 .It Va NO_CLEANDIR
678 If set, the build targets that clean parts of the object tree use the
679 equivalent of
680 .Dq make clean
681 instead of
682 .Dq make cleandir .
683 .It Va NO_CLEAN
684 If set, no object tree files are cleaned at all.
685 This is the default when
686 .Va WITH_META_MODE
687 is used with
688 .Xr filemon 4
689 loaded.
690 See
691 .Xr src.conf 5
692 for more details.
693 Setting
694 .Va NO_CLEAN
695 implies
696 .Va NO_KERNELCLEAN ,
697 so when
698 .Va NO_CLEAN
699 is set no kernel objects are cleaned either.
700 .It Va NO_CTF
701 If set, the build process does not run the DTrace CTF conversion tools
702 on built objects.
703 .It Va NO_SHARE
704 If set, the build does not descend into the
705 .Pa /usr/src/share
706 subdirectory (i.e., manual pages, locale data files, timezone data files and
707 other
708 .Pa /usr/src/share
709 files will not be rebuild from their sources).
710 .It Va NO_KERNELCLEAN
711 If set, the build process does not run
712 .Dq make clean
713 as part of the
714 .Cm buildkernel
715 target.
716 .It Va NO_KERNELCONFIG
717 If set, the build process does not run
718 .Xr config 8
719 as part of the
720 .Cm buildkernel
721 target.
722 .It Va NO_KERNELOBJ
723 If set, the build process does not run
724 .Dq make obj
725 as part of the
726 .Cm buildkernel
727 target.
728 .It Va NO_DOCUPDATE
729 If set, the update process does not update the source of the
730 .Fx
731 documentation as part of the
732 .Dq make update
733 target.
734 .It Va NO_LIBS
735 If set, the libraries phase will be skipped.
736 .It Va NO_OBJWALK
737 If set, no object directories will be created.
738 This should only be used if object directories were created in a
739 previous build and no new directories are connected.
740 .It Va NO_PORTSUPDATE
741 If set, the update process does not update the Ports tree as part of the
742 .Dq make update
743 target.
744 .It Va NO_WWWUPDATE
745 If set, the update process does not update the www tree as part of the
746 .Dq make update
747 target.
748 .It Va WORLDFAST
749 If set, the build target
750 .Cm buildworld
751 defaults to setting
752 .Va NO_CLEAN ,
753 .Va NO_OBJWALK ,
754 and will skip most bootstrap phases.
755 It will only bootstrap libraries and build all of userland.
756 This option should be used only when it is known that none of the bootstrap
757 needs changed and that no new directories have been connected to the build.
758 .El
759 .Pp
760 Builds under directory
761 .Pa /usr/doc
762 are influenced by the following
763 .Xr make 1
764 variables:
765 .Bl -tag -width ".Va DOC_LANG"
766 .It Va DOC_LANG
767 If set, restricts the documentation build to the language subdirectories
768 specified as its content.
769 The default action is to build documentation for all languages.
770 .El
771 .Pp
772 Builds using the
773 .Cm universe
774 and related targets are influenced by the following
775 .Xr make 1
776 variables:
777 .Bl -tag -width ".Va MAKE_JUST_KERNELS"
778 .It Va JFLAG
779 Pass the value of this variable to each
780 .Xr make 1
781 invocation used to build worlds and kernels.
782 This can be used to enable multiple jobs within a single architecture's build
783 while still building each architecture serially.
784 .It Va MAKE_JUST_KERNELS
785 Only build kernels for each supported architecture.
786 .It Va MAKE_JUST_WORLDS
787 Only build worlds for each supported architecture.
788 .It Va WITHOUT_WORLDS
789 Only build kernels for each supported architecture.
790 .It Va WITHOUT_KERNELS
791 Only build worlds for each supported architecture.
792 .It Va UNIVERSE_TARGET
793 Execute the specified
794 .Xr make 1
795 target for each supported architecture instead of the default action of
796 building a world and one or more kernels.
797 This variable implies
798 .Va WITHOUT_KERNELS .
799 .It Va TARGETS
800 Only build the listed targets instead of each supported architecture.
801 .It Va EXTRA_TARGETS
802 In addition to the supported architectures, build the semi-supported
803 architectures.
804 A semi-supported architecture has build support in the
805 .Fx
806 tree, but receives significantly less testing and is generally for
807 fringe uses that do not have a wide appeal.
808 .El
809 .Sh FILES
810 .Bl -tag -width ".Pa /usr/share/examples/etc/make.conf" -compact
811 .It Pa /usr/doc/Makefile
812 .It Pa /usr/doc/share/mk/doc.project.mk
813 .It Pa /usr/ports/Mk/bsd.port.mk
814 .It Pa /usr/ports/Mk/bsd.sites.mk
815 .It Pa /usr/share/examples/etc/make.conf
816 .It Pa /usr/src/Makefile
817 .It Pa /usr/src/Makefile.inc1
818 .El
819 .Sh EXAMPLES
820 For an
821 .Dq approved
822 method of updating your system from the latest sources, please see the
823 .Sx COMMON ITEMS
824 section in
825 .Pa src/UPDATING .
826 .Pp
827 The following sequence of commands can be used to cross-build the
828 system for the armv6 architecture on an amd64 host:
829 .Bd -literal -offset indent
830 cd /usr/src
831 make TARGET_ARCH=armv6 buildworld buildkernel
832 make TARGET_ARCH=armv6 DESTDIR=/clients/arm installworld installkernel
833 .Ed
834 .Sh HISTORY
835 The
836 .Nm
837 manpage first appeared in
838 .Fx 4.3 .
839 .Sh SEE ALSO
840 .Xr cc 1 ,
841 .Xr install 1 ,
842 .Xr make 1 ,
843 .Xr svn 1 ,
844 .Xr svnlite 1 ,
845 .Xr make.conf 5 ,
846 .Xr src.conf 5 ,
847 .Xr arch 7 ,
848 .Xr ports 7 ,
849 .Xr release 7 ,
850 .Xr tests 7 ,
851 .Xr config 8 ,
852 .Xr mergemaster 8 ,
853 .Xr reboot 8 ,
854 .Xr shutdown 8
855 .Sh AUTHORS
856 .An Mike W. Meyer Aq Mt mwm@mired.org