b02987fd279fa2194b1292de999c3eba489015ae
[dragonfly.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: src/share/man/man7/build.7,v 1.19.2.1 2002/03/18 08:33:02 murray Exp $
26 .\" $DragonFly: src/share/man/man7/build.7,v 1.17 2008/05/12 16:26:20 swildner Exp $
27 .\"
28 .Dd May 12, 2008
29 .Dt BUILD 7
30 .Os
31 .Sh NAME
32 .Nm build
33 .Nd information on how to build the system
34 .Sh DESCRIPTION
35 The source for the
36 .Dx
37 system and applications is located in
38 .Pa /usr/src .
39 This directory contains the
40 .Dq "base system"
41 sources, which is loosely defined as the things required to rebuild
42 the system to a useful state.
43 It also contains the source for the system documentation, including
44 manual pages.
45 Third party applications have to be built using the
46 .Xr pkgsrc 7
47 system.
48 The file
49 .Pa /usr/src/UPDATING
50 gives specifics on how to obtain the tree for building packages.
51 .Pp
52 The
53 .Xr make 1
54 command is used in
55 .Pa /usr/src
56 to build and install the things in that directory.
57 Issuing the
58 .Xr make 1
59 command in any directory or
60 subdirectory of those directories has the same effect as issuing the
61 same command in all subdirectories of that directory.
62 With no target specified, the things in that directory are just built.
63 The following list provides the names and actions for other targets:
64 .Bl -tag -width ".Cm install"
65 .It Cm clean
66 Removes any files created during the build process.
67 .It Cm install
68 Installs the results of the build for this directory.
69 .It Cm update
70 Gets updated sources as configured in
71 .Pa /etc/make.conf .
72 .El
73 .Pp
74 The other
75 .Pa /usr/src
76 make targets are:
77 .Bl -tag -width ".Cm reinstallkernel"
78 .It Cm buildworld
79 Rebuild everything but the kernel.
80 .It Cm quickworld
81 Same as
82 .Cm buildworld ,
83 but skip bootstrap, build and cross-build tool steps.
84 This target can be used for incremental upgrades once a full build of the
85 world has been done with
86 .Cm buildworld .
87 .It Cm realquickworld
88 Same as
89 .Cm quickworld ,
90 but also skip the depend step.
91 .It Cm crossworld
92 Just do the bootstrap, build and cross-build steps.
93 .It Cm installworld
94 Install everything built by
95 .Cm buildworld .
96 .It Cm world
97 .Cm buildworld +
98 .Cm installworld .
99 .It Cm buildkernel
100 Rebuild the kernel and the kernel-modules.
101 .It Cm nativekernel
102 Rebuild the kernel and the kernel-modules using native tools.
103 .It Cm quickkernel
104 Same as
105 .Cm buildkernel ,
106 but skip the depend step and do not clean out the
107 obj modules.
108 This target can be used for incremental upgrades once a full
109 build of the kernel has been done with
110 .Cm buildkernel .
111 .It Cm installkernel
112 Install the kernel and the kernel-modules.
113 .It Cm reinstallkernel
114 Reinstall the kernel and the kernel-modules.
115 .It Cm kernel
116 .Cm buildkernel +
117 .Cm installkernel .
118 .It Cm preupgrade
119 Perform certain upgrades that have to be done before
120 .Cm installworld .
121 .Cm installworld
122 will complain if they have not been done.
123 .It Cm upgrade
124 Upgrade the files in /etc and also setup the rest of the system for
125 the version of
126 .Dx
127 just installed.
128 .It Cm most
129 Build user commands, no libraries or include files.
130 .It Cm installmost
131 Install user commands, no libraries or include files.
132 .El
133 .Sh ENVIRONMENT
134 .Bl -tag -width ".Ev TARGET_ARCH"
135 .It Ev TARGET_ARCH
136 The target machine processor architecture.
137 This is analogous to the
138 .Dq Nm uname Fl p
139 output.
140 .\"Set this to cross-build for a different architecture.
141 .It Ev TARGET
142 The target hardware platform.
143 This is analogous to the
144 .Dq Nm uname Fl m
145 output.
146 .\"This is necessary to cross-build some target architectures.
147 .It Ev NO_WERROR
148 If defined, warnings will not cause the build to halt, even if the
149 makefile says otherwise.
150 .It Ev DESTDIR
151 An existing directory to be the root of
152 the hierarchy where the resulting binaries will be
153 installed (the default is
154 .Pa / ) .
155 .It Ev MAKEOBJDIRPREFIX
156 The directory hierarchy where the object files will be built (the default is
157 .Pa /usr/obj ) .
158 .It Ev __MAKE_CONF
159 Used to override the path of
160 .Xr make.conf 5
161 (the default is
162 .Pa /etc/make.conf ) .
163 .It Ev KERNCONF
164 The name of the kernel configuration file from which the kernel should
165 be built (the default is
166 .Li GENERIC ) .
167 .It Ev KERNCONFDIR
168 The directory where the kernel configuration files are kept (the default is
169 .Pa /usr/src/sys/config ) .
170 .El
171 .Sh FILES
172 .Bl -tag -width ".Pa /usr/src/share/doc/Makefile" -compact
173 .It Pa /etc/make.conf
174 .It Pa /etc/defaults/make.conf
175 .It Pa /usr/src/share/doc/Makefile
176 .It Pa /usr/src/Makefile
177 .It Pa /usr/src/Makefile.inc1
178 .El
179 .Sh EXAMPLES
180 The
181 .Dq approved
182 method of updating your system from the latest sources is:
183 .Bd -literal -offset indent
184 make buildworld
185 make buildkernel KERNCONF=FOO
186 make installkernel KERNCONF=FOO
187 make installworld
188 make upgrade
189 .Ed
190 .Pp
191 After running these commands a system reboot is required,
192 otherwise many programs which have been rebuilt (such as
193 .Xr ps 1 ,
194 .Xr top 1 ,
195 etc.) may not work with the old kernel which is still running.
196 .Sh CAVEATS
197 The build and install order in the
198 .Sx EXAMPLES
199 section enforces that the new kernel is installed before the new
200 world.
201 Sometimes it might be necessary to reboot the system between those two
202 steps.
203 In this case
204 .Dq Nm make Cm installworld
205 will tell you to do so.
206 .Sh SEE ALSO
207 .Xr cc 1 ,
208 .Xr install 1 ,
209 .Xr make 1 ,
210 .Xr wmake 1 ,
211 .Xr make.conf 5 ,
212 .Xr pkgsrc 7 ,
213 .Xr release 7 ,
214 .Xr config 8 ,
215 .Xr reboot 8 ,
216 .Xr shutdown 8
217 .Sh AUTHORS
218 .An -nosplit
219 .An Mike W. Meyer Aq mwm@mired.org
220 and
221 .An Sascha Wildner Aq swildner@gmail.com .