doc: fix spellings and typos
[dpdk.git] / doc / guides / prog_guide / dev_kit_root_make_help.rst
1 ..  BSD LICENSE
2     Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
3     All rights reserved.
4
5     Redistribution and use in source and binary forms, with or without
6     modification, are permitted provided that the following conditions
7     are met:
8
9     * Redistributions of source code must retain the above copyright
10     notice, this list of conditions and the following disclaimer.
11     * Redistributions in binary form must reproduce the above copyright
12     notice, this list of conditions and the following disclaimer in
13     the documentation and/or other materials provided with the
14     distribution.
15     * Neither the name of Intel Corporation nor the names of its
16     contributors may be used to endorse or promote products derived
17     from this software without specific prior written permission.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31 .. _Development_Kit_Root_Makefile_Help:
32
33 Development Kit Root Makefile Help
34 ==================================
35
36 The DPDK provides a root level Makefile with targets for configuration, building, cleaning, testing, installation and others.
37 These targets are explained in the following sections.
38
39 Configuration Targets
40 ---------------------
41
42 The configuration target requires the name of the target, which is specified using T=mytarget and it is mandatory.
43 The list of available targets are in $(RTE_SDK)/config (remove the defconfig _ prefix).
44
45 Configuration targets also support the specification of the name of the output directory, using O=mybuilddir.
46 This is an optional parameter, the default output directory is build.
47
48 *   Config
49
50     This will create a build directory, and generates a configuration from a template.
51     A Makefile is also created in the new build directory.
52
53     Example:
54
55     .. code-block:: console
56
57         make config O=mybuild T=x86_64-native-linuxapp-gcc
58
59 Build Targets
60 -------------
61
62 Build targets support the optional specification of the name of the output directory, using O=mybuilddir.
63 The default output directory is build.
64
65 *   all, build or just make
66
67     Build the DPDK in the output directory previously created by a make config.
68
69     Example:
70
71     .. code-block:: console
72
73         make O=mybuild
74
75 *   clean
76
77     Clean all objects created using make build.
78
79     Example:
80
81     .. code-block:: console
82
83         make clean O=mybuild
84
85 *   %_sub
86
87     Build a subdirectory only, without managing dependencies on other directories.
88
89     Example:
90
91     .. code-block:: console
92
93         make lib/librte_eal_sub O=mybuild
94
95 *   %_clean
96
97     Clean a subdirectory only.
98
99     Example:
100
101     .. code-block:: console
102
103         make lib/librte_eal_clean O=mybuild
104
105 Install Targets
106 ---------------
107
108 *   Install
109
110     Build the DPDK binary.
111     Actually, this builds each supported target in a separate directory.
112     The name of each directory is the name of the target.
113     The name of the targets to install can be optionally specified using T=mytarget.
114     The target name can contain wildcard \* characters.
115     The list of available targets are in $(RTE_SDK)/config (remove the defconfig\_ prefix).
116
117     Example:
118
119     .. code-block:: console
120
121         make install T=x86_64-*
122
123 *   Uninstall
124
125     Remove installed target directories.
126
127 Test Targets
128 ------------
129
130 *   test
131
132     Launch automatic tests for a build directory specified using O=mybuilddir.
133     It is optional, the default output directory is build.
134
135     Example:
136
137     .. code-block:: console
138
139         make test O=mybuild
140
141 *   testall
142
143     Launch automatic tests for all installed target directories (after a make install).
144     The name of the targets to test can be optionally specified using T=mytarget.
145     The target name can contain wildcard (\*) characters.
146     The list of available targets are in $(RTE_SDK)/config (remove the defconfig\_  prefix).
147
148     Examples:
149
150     .. code-block:: console
151
152         make testall, make testall T=x86_64-*
153
154 Documentation Targets
155 ---------------------
156
157 *   doc
158
159     Generate the Doxygen documentation (API, html and pdf).
160
161 *   doc-api-html
162
163     Generate the Doxygen API documentation in html.
164
165 *   doc-guides-html
166
167     Generate the guides documentation in html.
168
169 *   doc-guides-pdf
170
171     Generate the guides documentation in pdf.
172
173
174 Deps Targets
175 ------------
176
177 *   depdirs
178
179     This target is implicitly called by make config.
180     Typically, there is no need for a user to call it,
181     except if DEPDIRS-y variables have been updated in Makefiles.
182     It will generate the file  $(RTE_OUTPUT)/.depdirs.
183
184     Example:
185
186     .. code-block:: console
187
188         make depdirs O=mybuild
189
190 *   depgraph
191
192     This command generates a dot graph of dependencies.
193     It can be displayed to debug circular dependency issues, or just to understand the dependencies.
194
195     Example:
196
197     .. code-block:: console
198
199         make depgraph O=mybuild > /tmp/graph.dot && dotty /tmp/ graph.dot
200
201 Misc Targets
202 ------------
203
204 *   help
205
206     Show this help.
207
208 Other Useful Command-line Variables
209 -----------------------------------
210
211 The following variables can be specified on the command line:
212
213 *   V=
214
215     Enable verbose build (show full compilation command line, and some intermediate commands).
216
217 *   D=
218
219     Enable dependency debugging. This provides some useful information about why a target is built or not.
220
221 *   EXTRA_CFLAGS=, EXTRA_LDFLAGS=, EXTRA_ASFLAGS=, EXTRA_CPPFLAGS=
222
223     Append specific compilation, link or asm flags.
224
225 *   CROSS=
226
227     Specify a cross toolchain header that will prefix all gcc/binutils applications. This only works when using gcc.
228
229 Make in a Build Directory
230 -------------------------
231
232 All targets described above are called from the SDK root $(RTE_SDK).
233 It is possible to run the same Makefile targets inside the build directory.
234 For instance, the following command:
235
236 .. code-block:: console
237
238     cd $(RTE_SDK)
239     make config O=mybuild T=x86_64-native-linuxapp-gcc
240     make O=mybuild
241
242 is equivalent to:
243
244 .. code-block:: console
245
246     cd $(RTE_SDK)
247     make config O=mybuild T=x86_64-native-linuxapp-gcc
248     cd mybuild
249
250     # no need to specify O= now
251     make
252
253 Compiling for Debug
254 -------------------
255
256 To compile the DPDK and sample applications with debugging information included and the optimization level set to 0,
257 the EXTRA_CFLAGS environment variable should be set before compiling as follows:
258
259 .. code-block:: console
260
261     export EXTRA_CFLAGS='-O0 -g'
262
263 The DPDK and any user or sample applications can then be compiled in the usual way.
264 For example:
265
266 .. code-block:: console
267
268     make install T=x86_64-native-linuxapp-gcc make -C examples/<theapp>