xref: /freebsd/share/man/man7/build.7 (revision aae63957af7fde624579121b9cd72166ef3c0a8f)
1786aa69aSBen Smithurst.\" Copyright (c) 2000
2786aa69aSBen Smithurst.\"	Mike W. Meyer
3786aa69aSBen Smithurst.\"
4786aa69aSBen Smithurst.\" Redistribution and use in source and binary forms, with or without
5786aa69aSBen Smithurst.\" modification, are permitted provided that the following conditions
6786aa69aSBen Smithurst.\" are met:
7786aa69aSBen Smithurst.\" 1. Redistributions of source code must retain the above copyright
8786aa69aSBen Smithurst.\"    notice, this list of conditions and the following disclaimer.
9786aa69aSBen Smithurst.\" 2. Redistributions in binary form must reproduce the above copyright
10786aa69aSBen Smithurst.\"    notice, this list of conditions and the following disclaimer in the
11786aa69aSBen Smithurst.\"    documentation and/or other materials provided with the distribution.
12786aa69aSBen Smithurst.\"
13786aa69aSBen Smithurst.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
14786aa69aSBen Smithurst.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15786aa69aSBen Smithurst.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16786aa69aSBen Smithurst.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
17786aa69aSBen Smithurst.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18786aa69aSBen Smithurst.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19786aa69aSBen Smithurst.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20786aa69aSBen Smithurst.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21786aa69aSBen Smithurst.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22786aa69aSBen Smithurst.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23786aa69aSBen Smithurst.\" SUCH DAMAGE.
24786aa69aSBen Smithurst.\"
25786aa69aSBen Smithurst.\" $FreeBSD$
26786aa69aSBen Smithurst.\"
27*aae63957SBryan Drewery.Dd February 26, 2016
28786aa69aSBen Smithurst.Dt BUILD 7
293d45e180SRuslan Ermilov.Os
30786aa69aSBen Smithurst.Sh NAME
31786aa69aSBen Smithurst.Nm build
32eb083802SRuslan Ermilov.Nd information on how to build the system
33786aa69aSBen Smithurst.Sh DESCRIPTION
347b710ab2SJoseph KoshyThe sources for the
35d003b779SRuslan Ermilov.Fx
367b710ab2SJoseph Koshysystem and its applications are contained in three different directories,
37786aa69aSBen Smithurstnormally
38786aa69aSBen Smithurst.Pa /usr/src ,
39786aa69aSBen Smithurst.Pa /usr/doc ,
40786aa69aSBen Smithurstand
41786aa69aSBen Smithurst.Pa /usr/ports .
4250a994c9SWarren BlockThese directories may be initially empty or non-existent until updated with
43d335e7a1SGavin Atkinson.Xr svn 1
4450a994c9SWarren Blockor
45d732418bSWarren Block.Xr portsnap 8 .
467b710ab2SJoseph KoshyDirectory
47786aa69aSBen Smithurst.Pa /usr/src
48786aa69aSBen Smithurstcontains the
49786aa69aSBen Smithurst.Dq "base system"
50786aa69aSBen Smithurstsources, which is loosely defined as the things required to rebuild
51786aa69aSBen Smithurstthe system to a useful state.
527b710ab2SJoseph KoshyDirectory
53786aa69aSBen Smithurst.Pa /usr/doc
54786aa69aSBen Smithurstcontains the source for the system documentation, excluding the manual
55786aa69aSBen Smithurstpages.
567b710ab2SJoseph KoshyDirectory
57786aa69aSBen Smithurst.Pa /usr/ports
587b710ab2SJoseph Koshycontains a tree that provides a consistent interface for building and
59786aa69aSBen Smithurstinstalling third party applications.
607b710ab2SJoseph KoshyFor more information about the ports build process, see
617b710ab2SJoseph Koshy.Xr ports 7 .
62786aa69aSBen Smithurst.Pp
63786aa69aSBen SmithurstThe
64786aa69aSBen Smithurst.Xr make 1
65786aa69aSBen Smithurstcommand is used in each of these directories to build and install the
661caae057SRuslan Ermilovthings in that directory.
671caae057SRuslan ErmilovIssuing the
681caae057SRuslan Ermilov.Xr make 1
691caae057SRuslan Ermilovcommand in any directory or
70786aa69aSBen Smithurstsubdirectory of those directories has the same effect as issuing the
711caae057SRuslan Ermilovsame command in all subdirectories of that directory.
721caae057SRuslan ErmilovWith no target specified, the things in that directory are just built.
737b710ab2SJoseph Koshy.Pp
747b710ab2SJoseph KoshyA source tree is allowed to be read-only.
757b710ab2SJoseph KoshyAs described in
767b710ab2SJoseph Koshy.Xr make 1 ,
777b710ab2SJoseph Koshyobjects are usually built in a separate object directory hierarchy
787b710ab2SJoseph Koshyspecified by the environment variable
797b710ab2SJoseph Koshy.Va MAKEOBJDIRPREFIX ,
807b710ab2SJoseph Koshyor under
817b710ab2SJoseph Koshy.Pa /usr/obj
827b710ab2SJoseph Koshyif variable
837b710ab2SJoseph Koshy.Va MAKEOBJDIRPREFIX
847b710ab2SJoseph Koshyis not set.
857b710ab2SJoseph KoshyFor a given source directory, its canonical object directory
867b710ab2SJoseph Koshywould be
877b710ab2SJoseph Koshy.Pa ${MAKEOBJDIRPREFIX}${.CURDIR}
887b710ab2SJoseph Koshyif
897b710ab2SJoseph Koshy.Xr make 1
907b710ab2SJoseph Koshyvariable
917b710ab2SJoseph Koshy.Va MAKEOBJDIRPREFIX
927b710ab2SJoseph Koshyis set, or
937b710ab2SJoseph Koshy.Pa /usr/obj${.CURDIR}
947b710ab2SJoseph Koshyif this variable is not set.
957b710ab2SJoseph KoshyCross-builds set the object directory as described in the
967b710ab2SJoseph Koshydocumentation for the
977b710ab2SJoseph Koshy.Cm buildworld
987b710ab2SJoseph Koshytarget below.
997b710ab2SJoseph Koshy.Pp
1007b710ab2SJoseph KoshyThe build may be controlled by defining
1017b710ab2SJoseph Koshy.Xr make 1
1027b710ab2SJoseph Koshyvariables described in the
1037b710ab2SJoseph Koshy.Sx ENVIRONMENT
1047b710ab2SJoseph Koshysection below, and by the variables documented in
1057b710ab2SJoseph Koshy.Xr make.conf 5 .
1067b710ab2SJoseph Koshy.Pp
1077b710ab2SJoseph KoshyThe following list provides the names and actions for the targets
1087b710ab2SJoseph Koshysupported by the build system:
1097b710ab2SJoseph Koshy.Bl -tag -width ".Cm cleandepend"
110*aae63957SBryan Drewery.It Cm analyze
111*aae63957SBryan DreweryRun Clang static analyzer against all objects and present output on stdout.
11271b7fa12SEnji Cooper.It Cm check
11371b7fa12SEnji CooperRun tests for a given subdirectory.
11471b7fa12SEnji CooperThe default directory used is
11571b7fa12SEnji Cooper.Pa ${.OBJDIR} ,
11671b7fa12SEnji Cooperbut the check directory can be changed with
11771b7fa12SEnji Cooper.Pa ${CHECKDIR} .
11871b7fa12SEnji Cooper.It Cm checkworld
11971b7fa12SEnji CooperRun the
12071b7fa12SEnji Cooper.Fx
12171b7fa12SEnji Coopertest suite on installed world.
1221caae057SRuslan Ermilov.It Cm clean
1237b710ab2SJoseph KoshyRemove any files created during the build process.
1247b710ab2SJoseph Koshy.It Cm cleandepend
1257b710ab2SJoseph KoshyRemove the file
1267b710ab2SJoseph Koshy.Pa ${.OBJDIR}/${DEPENDFILE}
1277b710ab2SJoseph Koshygenerated by a prior
1287b710ab2SJoseph Koshy.Dq Li "make depend"
1297b710ab2SJoseph Koshystep.
1307b710ab2SJoseph Koshy.It Cm cleandir
1317b710ab2SJoseph KoshyRemove the canonical object directory if it exists, or perform
1327b710ab2SJoseph Koshyactions equivalent to
1337b710ab2SJoseph Koshy.Dq Li "make clean cleandepend"
1347b710ab2SJoseph Koshyif it does not.
1357b710ab2SJoseph KoshyThis target will also remove an
1367b710ab2SJoseph Koshy.Pa obj
1377b710ab2SJoseph Koshylink in
1387b710ab2SJoseph Koshy.Pa ${.CURDIR}
1397b710ab2SJoseph Koshyif that exists.
1407b710ab2SJoseph Koshy.Pp
1417b710ab2SJoseph KoshyIt is advisable to run
1427b710ab2SJoseph Koshy.Dq Li "make cleandir"
1437b710ab2SJoseph Koshytwice: the first invocation will remove the canonical object directory
1447b710ab2SJoseph Koshyand the second one will clean up
1457b710ab2SJoseph Koshy.Pa ${.CURDIR} .
1467b710ab2SJoseph Koshy.It Cm depend
1477b710ab2SJoseph KoshyGenerate a list of build dependencies in file
1487b710ab2SJoseph Koshy.Pa ${.OBJDIR}/${DEPENDFILE} .
1491caae057SRuslan Ermilov.It Cm install
1507b710ab2SJoseph KoshyInstall the results of the build to the appropriate location in the
1517b710ab2SJoseph Koshyinstallation directory hierarchy specified in variable
1527b710ab2SJoseph Koshy.Va DESTDIR .
1537b710ab2SJoseph Koshy.It Cm obj
1547b710ab2SJoseph KoshyCreate the canonical object directory associated with the current
1557b710ab2SJoseph Koshydirectory.
1567b710ab2SJoseph Koshy.It Cm objlink
1577b710ab2SJoseph KoshyCreate a symbolic link to the canonical object directory in
1587b710ab2SJoseph Koshy.Pa ${.CURDIR} .
1597b710ab2SJoseph Koshy.It Cm tags
1607b710ab2SJoseph KoshyGenerate a tags file using the program specified in the
1617b710ab2SJoseph Koshy.Xr make 1
1627b710ab2SJoseph Koshyvariable
1637b710ab2SJoseph Koshy.Va CTAGS .
1647b710ab2SJoseph KoshyThe build system supports
1657b710ab2SJoseph Koshy.Xr ctags 1
1667b710ab2SJoseph Koshyand
1677b710ab2SJoseph Koshy.Nm "GNU Global" .
1687b710ab2SJoseph Koshy.El
1697b710ab2SJoseph Koshy.Pp
1707b710ab2SJoseph KoshyThe other supported targets under directory
1717b710ab2SJoseph Koshy.Pa /usr/src
1727b710ab2SJoseph Koshyare:
1737b710ab2SJoseph Koshy.Bl -tag -width ".Cm distributeworld"
1747b710ab2SJoseph Koshy.It Cm buildenv
1757b710ab2SJoseph KoshySpawn an interactive shell with environment variables set up for
1767b710ab2SJoseph Koshycross-building the system.
1777b710ab2SJoseph KoshyThe target architecture needs to be specified with
1787b710ab2SJoseph Koshy.Xr make 1
1797b710ab2SJoseph Koshyvariables
1807b710ab2SJoseph Koshy.Va TARGET_ARCH
1817b710ab2SJoseph Koshyand
1827b710ab2SJoseph Koshy.Va TARGET .
1837b710ab2SJoseph Koshy.Pp
1847b710ab2SJoseph KoshyThis target is only useful after a complete cross-toolchain including
1857b710ab2SJoseph Koshythe compiler, linker, assembler, headers and libraries has been
1867b710ab2SJoseph Koshybuilt; see the
1877b710ab2SJoseph Koshy.Cm toolchain
1887b710ab2SJoseph Koshytarget below.
1897b710ab2SJoseph Koshy.It Cm buildworld
1907b710ab2SJoseph KoshyBuild everything but the kernel, configure files in
1917b710ab2SJoseph Koshy.Pa etc ,
1927b710ab2SJoseph Koshyand
1937b710ab2SJoseph Koshy.Pa release .
1947b710ab2SJoseph KoshyThe actual build location prefix used is
1957b710ab2SJoseph Koshy.Pa ${MAKEOBJDIRPREFIX}${.CURDIR}
1967b710ab2SJoseph Koshyfor native builds, and
1977b710ab2SJoseph Koshy.Pa ${MAKEOBJDIRPREFIX}/${TARGET}${.CURDIR}
1987b710ab2SJoseph Koshyfor cross builds and native builds with variable
1997b710ab2SJoseph Koshy.Va CROSS_BUILD_TESTING
2007b710ab2SJoseph Koshyset.
2017b710ab2SJoseph Koshy.It Cm cleanworld
2027b710ab2SJoseph KoshyAttempt to clean up targets built by a preceding
2037b710ab2SJoseph Koshy.Cm buildworld
2047b710ab2SJoseph Koshystep.
2057b710ab2SJoseph Koshy.It Cm distributeworld
2067b710ab2SJoseph KoshyDistribute everything compiled by a preceding
2077b710ab2SJoseph Koshy.Cm buildworld
2087b710ab2SJoseph Koshystep.
2097b710ab2SJoseph KoshyFiles are placed in the directory hierarchy specified by
2107b710ab2SJoseph Koshy.Xr make 1
2117b710ab2SJoseph Koshyvariable
2127b710ab2SJoseph Koshy.Va DISTDIR .
2137b710ab2SJoseph KoshyThis target is used while building a release; see
2147b710ab2SJoseph Koshy.Xr release 7 .
215e8423d00SNathan Whitehorn.It Cm packageworld
216e8423d00SNathan WhitehornArchive the results of
217e8423d00SNathan Whitehorn.Cm distributeworld ,
218e8423d00SNathan Whitehornplacing the results in
219e8423d00SNathan Whitehorn.Va DISTDIR .
220e8423d00SNathan WhitehornThis target is used while building a release; see
221e8423d00SNathan Whitehorn.Xr release 7 .
2227b710ab2SJoseph Koshy.It Cm installworld
2237b710ab2SJoseph KoshyInstall everything built by a preceding
2247b710ab2SJoseph Koshy.Cm buildworld
2257b710ab2SJoseph Koshystep into the directory hierarchy pointed to by
2267b710ab2SJoseph Koshy.Xr make 1
2277b710ab2SJoseph Koshyvariable
2287b710ab2SJoseph Koshy.Va DESTDIR .
229a3aed80dSRuslan Ermilov.Pp
23004876cf3SRuslan ErmilovIf installing onto an NFS file system and running
2318ed6451eSRuslan Ermilov.Xr make 1
2328ed6451eSRuslan Ermilovwith the
23304876cf3SRuslan Ermilov.Fl j
23404876cf3SRuslan Ermilovoption, make sure that
235a3aed80dSRuslan Ermilov.Xr rpc.lockd 8
236a3aed80dSRuslan Ermilovis running on both client and server.
237a3aed80dSRuslan ErmilovSee
238a3aed80dSRuslan Ermilov.Xr rc.conf 5
239a3aed80dSRuslan Ermilovon how to make it start at boot time.
2407b710ab2SJoseph Koshy.It Cm toolchain
2417b710ab2SJoseph KoshyCreate the build toolchain needed to build the rest of the system.
2427b710ab2SJoseph KoshyFor cross-architecture builds, this step creates a cross-toolchain.
2437b710ab2SJoseph Koshy.It Cm universe
2444e889921SJohn BaldwinFor each architecture,
2454e889921SJohn Baldwinexecute a
2467b710ab2SJoseph Koshy.Cm buildworld
2474e889921SJohn Baldwinfollowed by a
2487b710ab2SJoseph Koshy.Cm buildkernel
2494e889921SJohn Baldwinfor all kernels for that architecture,
2504e889921SJohn Baldwinincluding
2514e889921SJohn Baldwin.Pa LINT .
2527b710ab2SJoseph KoshyThis command takes a long time.
2531caae057SRuslan Ermilov.It Cm update
2547b710ab2SJoseph KoshyGet updated sources as configured in
25508b91343SYaroslav Tykhiy.Xr make.conf 5 .
256f1d16bd8SBjoern A. Zeeb.It Cm targets
257f1d16bd8SBjoern A. ZeebPrint a list of supported
258f1d16bd8SBjoern A. Zeeb.Va TARGET
259f1d16bd8SBjoern A. Zeeb/
260f1d16bd8SBjoern A. Zeeb.Va TARGET_ARCH
261f1d16bd8SBjoern A. Zeebpairs for world and kernel targets.
262eee8163bSBjoern A. Zeeb.It Cm tinderbox
263eee8163bSBjoern A. ZeebExecute the same targets as
264eee8163bSBjoern A. Zeeb.Cm universe .
265eee8163bSBjoern A. ZeebIn addition print a summary of all failed targets at the end and
266eee8163bSBjoern A. Zeebexit with an error if there were any.
2674e889921SJohn Baldwin.It Cm toolchains
2684e889921SJohn BaldwinCreate a build toolchain for each architecture supported by the build system.
269786aa69aSBen Smithurst.El
270786aa69aSBen Smithurst.Pp
2717b710ab2SJoseph KoshyKernel specific build targets in
272786aa69aSBen Smithurst.Pa /usr/src
2737b710ab2SJoseph Koshyare:
274e8423d00SNathan Whitehorn.Bl -tag -width ".Cm distributekernel"
2751caae057SRuslan Ermilov.It Cm buildkernel
2761caae057SRuslan ErmilovRebuild the kernel and the kernel modules.
2771caae057SRuslan Ermilov.It Cm installkernel
2787b710ab2SJoseph KoshyInstall the kernel and the kernel modules to directory
2797b710ab2SJoseph Koshy.Pa ${DESTDIR}/boot/kernel ,
2807b710ab2SJoseph Koshyrenaming any pre-existing directory with this name to
2817b710ab2SJoseph Koshy.Pa kernel.old
2827b710ab2SJoseph Koshyif it contained the currently running kernel.
2837b710ab2SJoseph KoshyThe target directory under
2847b710ab2SJoseph Koshy.Pa ${DESTDIR}
2857b710ab2SJoseph Koshymay be modified using the
2867b710ab2SJoseph Koshy.Va INSTKERNNAME
2877b710ab2SJoseph Koshyand
2887b710ab2SJoseph Koshy.Va KODIR
2897b710ab2SJoseph Koshy.Xr make 1
2907b710ab2SJoseph Koshyvariables.
291e8423d00SNathan Whitehorn.It Cm distributekernel
292e8423d00SNathan WhitehornInstall the kernel to the directory
293e8423d00SNathan Whitehorn.Pa ${DISTDIR}/kernel/boot/kernel .
294e8423d00SNathan WhitehornThis target is used while building a release; see
295e8423d00SNathan Whitehorn.Xr release 7 .
296e8423d00SNathan Whitehorn.It Cm packagekernel
297e8423d00SNathan WhitehornArchive the results of
298e8423d00SNathan Whitehorn.Cm distributekernel ,
299e8423d00SNathan Whitehornplacing the results in
300e8423d00SNathan Whitehorn.Va DISTDIR .
301e8423d00SNathan WhitehornThis target is used while building a release; see
302e8423d00SNathan Whitehorn.Xr release 7 .
303389e98a7STom Rhodes.It Cm kernel
304389e98a7STom RhodesEquivalent to
305389e98a7STom Rhodes.Cm buildkernel
306389e98a7STom Rhodesfollowed by
307389e98a7STom Rhodes.Cm installkernel
3087b710ab2SJoseph Koshy.It Cm kernel-toolchain
3097b710ab2SJoseph KoshyRebuild the tools needed for kernel compilation.
3107b710ab2SJoseph KoshyUse this if you did not do a
3117b710ab2SJoseph Koshy.Cm buildworld
3127b710ab2SJoseph Koshyfirst.
3137b710ab2SJoseph Koshy.It Cm reinstallkernel
3147b710ab2SJoseph KoshyReinstall the kernel and the kernel modules, overwriting the contents
3157b710ab2SJoseph Koshyof the target directory.
3167b710ab2SJoseph KoshyAs with the
3177b710ab2SJoseph Koshy.Cm installkernel
3187b710ab2SJoseph Koshytarget, the target directory can be specified using the
3197b710ab2SJoseph Koshy.Xr make 1
3207b710ab2SJoseph Koshyvariable
3217b710ab2SJoseph Koshy.Va INSTKERNNAME .
3227b710ab2SJoseph Koshy.El
3237b710ab2SJoseph Koshy.Pp
3247b710ab2SJoseph KoshyConvenience targets for cleaning up the install destination directory
3257b710ab2SJoseph Koshydenoted by variable
3267b710ab2SJoseph Koshy.Va DESTDIR
3277b710ab2SJoseph Koshyinclude:
3287b710ab2SJoseph Koshy.Bl -tag -width ".Cm delete-old-libs"
3297b710ab2SJoseph Koshy.It Cm check-old
330abfabbeaSMike PritchardPrint a list of old files and directories in the system.
331e2a36081SAlexander Leidinger.It Cm delete-old
332e2a36081SAlexander LeidingerDelete obsolete base system files and directories interactively.
33378ad5421SRuslan ErmilovWhen
33478ad5421SRuslan Ermilov.Li -DBATCH_DELETE_OLD_FILES
3357b710ab2SJoseph Koshyis specified at the command line, the delete operation will be
3367b710ab2SJoseph Koshynon-interactive.
337c8ef0ed5SRuslan ErmilovThe variables
3387b710ab2SJoseph Koshy.Va DESTDIR ,
3397b710ab2SJoseph Koshy.Va TARGET_ARCH
340c8ef0ed5SRuslan Ermilovand
341c8ef0ed5SRuslan Ermilov.Va TARGET
342c8ef0ed5SRuslan Ermilovshould be set as with
343c8ef0ed5SRuslan Ermilov.Dq Li "make installworld" .
344e2a36081SAlexander Leidinger.It Cm delete-old-libs
345e2a36081SAlexander LeidingerDelete obsolete base system libraries interactively.
3467b710ab2SJoseph KoshyThis target should only be used if no 3rd party software uses these
3477b710ab2SJoseph Koshylibraries.
34878ad5421SRuslan ErmilovWhen
34978ad5421SRuslan Ermilov.Li -DBATCH_DELETE_OLD_FILES
3507b710ab2SJoseph Koshyis specified at the command line, the delete operation will be
3517b710ab2SJoseph Koshynon-interactive.
352c8ef0ed5SRuslan ErmilovThe variables
3537b710ab2SJoseph Koshy.Va DESTDIR ,
3547b710ab2SJoseph Koshy.Va TARGET_ARCH
355c8ef0ed5SRuslan Ermilovand
356c8ef0ed5SRuslan Ermilov.Va TARGET
357c8ef0ed5SRuslan Ermilovshould be set as with
358c8ef0ed5SRuslan Ermilov.Dq Li "make installworld" .
359786aa69aSBen Smithurst.El
360b82e53e2SMurray Stokely.Sh ENVIRONMENT
3617b710ab2SJoseph KoshyVariables that influence all builds include:
3627b710ab2SJoseph Koshy.Bl -tag -width ".Va MAKEOBJDIRPREFIX"
363fea87c03SGiorgos Keramidas.It Va DEBUG_FLAGS
364fea87c03SGiorgos KeramidasDefines a set of debugging flags that will be used to build all userland
365fea87c03SGiorgos Keramidasbinaries under
366fea87c03SGiorgos Keramidas.Pa /usr/src .
367fea87c03SGiorgos KeramidasWhen
368fea87c03SGiorgos Keramidas.Va DEBUG_FLAGS
369fea87c03SGiorgos Keramidasis defined, the
370fea87c03SGiorgos Keramidas.Cm install
371fea87c03SGiorgos Keramidasand
372fea87c03SGiorgos Keramidas.Cm installworld
373fea87c03SGiorgos Keramidastargets install binaries from the current
374fea87c03SGiorgos Keramidas.Va MAKEOBJDIRPREFIX
375fea87c03SGiorgos Keramidaswithout stripping,
376fea87c03SGiorgos Keramidasso that debugging information is retained in the installed binaries.
3777b710ab2SJoseph Koshy.It Va DESTDIR
3787b710ab2SJoseph KoshyThe directory hierarchy prefix where built objects will be installed.
3797b710ab2SJoseph KoshyIf not set,
3807b710ab2SJoseph Koshy.Va DESTDIR
3817b710ab2SJoseph Koshydefaults to the empty string.
3827b710ab2SJoseph Koshy.It Va MAKEOBJDIRPREFIX
3837b710ab2SJoseph KoshyDefines the prefix for directory names in the tree of built objects.
3847b710ab2SJoseph KoshyDefaults to
3857b710ab2SJoseph Koshy.Pa /usr/obj
3867b710ab2SJoseph Koshyif not defined.
3877b710ab2SJoseph KoshyThis variable should only be set in the environment and not via
3887b710ab2SJoseph Koshy.Pa /etc/make.conf
3897b710ab2SJoseph Koshyor the command line.
3907b710ab2SJoseph Koshy.It Va NO_WERROR
3917b710ab2SJoseph KoshyIf defined, compiler warnings will not cause the build to halt,
3927b710ab2SJoseph Koshyeven if the makefile says otherwise.
39321edb039SAlexander Leidinger.It Va WITH_CTF
39421edb039SAlexander LeidingerIf defined, the build process will run the DTrace CTF conversion
39521edb039SAlexander Leidingertools on built objects.
3967b710ab2SJoseph Koshy.El
3977b710ab2SJoseph Koshy.Pp
3987b710ab2SJoseph KoshyAdditionally, builds in
3997b710ab2SJoseph Koshy.Pa /usr/src
4007b710ab2SJoseph Koshyare influenced by the following
4017b710ab2SJoseph Koshy.Xr make 1
4027b710ab2SJoseph Koshyvariables:
4037b710ab2SJoseph Koshy.Bl -tag -width ".Va SUBDIR_OVERRIDE"
404e6cdeeddSWarner Losh.It Va KERNCONF
405e6cdeeddSWarner LoshOverrides which kernel to build and install for the various kernel
406e6cdeeddSWarner Loshmake targets.
407e6cdeeddSWarner LoshIt defaults to
408e6cdeeddSWarner Losh.Cm GENERIC .
409e6cdeeddSWarner Losh.It Va KERNFAST
410e6cdeeddSWarner LoshIf set, the build target
411e6cdeeddSWarner Losh.Cm buildkernel
412e6cdeeddSWarner Loshdefaults to setting
413e6cdeeddSWarner Losh.Va NO_KERNELCLEAN ,
4146d50d5e4SWarner Losh.Va NO_KERNELCONFIG ,
4156d50d5e4SWarner Losh.Va NO_KERNELDEPEND
416e6cdeeddSWarner Loshand
4176d50d5e4SWarner Losh.Va NO_KERNELOBJ .
418e6cdeeddSWarner LoshWhen set to a value other than
419e6cdeeddSWarner Losh.Cm 1
420e6cdeeddSWarner Loshthen
421e6cdeeddSWarner Losh.Va KERNCONF
422e6cdeeddSWarner Loshis set to the value of
423e6cdeeddSWarner Losh.Va KERNFAST .
4247b710ab2SJoseph Koshy.It Va LOCAL_DIRS
425ca6a54ceSBryan DreweryIf set, this variable supplies a list of additional directories relative to
426ca6a54ceSBryan Drewerythe root of the source tree to build as part of the
427ca6a54ceSBryan Drewery.Cm everything
428ca6a54ceSBryan Drewerytarget.
429a0e6a013SBryan Drewery.It Va LOCAL_ITOOLS
430a0e6a013SBryan DreweryIf set, this variable supplies a list of additional tools that are used by the
431a0e6a013SBryan Drewery.Cm installworld
432a0e6a013SBryan Dreweryand
433a0e6a013SBryan Drewery.Cm distributeworld
434a0e6a013SBryan Drewerytargets.
435ca6a54ceSBryan Drewery.It Va LOCAL_LIB_DIRS
436ca6a54ceSBryan DreweryIf set, this variable supplies a list of additional directories relative to
437ca6a54ceSBryan Drewerythe root of the source tree to build as part of the
438ca6a54ceSBryan Drewery.Cm libraries
439ca6a54ceSBryan Drewerytarget.
440ca6a54ceSBryan Drewery.It Va LOCAL_MTREE
441ca6a54ceSBryan DreweryIf set, this variable supplies a list of additional mtrees relative to the
442ca6a54ceSBryan Dreweryroot of the source tree to use as part of the
443ca6a54ceSBryan Drewery.Cm hierarchy
444ca6a54ceSBryan Drewerytarget.
445ca6a54ceSBryan Drewery.It Va LOCAL_TOOL_DIRS
446ca6a54ceSBryan DreweryIf set, this variable supplies a list of additional directories relative to
447ca6a54ceSBryan Drewerythe root of the source tree to build as part of the
448ca6a54ceSBryan Drewery.Cm build-tools
449ca6a54ceSBryan Drewerytarget.
450170c2788SGlen Barber.It Va PORTS_MODULES
451170c2788SGlen BarberA list of ports with kernel modules that should be built and installed
452170c2788SGlen Barberas part of the
453170c2788SGlen Barber.Cm buildkernel
454170c2788SGlen Barberand
455170c2788SGlen Barber.Cm installkernel
456170c2788SGlen Barberprocess.
457170c2788SGlen Barber.Bd -literal -offset indent
458170c2788SGlen Barbermake PORTS_MODULES=emulators/kqemu-kmod kernel
459170c2788SGlen Barber.Ed
46042e7be20SEnji Cooper.It Va STRIPBIN
4613547290fSEnji CooperCommand to use at install time when stripping binaries.
4623547290fSEnji CooperBe sure to add any additional tools required to run
46342e7be20SEnji Cooper.Va STRIPBIN
4643547290fSEnji Cooperto the
4653547290fSEnji Cooper.Va LOCAL_ITOOLS
4663547290fSEnji Cooper.Xr make 1
4673547290fSEnji Coopervariable before running the
4683547290fSEnji Cooper.Cm distributeworld
4693547290fSEnji Cooperor
4703547290fSEnji Cooper.Cm installworld
4713547290fSEnji Coopertargets.
4723547290fSEnji CooperSee
4733547290fSEnji Cooper.Xr install 1
4743547290fSEnji Cooperfor more details.
4757b710ab2SJoseph Koshy.It Va SUBDIR_OVERRIDE
4767b710ab2SJoseph KoshyOverride the default list of sub-directories and only build the
4777b710ab2SJoseph Koshysub-directory named in this variable.
4787f1636b7SBryan DreweryIf combined with
4797f1636b7SBryan Drewery.Cm buildworld
4807f1636b7SBryan Drewerythen all libraries and includes, and some of the build tools will still build
4817f1636b7SBryan Dreweryas well.
4827f1636b7SBryan DreweryWhen combined with
4837f1636b7SBryan Drewery.Cm buildworld
4847f1636b7SBryan Dreweryit is necesarry to override
4857f1636b7SBryan Drewery.Va LOCAL_LIB_DIRS
4867f1636b7SBryan Drewerywith any custom directories containing libraries.
4877f1636b7SBryan DreweryThis allows building a subset of the system in the same way as
4887f1636b7SBryan Drewery.Cm buildworld
4897f1636b7SBryan Drewerydoes using its sysroot handling.
4907f1636b7SBryan DreweryThis variable can also be useful when debugging failed builds.
4917b710ab2SJoseph Koshy.Bd -literal -offset indent
4927b710ab2SJoseph Koshymake some-target SUBDIR_OVERRIDE=foo/bar
4937b710ab2SJoseph Koshy.Ed
4946f9ac6feSMurray Stokely.It Va TARGET
495b3a43ea3SMurray StokelyThe target hardware platform.
496365a17c0SMurray StokelyThis is analogous to the
4971caae057SRuslan Ermilov.Dq Nm uname Fl m
498b3a43ea3SMurray Stokelyoutput.
499b3a43ea3SMurray StokelyThis is necessary to cross-build some target architectures.
500b3a43ea3SMurray StokelyFor example, cross-building for PC98 machines requires
5011caae057SRuslan Ermilov.Va TARGET_ARCH Ns = Ns Li i386
502b3a43ea3SMurray Stokelyand
5031caae057SRuslan Ermilov.Va TARGET Ns = Ns Li pc98 .
5047b710ab2SJoseph KoshyIf not set,
5057b710ab2SJoseph Koshy.Va TARGET
5067b710ab2SJoseph Koshydefaults to the current hardware platform.
5077b710ab2SJoseph Koshy.It Va TARGET_ARCH
5087b710ab2SJoseph KoshyThe target machine processor architecture.
5097b710ab2SJoseph KoshyThis is analogous to the
5107b710ab2SJoseph Koshy.Dq Nm uname Fl p
5117b710ab2SJoseph Koshyoutput.
5127b710ab2SJoseph KoshySet this to cross-build for a different architecture.
5137b710ab2SJoseph KoshyIf not set,
5147b710ab2SJoseph Koshy.Va TARGET_ARCH
515531b260aSWarner Loshdefaults to the current machine architecture, unless
516531b260aSWarner Losh.Va TARGET
517531b260aSWarner Loshis also set, in which case it defaults to the appropriate
518531b260aSWarner Loshvalue for that platform.
519c22c7f86SWarner LoshTypically, one only needs to set
520c22c7f86SWarner Losh.Va TARGET .
5217b710ab2SJoseph Koshy.El
5227b710ab2SJoseph Koshy.Pp
5237b710ab2SJoseph KoshyBuilds under directory
524fd23b461SGiorgos Keramidas.Pa /usr/src
5257d6af40dSGlen Barberare also influenced by defining one or more of the following symbols,
526fd23b461SGiorgos Keramidasusing the
527fd23b461SGiorgos Keramidas.Fl D
528fd23b461SGiorgos Keramidasoption of
529fd23b461SGiorgos Keramidas.Xr make 1 :
530fd23b461SGiorgos Keramidas.Bl -tag -width ".Va -DNO_KERNELDEPEND"
531fd23b461SGiorgos Keramidas.It Va NO_CLEANDIR
532fd23b461SGiorgos KeramidasIf set, the build targets that clean parts of the object tree use the
533fd23b461SGiorgos Keramidasequivalent of
534fd23b461SGiorgos Keramidas.Dq make clean
535fd23b461SGiorgos Keramidasinstead of
536fd23b461SGiorgos Keramidas.Dq make cleandir .
537fd23b461SGiorgos Keramidas.It Va NO_CLEAN
538fd23b461SGiorgos KeramidasIf set, no object tree files are cleaned at all.
539fd23b461SGiorgos KeramidasSetting
540fd23b461SGiorgos Keramidas.Va NO_CLEAN
541fd23b461SGiorgos Keramidasimplies
542fd23b461SGiorgos Keramidas.Va NO_KERNELCLEAN ,
543fd23b461SGiorgos Keramidasso when
544fd23b461SGiorgos Keramidas.Va NO_CLEAN
545fd23b461SGiorgos Keramidasis set no kernel objects are cleaned either.
546fd23b461SGiorgos Keramidas.It Va NO_CTF
547fd23b461SGiorgos KeramidasIf set, the build process does not run the DTrace CTF conversion tools
548fd23b461SGiorgos Keramidason built objects.
549fd23b461SGiorgos Keramidas.It Va NO_SHARE
550fd23b461SGiorgos KeramidasIf set, the build does not descend into the
551fd23b461SGiorgos Keramidas.Pa /usr/src/share
55250a994c9SWarren Blocksubdirectory (i.e., manpages, locale data files, timezone data files and
553fd23b461SGiorgos Keramidasother
554fd23b461SGiorgos Keramidas.Pa /usr/src/share
555fd23b461SGiorgos Keramidasfiles will not be rebuild from their sources).
556fd23b461SGiorgos Keramidas.It Va NO_KERNELCLEAN
557fd23b461SGiorgos KeramidasIf set, the build process does not run
558fd23b461SGiorgos Keramidas.Dq make clean
559fd23b461SGiorgos Keramidasas part of the
560fd23b461SGiorgos Keramidas.Cm buildkernel
561fd23b461SGiorgos Keramidastarget.
562fd23b461SGiorgos Keramidas.It Va NO_KERNELCONFIG
563fd23b461SGiorgos KeramidasIf set, the build process does not run
564fd23b461SGiorgos Keramidas.Xr config 8
565fd23b461SGiorgos Keramidasas part of the
566fd23b461SGiorgos Keramidas.Cm buildkernel
567fd23b461SGiorgos Keramidastarget.
568fd23b461SGiorgos Keramidas.It Va NO_KERNELDEPEND
569fd23b461SGiorgos KeramidasIf set, the build process does not run
570fd23b461SGiorgos Keramidas.Dq make depend
571fd23b461SGiorgos Keramidasas part of the
572fd23b461SGiorgos Keramidas.Cm buildkernel
573fd23b461SGiorgos Keramidastarget.
5746d50d5e4SWarner Losh.It Va NO_KERNELOBJ
5756d50d5e4SWarner LoshIf set, the build process does not run
5766d50d5e4SWarner Losh.Dq make obj
5776d50d5e4SWarner Loshas part of the
5786d50d5e4SWarner Losh.Cm buildkernel
5796d50d5e4SWarner Loshtarget.
580fd23b461SGiorgos Keramidas.It Va NO_DOCUPDATE
581fd23b461SGiorgos KeramidasIf set, the update process does not update the source of the
582fd23b461SGiorgos Keramidas.Fx
583fd23b461SGiorgos Keramidasdocumentation as part of the
584fd23b461SGiorgos Keramidas.Dq make update
585fd23b461SGiorgos Keramidastarget.
586fd23b461SGiorgos Keramidas.It Va NO_PORTSUPDATE
587fd23b461SGiorgos KeramidasIf set, the update process does not update the Ports tree as part of the
588fd23b461SGiorgos Keramidas.Dq make update
589fd23b461SGiorgos Keramidastarget.
59069c488cdSRuslan Ermilov.It Va NO_WWWUPDATE
59169c488cdSRuslan ErmilovIf set, the update process does not update the www tree as part of the
59269c488cdSRuslan Ermilov.Dq make update
59369c488cdSRuslan Ermilovtarget.
594fd23b461SGiorgos Keramidas.El
595fd23b461SGiorgos Keramidas.Pp
596fd23b461SGiorgos KeramidasBuilds under directory
5977b710ab2SJoseph Koshy.Pa /usr/doc
5987b710ab2SJoseph Koshyare influenced by the following
5997b710ab2SJoseph Koshy.Xr make 1
6007b710ab2SJoseph Koshyvariables:
6017b710ab2SJoseph Koshy.Bl -tag -width ".Va DOC_LANG"
6027b710ab2SJoseph Koshy.It Va DOC_LANG
6037b710ab2SJoseph KoshyIf set, restricts the documentation build to the language subdirectories
6047b710ab2SJoseph Koshyspecified as its content.
6057b710ab2SJoseph KoshyThe default action is to build documentation for all languages.
606b82e53e2SMurray Stokely.El
6074e889921SJohn Baldwin.Pp
6084e889921SJohn BaldwinBuilds using the
6094e889921SJohn Baldwin.Cm universe
6104e889921SJohn Baldwintarget are influenced by the following
6114e889921SJohn Baldwin.Xr make 1
6124e889921SJohn Baldwinvariables:
6134e889921SJohn Baldwin.Bl -tag -width ".Va MAKE_JUST_KERNELS"
6144e889921SJohn Baldwin.It Va JFLAG
6154e889921SJohn BaldwinPass the value of this variable to each
6164e889921SJohn Baldwin.Xr make 1
6174e889921SJohn Baldwininvocation used to build worlds and kernels.
6184e889921SJohn BaldwinThis can be used to enable multiple jobs within a single architecture's build
6194e889921SJohn Baldwinwhile still building each architecture serially.
6204e889921SJohn Baldwin.It Va MAKE_JUST_KERNELS
6214e889921SJohn BaldwinOnly build kernels for each supported architecture.
6224e889921SJohn Baldwin.It Va MAKE_JUST_WORLDS
6234e889921SJohn BaldwinOnly build worlds for each supported architecture.
6244e889921SJohn Baldwin.It Va UNIVERSE_TARGET
6254e889921SJohn BaldwinExecute the specified
6264e889921SJohn Baldwin.Xr make 1
6274e889921SJohn Baldwintarget for each supported architecture instead of the default action of
6284e889921SJohn Baldwinbuilding a world and one or more kernels.
6294e889921SJohn Baldwin.El
630786aa69aSBen Smithurst.Sh FILES
6310c0eb9beSRuslan Ermilov.Bl -tag -width ".Pa /usr/share/examples/etc/make.conf" -compact
632786aa69aSBen Smithurst.It Pa /usr/doc/Makefile
633786aa69aSBen Smithurst.It Pa /usr/doc/share/mk/doc.project.mk
634786aa69aSBen Smithurst.It Pa /usr/ports/Mk/bsd.port.mk
635786aa69aSBen Smithurst.It Pa /usr/ports/Mk/bsd.sites.mk
6361caae057SRuslan Ermilov.It Pa /usr/share/examples/etc/make.conf
6370c0eb9beSRuslan Ermilov.It Pa /usr/src/Makefile
6380c0eb9beSRuslan Ermilov.It Pa /usr/src/Makefile.inc1
6393136363fSRuslan Ermilov.El
6403faf5fc9SBen Smithurst.Sh EXAMPLES
641be6a4760SRuslan ErmilovFor an
6423faf5fc9SBen Smithurst.Dq approved
6437b710ab2SJoseph Koshymethod of updating your system from the latest sources, please see the
644be6a4760SRuslan Ermilov.Sx COMMON ITEMS
645be6a4760SRuslan Ermilovsection in
646be6a4760SRuslan Ermilov.Pa src/UPDATING .
647b82e53e2SMurray Stokely.Pp
648b82e53e2SMurray StokelyThe following sequence of commands can be used to cross-build the
64962d06538SMaxim Konovalovsystem for the sparc64 architecture on an i386 host:
650b82e53e2SMurray Stokely.Bd -literal -offset indent
651b82e53e2SMurray Stokelycd /usr/src
652531b260aSWarner Loshmake TARGET=sparc64 buildworld
653531b260aSWarner Loshmake TARGET=sparc64 DESTDIR=/clients/sparc64 installworld
654b82e53e2SMurray Stokely.Ed
655786aa69aSBen Smithurst.Sh SEE ALSO
6567c20a493SBen Smithurst.Xr cc 1 ,
657786aa69aSBen Smithurst.Xr install 1 ,
658786aa69aSBen Smithurst.Xr make 1 ,
65950a994c9SWarren Block.Xr svn 1 ,
660786aa69aSBen Smithurst.Xr make.conf 5 ,
661157376baSJoseph Koshy.Xr src.conf 5 ,
662a81996b6SBen Smithurst.Xr ports 7 ,
663a54bda91SMurray Stokely.Xr release 7 ,
66461001d75STom Rhodes.Xr config 8 ,
66547f77d8cSBen Smithurst.Xr mergemaster 8 ,
666d732418bSWarren Block.Xr portsnap 8 ,
667a81996b6SBen Smithurst.Xr reboot 8 ,
66871b7fa12SEnji Cooper.Xr shutdown 8 ,
66971b7fa12SEnji Cooper.Xr tests 7
670786aa69aSBen Smithurst.Sh AUTHORS
671a63d6c94SBaptiste Daroussin.An Mike W. Meyer Aq Mt mwm@mired.org
672