]>
Commit | Line | Data |
---|---|---|
6cbdfb64 | 1 | # Makefile for buildroot |
ffde94bd | 2 | # |
15b26aee | 3 | # Copyright (C) 1999-2005 by Erik Andersen <[email protected]> |
e580ce84 | 4 | # Copyright (C) 2006-2014 by the Buildroot developers <[email protected]> |
8e928a83 | 5 | # Copyright (C) 2014-2019 by the Buildroot developers <[email protected]> |
ffde94bd | 6 | # |
08782ae7 | 7 | # This program is free software; you can redistribute it and/or modify |
2d523c23 EA |
8 | # it under the terms of the GNU General Public License as published by |
9 | # the Free Software Foundation; either version 2 of the License, or | |
10 | # (at your option) any later version. | |
ffde94bd | 11 | # |
2d523c23 EA |
12 | # This program is distributed in the hope that it will be useful, |
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
08782ae7 | 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
2d523c23 | 15 | # General Public License for more details. |
b30d673c | 16 | # |
2d523c23 EA |
17 | # You should have received a copy of the GNU General Public License |
18 | # along with this program; if not, write to the Free Software | |
19 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
3ad3d8a1 | 20 | # |
02bf5816 | 21 | |
2d523c23 EA |
22 | #-------------------------------------------------------------- |
23 | # Just run 'make menuconfig', configure stuff, then run 'make'. | |
24 | # You shouldn't need to mess with anything beyond this point... | |
25 | #-------------------------------------------------------------- | |
2d239bbe | 26 | |
6bb7430a AV |
27 | # Delete default rules. We don't use them. This saves a bit of time. |
28 | .SUFFIXES: | |
29 | ||
3f4c72c6 KVD |
30 | # we want bash as shell |
31 | SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ | |
32 | else if [ -x /bin/bash ]; then echo /bin/bash; \ | |
33 | else echo sh; fi; fi) | |
34 | ||
916e614b SM |
35 | # Set O variable if not already done on the command line; |
36 | # or avoid confusing packages that can use the O=<dir> syntax for out-of-tree | |
37 | # build by preventing it from being forwarded to sub-make calls. | |
38 | ifneq ("$(origin O)", "command line") | |
173135df | 39 | O := $(CURDIR)/output |
916e614b SM |
40 | endif |
41 | ||
42 | # Check if the current Buildroot execution meets all the pre-requisites. | |
43 | # If they are not met, Buildroot will actually do its job in a sub-make meeting | |
173135df | 44 | # its pre-requisites, which are: |
916e614b SM |
45 | # 1- Permissive enough umask: |
46 | # Wrong or too restrictive umask will prevent Buildroot and packages from | |
47 | # creating files and directories. | |
173135df SM |
48 | # 2- Absolute canonical CWD (i.e. $(CURDIR)): |
49 | # Otherwise, some packages will use CWD as-is, others will compute its | |
50 | # absolute canonical path. This makes harder tracking and fixing host | |
51 | # machine path leaks. | |
52 | # 3- Absolute canonical output location (i.e. $(O)): | |
53 | # For the same reason as the one for CWD. | |
54 | ||
55 | # Remove the trailing '/.' from $(O) as it can be added by the makefile wrapper | |
56 | # installed in the $(O) directory. | |
57 | # Also remove the trailing '/' the user can set when on the command line. | |
58 | override O := $(patsubst %/,%,$(patsubst %.,%,$(O))) | |
59 | # Make sure $(O) actually exists before calling realpath on it; this is to | |
60 | # avoid empty CANONICAL_O in case on non-existing entry. | |
61 | CANONICAL_O := $(shell mkdir -p $(O) >/dev/null 2>&1)$(realpath $(O)) | |
62 | ||
7007dc2b YM |
63 | # gcc fails to build when the srcdir contains a '@' |
64 | ifneq ($(findstring @,$(CANONICAL_O)),) | |
65 | $(error The build directory can not contain a '@') | |
66 | endif | |
67 | ||
173135df | 68 | CANONICAL_CURDIR = $(realpath $(CURDIR)) |
916e614b SM |
69 | |
70 | REQ_UMASK = 0022 | |
71 | ||
173135df SM |
72 | # Make sure O= is passed (with its absolute canonical path) everywhere the |
73 | # toplevel makefile is called back. | |
74 | EXTRAMAKEARGS := O=$(CANONICAL_O) | |
916e614b SM |
75 | |
76 | # Check Buildroot execution pre-requisites here. | |
173135df | 77 | ifneq ($(shell umask):$(CURDIR):$(O),$(REQ_UMASK):$(CANONICAL_CURDIR):$(CANONICAL_O)) |
1e9f6047 | 78 | .PHONY: _all $(MAKECMDGOALS) |
bee5745c | 79 | |
1e9f6047 GM |
80 | $(MAKECMDGOALS): _all |
81 | @: | |
bee5745c | 82 | |
1e9f6047 | 83 | _all: |
173135df SM |
84 | @umask $(REQ_UMASK) && \ |
85 | $(MAKE) -C $(CANONICAL_CURDIR) --no-print-directory \ | |
86 | $(MAKECMDGOALS) $(EXTRAMAKEARGS) | |
bee5745c | 87 | |
173135df | 88 | else # umask / $(CURDIR) / $(O) |
bee5745c | 89 | |
5309e2e1 YM |
90 | # This is our default rule, so must come first |
91 | all: | |
5f94c97a | 92 | .PHONY: all |
5309e2e1 | 93 | |
e5e8fae8 | 94 | # Set and export the version string |
9019189b | 95 | export BR2_VERSION := 2019.02-git |
9befe94b | 96 | # Actual time the release is cut (for reproducible builds) |
9089a9ff | 97 | BR2_VERSION_EPOCH = 1543701000 |
e5e8fae8 | 98 | |
2ac7da07 GZ |
99 | # Save running make version since it's clobbered by the make package |
100 | RUNNING_MAKE_VERSION := $(MAKE_VERSION) | |
101 | ||
0edfb24c | 102 | # Check for minimal make version (note: this check will break at make 10.x) |
c3e49d69 | 103 | MIN_MAKE_VERSION = 3.81 |
2ac7da07 GZ |
104 | ifneq ($(firstword $(sort $(RUNNING_MAKE_VERSION) $(MIN_MAKE_VERSION))),$(MIN_MAKE_VERSION)) |
105 | $(error You have make '$(RUNNING_MAKE_VERSION)' installed. GNU make >= $(MIN_MAKE_VERSION) is required) | |
0edfb24c TDS |
106 | endif |
107 | ||
6b1dd45b | 108 | # absolute path |
e0499940 | 109 | TOPDIR := $(CURDIR) |
c3e49d69 FP |
110 | CONFIG_CONFIG_IN = Config.in |
111 | CONFIG = support/kconfig | |
112 | DATE := $(shell date +%Y%m%d) | |
a0aef7c4 | 113 | |
8258df27 YM |
114 | # Compute the full local version string so packages can use it as-is |
115 | # Need to export it, so it can be got from environment in children (eg. mconf) | |
c3e49d69 | 116 | export BR2_VERSION_FULL := $(BR2_VERSION)$(shell $(TOPDIR)/support/scripts/setlocalversion) |
8258df27 | 117 | |
106dc755 | 118 | # List of targets and target patterns for which .config doesn't need to be read in |
c3e49d69 | 119 | noconfig_targets := menuconfig nconfig gconfig xconfig config oldconfig randconfig \ |
6eacea5a | 120 | defconfig %_defconfig allyesconfig allnoconfig alldefconfig syncconfig release \ |
6652770f | 121 | randpackageconfig allyespackageconfig allnopackageconfig \ |
1290241d | 122 | print-version olddefconfig distclean manual manual-% check-package |
9e250356 | 123 | |
256f142b TP |
124 | # Some global targets do not trigger a build, but are used to collect |
125 | # metadata, or do various checks. When such targets are triggered, | |
126 | # some packages should not do their configuration sanity | |
127 | # checks. Provide them a BR_BUILDING variable set to 'y' when we're | |
128 | # actually building and they should do their sanity checks. | |
129 | # | |
130 | # We're building in two situations: when MAKECMDGOALS is empty | |
131 | # (default target is to build), or when MAKECMDGOALS contains | |
132 | # something else than one of the nobuild_targets. | |
bf28a165 | 133 | nobuild_targets := source %-source \ |
472f0ae2 RJ |
134 | legal-info %-legal-info external-deps _external-deps \ |
135 | clean distclean help show-targets graph-depends \ | |
136 | %-graph-depends %-show-depends %-show-version \ | |
137 | graph-build graph-size list-defconfigs \ | |
138 | savedefconfig printvars | |
256f142b TP |
139 | ifeq ($(MAKECMDGOALS),) |
140 | BR_BUILDING = y | |
141 | else ifneq ($(filter-out $(nobuild_targets),$(MAKECMDGOALS)),) | |
142 | BR_BUILDING = y | |
143 | endif | |
144 | ||
5e3f8966 AV |
145 | # We call make recursively to build packages. The command-line overrides that |
146 | # are passed to Buildroot don't apply to those package build systems. In | |
147 | # particular, we don't want to pass down the O=<dir> option for out-of-tree | |
148 | # builds, because the value specified on the command line will not be correct | |
149 | # for packages. | |
150 | MAKEOVERRIDES := | |
151 | ||
242e0087 YM |
152 | # Include some helper macros and variables |
153 | include support/misc/utils.mk | |
f85f2de1 | 154 | |
0b1b2c47 | 155 | # Set variables related to in-tree or out-of-tree build. |
173135df SM |
156 | # Here, both $(O) and $(CURDIR) are absolute canonical paths. |
157 | ifeq ($(O),$(CURDIR)/output) | |
158 | CONFIG_DIR := $(CURDIR) | |
0b1b2c47 SM |
159 | NEED_WRAPPER = |
160 | else | |
161 | CONFIG_DIR := $(O) | |
c3e49d69 | 162 | NEED_WRAPPER = y |
39ca6d50 WW |
163 | endif |
164 | ||
bb335175 TDS |
165 | # bash prints the name of the directory on 'cd <dir>' if CDPATH is |
166 | # set, so unset it here to not cause problems. Notice that the export | |
6caa76db | 167 | # line doesn't affect the environment of $(shell ..) calls. |
c3e49d69 | 168 | export CDPATH := |
6caa76db DM |
169 | |
170 | BASE_DIR := $(CANONICAL_O) | |
bb335175 TDS |
171 | $(if $(BASE_DIR),, $(error output directory "$(O)" does not exist)) |
172 | ||
a4239f7f TP |
173 | |
174 | # Handling of BR2_EXTERNAL. | |
175 | # | |
176 | # The value of BR2_EXTERNAL is stored in .br-external in the output directory. | |
20cd4973 | 177 | # The location of the external.mk makefile fragments is computed in that file. |
6bd19ccf YM |
178 | # On subsequent invocations of make, this file is read in. BR2_EXTERNAL can |
179 | # still be overridden on the command line, therefore the file is re-created | |
180 | # every time make is run. | |
a4239f7f | 181 | |
6bd19ccf | 182 | BR2_EXTERNAL_FILE = $(BASE_DIR)/.br-external.mk |
a4239f7f | 183 | -include $(BR2_EXTERNAL_FILE) |
6bd19ccf YM |
184 | $(shell support/scripts/br2-external \ |
185 | -m -o '$(BR2_EXTERNAL_FILE)' $(BR2_EXTERNAL)) | |
186 | BR2_EXTERNAL_ERROR = | |
187 | include $(BR2_EXTERNAL_FILE) | |
188 | ifneq ($(BR2_EXTERNAL_ERROR),) | |
189 | $(error $(BR2_EXTERNAL_ERROR)) | |
a4239f7f TP |
190 | endif |
191 | ||
5b686a06 | 192 | # To make sure that the environment variable overrides the .config option, |
6768021c AV |
193 | # set this before including .config. |
194 | ifneq ($(BR2_DL_DIR),) | |
195 | DL_DIR := $(BR2_DL_DIR) | |
196 | endif | |
3901cb51 GZ |
197 | ifneq ($(BR2_CCACHE_DIR),) |
198 | BR_CACHE_DIR := $(BR2_CCACHE_DIR) | |
199 | endif | |
6768021c | 200 | |
f1fedbb2 YM |
201 | # Need that early, before we scan packages |
202 | # Avoids doing the $(or...) everytime | |
22d05901 | 203 | BR_GRAPH_OUT := $(or $(BR2_GRAPH_OUT),pdf) |
a4239f7f | 204 | |
c3e49d69 FP |
205 | BUILD_DIR := $(BASE_DIR)/build |
206 | BINARIES_DIR := $(BASE_DIR)/images | |
7e9870ce | 207 | BASE_TARGET_DIR := $(BASE_DIR)/target |
bb335175 TDS |
208 | # initial definition so that 'make clean' works for most users, even without |
209 | # .config. HOST_DIR will be overwritten later when .config is included. | |
c3e49d69 | 210 | HOST_DIR := $(BASE_DIR)/host |
4a9a21b9 | 211 | GRAPHS_DIR := $(BASE_DIR)/graphs |
c3e49d69 FP |
212 | |
213 | LEGAL_INFO_DIR = $(BASE_DIR)/legal-info | |
214 | REDIST_SOURCES_DIR_TARGET = $(LEGAL_INFO_DIR)/sources | |
215 | REDIST_SOURCES_DIR_HOST = $(LEGAL_INFO_DIR)/host-sources | |
216 | LICENSE_FILES_DIR_TARGET = $(LEGAL_INFO_DIR)/licenses | |
217 | LICENSE_FILES_DIR_HOST = $(LEGAL_INFO_DIR)/host-licenses | |
218 | LEGAL_MANIFEST_CSV_TARGET = $(LEGAL_INFO_DIR)/manifest.csv | |
219 | LEGAL_MANIFEST_CSV_HOST = $(LEGAL_INFO_DIR)/host-manifest.csv | |
c3e49d69 FP |
220 | LEGAL_WARNINGS = $(LEGAL_INFO_DIR)/.warnings |
221 | LEGAL_REPORT = $(LEGAL_INFO_DIR)/README | |
222 | ||
223 | BR2_CONFIG = $(CONFIG_DIR)/.config | |
2b0f4552 | 224 | |
a1b0651a US |
225 | # Pull in the user's configuration file |
226 | ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) | |
4113b3c3 | 227 | -include $(BR2_CONFIG) |
7521f373 | 228 | endif |
9741a49e | 229 | |
052fec0c TP |
230 | # Parallel execution of this Makefile is disabled because it changes |
231 | # the packages building order, that can be a problem for two reasons: | |
232 | # - If a package has an unspecified optional dependency and that | |
233 | # dependency is present when the package is built, it is used, | |
234 | # otherwise it isn't (but compilation happily proceeds) so the end | |
235 | # result will differ if the order is swapped due to parallel | |
236 | # building. | |
237 | # - Also changing the building order can be a problem if two packages | |
238 | # manipulate the same file in the target directory. | |
239 | # | |
240 | # Taking into account the above considerations, if you still want to execute | |
241 | # this top-level Makefile in parallel comment the ".NOTPARALLEL" line and | |
242 | # use the -j<jobs> option when building, e.g: | |
243 | # make -j$((`getconf _NPROCESSORS_ONLN`+1)) | |
244 | .NOTPARALLEL: | |
245 | ||
a5f3513b GC |
246 | # timezone and locale may affect build output |
247 | ifeq ($(BR2_REPRODUCIBLE),y) | |
3111f6a5 JP |
248 | export TZ = UTC |
249 | export LANG = C | |
250 | export LC_ALL = C | |
9b91b21d | 251 | export GZIP = -n |
a5f3513b GC |
252 | endif |
253 | ||
afc61c6e BRF |
254 | # To put more focus on warnings, be less verbose as default |
255 | # Use 'make V=1' to see the full commands | |
6bf9e233 MY |
256 | ifeq ("$(origin V)", "command line") |
257 | KBUILD_VERBOSE = $(V) | |
afc61c6e BRF |
258 | endif |
259 | ifndef KBUILD_VERBOSE | |
c3e49d69 | 260 | KBUILD_VERBOSE = 0 |
afc61c6e BRF |
261 | endif |
262 | ||
263 | ifeq ($(KBUILD_VERBOSE),1) | |
c3e49d69 | 264 | Q = |
1669b6ed | 265 | ifndef VERBOSE |
c3e49d69 | 266 | VERBOSE = 1 |
1669b6ed | 267 | endif |
30702986 | 268 | export VERBOSE |
afc61c6e | 269 | else |
c3e49d69 | 270 | Q = @ |
afc61c6e BRF |
271 | endif |
272 | ||
69f85924 | 273 | # kconfig uses CONFIG_SHELL |
c3e49d69 | 274 | CONFIG_SHELL := $(SHELL) |
69f85924 | 275 | |
474d39a1 | 276 | export SHELL CONFIG_SHELL Q KBUILD_VERBOSE |
afc61c6e BRF |
277 | |
278 | ifndef HOSTAR | |
c3e49d69 | 279 | HOSTAR := ar |
afc61c6e BRF |
280 | endif |
281 | ifndef HOSTAS | |
c3e49d69 | 282 | HOSTAS := as |
afc61c6e BRF |
283 | endif |
284 | ifndef HOSTCC | |
c3e49d69 FP |
285 | HOSTCC := gcc |
286 | HOSTCC := $(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc) | |
afc61c6e | 287 | endif |
c3e49d69 | 288 | HOSTCC_NOCCACHE := $(HOSTCC) |
afc61c6e | 289 | ifndef HOSTCXX |
c3e49d69 FP |
290 | HOSTCXX := g++ |
291 | HOSTCXX := $(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++) | |
afc61c6e | 292 | endif |
c3e49d69 | 293 | HOSTCXX_NOCCACHE := $(HOSTCXX) |
356133b4 | 294 | ifndef HOSTCPP |
c3e49d69 | 295 | HOSTCPP := cpp |
356133b4 | 296 | endif |
afc61c6e | 297 | ifndef HOSTLD |
c3e49d69 | 298 | HOSTLD := ld |
afc61c6e | 299 | endif |
0f9c5b11 | 300 | ifndef HOSTLN |
c3e49d69 | 301 | HOSTLN := ln |
0f9c5b11 | 302 | endif |
356133b4 | 303 | ifndef HOSTNM |
c3e49d69 | 304 | HOSTNM := nm |
356133b4 | 305 | endif |
f1f4451a | 306 | ifndef HOSTOBJCOPY |
c3e49d69 | 307 | HOSTOBJCOPY := objcopy |
f1f4451a TP |
308 | endif |
309 | ifndef HOSTRANLIB | |
c3e49d69 FP |
310 | HOSTRANLIB := ranlib |
311 | endif | |
312 | HOSTAR := $(shell which $(HOSTAR) || type -p $(HOSTAR) || echo ar) | |
313 | HOSTAS := $(shell which $(HOSTAS) || type -p $(HOSTAS) || echo as) | |
c3e49d69 FP |
314 | HOSTCPP := $(shell which $(HOSTCPP) || type -p $(HOSTCPP) || echo cpp) |
315 | HOSTLD := $(shell which $(HOSTLD) || type -p $(HOSTLD) || echo ld) | |
316 | HOSTLN := $(shell which $(HOSTLN) || type -p $(HOSTLN) || echo ln) | |
317 | HOSTNM := $(shell which $(HOSTNM) || type -p $(HOSTNM) || echo nm) | |
318 | HOSTOBJCOPY := $(shell which $(HOSTOBJCOPY) || type -p $(HOSTOBJCOPY) || echo objcopy) | |
319 | HOSTRANLIB := $(shell which $(HOSTRANLIB) || type -p $(HOSTRANLIB) || echo ranlib) | |
90605b8f | 320 | SED := $(shell which sed || type -p sed) -i -e |
54e93328 | 321 | |
a9847d14 | 322 | export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTLD |
17b66aff | 323 | export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE |
afc61c6e | 324 | |
91ea9331 YM |
325 | # Determine the userland we are running on. |
326 | # | |
327 | # Note that, despite its name, we are not interested in the actual | |
328 | # architecture name. This is mostly used to determine whether some | |
329 | # of the binary tools (e.g. pre-built external toolchains) can run | |
330 | # on the current host. So we need to know if the userland we're | |
331 | # running on can actually run those toolchains. | |
332 | # | |
333 | # For example, a 64-bit prebuilt toolchain will not run on a 64-bit | |
334 | # kernel if the userland is 32-bit (e.g. in a chroot for example). | |
335 | # | |
336 | # So, we extract the first part of the tuple the host gcc was | |
337 | # configured to generate code for; we assume this is our userland. | |
338 | # | |
86229d64 | 339 | export HOSTARCH := $(shell LC_ALL=C $(HOSTCC_NOCCACHE) -v 2>&1 | \ |
91ea9331 YM |
340 | sed -e '/^Target: \([^-]*\).*/!d' \ |
341 | -e 's//\1/' \ | |
342 | -e 's/i.86/x86/' \ | |
343 | -e 's/sun4u/sparc64/' \ | |
344 | -e 's/arm.*/arm/' \ | |
345 | -e 's/sa110/arm/' \ | |
346 | -e 's/ppc64/powerpc64/' \ | |
347 | -e 's/ppc/powerpc/' \ | |
348 | -e 's/macppc/powerpc/' \ | |
349 | -e 's/sh.*/sh/' ) | |
350 | ||
3950e69d YM |
351 | # When adding a new host gcc version in Config.in, |
352 | # update the HOSTCC_MAX_VERSION variable: | |
353 | HOSTCC_MAX_VERSION := 8 | |
354 | ||
355 | HOSTCC_VERSION := $(shell V=$$($(HOSTCC_NOCCACHE) --version | \ | |
356 | sed -n -r 's/^.* ([0-9]*)\.([0-9]*)\.([0-9]*)[ ]*.*/\1 \2/p'); \ | |
357 | [ "$${V%% *}" -le $(HOSTCC_MAX_VERSION) ] || V=$(HOSTCC_MAX_VERSION); \ | |
358 | printf "%s" "$${V}") | |
12825f7a AV |
359 | |
360 | # For gcc >= 5.x, we only need the major version. | |
361 | ifneq ($(firstword $(HOSTCC_VERSION)),4) | |
362 | HOSTCC_VERSION := $(firstword $(HOSTCC_VERSION)) | |
363 | endif | |
364 | ||
c2a9358b YM |
365 | ifeq ($(BR2_NEEDS_HOST_UTF8_LOCALE),y) |
366 | # First, we try to use the user's configured locale (as that's the | |
367 | # language they'd expect messages to be displayed), then we favour | |
368 | # a non language-specific locale like C.UTF-8 if one is available, | |
369 | # so we sort with the C locale to get it at the top. | |
370 | # This is guaranteed to not be empty, because of the check in | |
371 | # support/dependencies/dependencies.sh | |
372 | HOST_UTF8_LOCALE := $(shell \ | |
373 | ( echo $${LC_ALL:-$${LC_MESSAGES:-$${LANG}}}; \ | |
374 | locale -a 2>/dev/null | LC_ALL=C sort \ | |
375 | ) \ | |
376 | | grep -i -E 'utf-?8$$' \ | |
377 | | head -n 1) | |
378 | HOST_UTF8_LOCALE_ENV := LC_ALL=$(HOST_UTF8_LOCALE) | |
379 | endif | |
380 | ||
670cb306 | 381 | # Make sure pkg-config doesn't look outside the buildroot tree |
0515fe45 | 382 | HOST_PKG_CONFIG_PATH := $(PKG_CONFIG_PATH) |
670cb306 | 383 | unexport PKG_CONFIG_PATH |
4f607edf | 384 | unexport PKG_CONFIG_SYSROOT_DIR |
bdf472d5 | 385 | unexport PKG_CONFIG_LIBDIR |
670cb306 | 386 | |
91123a6f TP |
387 | # Having DESTDIR set in the environment confuses the installation |
388 | # steps of some packages. | |
389 | unexport DESTDIR | |
390 | ||
bed61a7b GZ |
391 | # Causes breakage with packages that needs host-ruby |
392 | unexport RUBYOPT | |
393 | ||
3ed0eada | 394 | include package/pkg-utils.mk |
ab6a6212 | 395 | include package/doc-asciidoc.mk |
3ed0eada | 396 | |
cfe511b2 | 397 | ifeq ($(BR2_HAVE_DOT_CONFIG),y) |
54e098e4 | 398 | |
95442bb3 | 399 | ################################################################################ |
2c649045 PK |
400 | # |
401 | # Hide troublesome environment variables from sub processes | |
402 | # | |
95442bb3 | 403 | ################################################################################ |
2c649045 PK |
404 | unexport CROSS_COMPILE |
405 | unexport ARCH | |
2bf3c166 | 406 | unexport CC |
376737d9 ND |
407 | unexport LD |
408 | unexport AR | |
2bf3c166 DN |
409 | unexport CXX |
410 | unexport CPP | |
344c5a20 | 411 | unexport RANLIB |
2bf3c166 DN |
412 | unexport CFLAGS |
413 | unexport CXXFLAGS | |
414 | unexport GREP_OPTIONS | |
f5437a65 | 415 | unexport TAR_OPTIONS |
12c9f7dd | 416 | unexport CONFIG_SITE |
32314b44 | 417 | unexport QMAKESPEC |
20ca008d | 418 | unexport TERMINFO |
6d3b9756 | 419 | unexport MACHINE |
2e32330c | 420 | unexport O |
6cff741e | 421 | unexport GCC_COLORS |
27bc59d4 | 422 | |
c3e49d69 | 423 | GNU_HOST_NAME := $(shell support/gnuconfig/config.guess) |
60281cbf | 424 | |
8a58e023 | 425 | PACKAGES := |
0ea851c0 | 426 | PACKAGES_ALL := |
acc706b7 | 427 | |
89464a96 | 428 | # silent mode requested? |
fffb68a8 | 429 | QUIET := $(if $(findstring s,$(filter-out --%,$(MAKEFLAGS))),-q) |
89464a96 | 430 | |
397fe5cc | 431 | # Strip off the annoying quoting |
c3e49d69 | 432 | ARCH := $(call qstrip,$(BR2_ARCH)) |
65e80a0b | 433 | |
c3e49d69 | 434 | KERNEL_ARCH := $(shell echo "$(ARCH)" | sed -e "s/-.*//" \ |
891973f5 | 435 | -e s/i.86/i386/ -e s/sun4u/sparc64/ \ |
f59aeca6 | 436 | -e s/arcle/arc/ \ |
8332ffab | 437 | -e s/arceb/arc/ \ |
891973f5 | 438 | -e s/arm.*/arm/ -e s/sa110/arm/ \ |
827ba465 | 439 | -e s/aarch64.*/arm64/ \ |
a818e29e | 440 | -e s/or1k/openrisc/ \ |
891973f5 | 441 | -e s/parisc64/parisc/ \ |
a426a919 | 442 | -e s/powerpc64.*/powerpc/ \ |
891973f5 | 443 | -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \ |
9b3d52b4 | 444 | -e s/riscv.*/riscv/ \ |
c220581c JD |
445 | -e s/sh.*/sh/ \ |
446 | -e s/microblazeel/microblaze/) | |
891973f5 | 447 | |
c3e49d69 FP |
448 | ZCAT := $(call qstrip,$(BR2_ZCAT)) |
449 | BZCAT := $(call qstrip,$(BR2_BZCAT)) | |
450 | XZCAT := $(call qstrip,$(BR2_XZCAT)) | |
f165032e | 451 | LZCAT := $(call qstrip,$(BR2_LZCAT)) |
c3e49d69 | 452 | TAR_OPTIONS = $(call qstrip,$(BR2_TAR_OPTIONS)) -xf |
397fe5cc | 453 | |
a2b4f7fb | 454 | # packages compiled for the host go here |
c3e49d69 | 455 | HOST_DIR := $(call qstrip,$(BR2_HOST_DIR)) |
397fe5cc | 456 | |
a86b626b TP |
457 | # The target directory is common to all packages, |
458 | # but there is one that is specific to each filesystem. | |
459 | TARGET_DIR = $(if $(ROOTFS),$(ROOTFS_$(ROOTFS)_TARGET_DIR),$(BASE_TARGET_DIR)) | |
460 | ||
91b4a452 AVEM |
461 | ifneq ($(HOST_DIR),$(BASE_DIR)/host) |
462 | HOST_DIR_SYMLINK = $(BASE_DIR)/host | |
463 | $(HOST_DIR_SYMLINK): $(BASE_DIR) | |
464 | ln -snf $(HOST_DIR) $(BASE_DIR)/host | |
465 | endif | |
466 | ||
caa329bf | 467 | # Quotes are needed for spaces and all in the original PATH content. |
4c8872d8 | 468 | BR_PATH = "$(HOST_DIR)/bin:$(HOST_DIR)/sbin:$(PATH)" |
caa329bf | 469 | |
9226a990 TP |
470 | # Location of a file giving a big fat warning that output/target |
471 | # should not be used as the root filesystem. | |
beef2b4a | 472 | TARGET_DIR_WARNING_FILE = $(TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM |
9226a990 | 473 | |
17b66aff | 474 | ifeq ($(BR2_CCACHE),y) |
11e8c900 | 475 | CCACHE = $(HOST_DIR)/bin/ccache |
3901cb51 | 476 | BR_CACHE_DIR ?= $(call qstrip,$(BR2_CCACHE_DIR)) |
e7ab4b49 | 477 | export BR_CACHE_DIR |
11e8c900 TP |
478 | HOSTCC = $(CCACHE) $(HOSTCC_NOCCACHE) |
479 | HOSTCXX = $(CCACHE) $(HOSTCXX_NOCCACHE) | |
792f1278 AV |
480 | else |
481 | export BR_NO_CCACHE | |
17b66aff TP |
482 | endif |
483 | ||
2b0f4552 YM |
484 | # Scripts in support/ or post-build scripts may need to reference |
485 | # these locations, so export them so it is easier to use | |
4113b3c3 | 486 | export BR2_CONFIG |
a5f3513b | 487 | export BR2_REPRODUCIBLE |
2b0f4552 YM |
488 | export TARGET_DIR |
489 | export STAGING_DIR | |
490 | export HOST_DIR | |
491 | export BINARIES_DIR | |
1300cb55 | 492 | export BASE_DIR |
2b0f4552 | 493 | |
95442bb3 | 494 | ################################################################################ |
7dcbbfbb BRF |
495 | # |
496 | # You should probably leave this stuff alone unless you know | |
497 | # what you are doing. | |
498 | # | |
95442bb3 | 499 | ################################################################################ |
7dcbbfbb | 500 | |
6547bced | 501 | all: world |
ffde94bd | 502 | |
ebcfa987 AVEM |
503 | # Include legacy before the other things, because package .mk files |
504 | # may rely on it. | |
ebcfa987 | 505 | include Makefile.legacy |
ebcfa987 | 506 | |
2de968f0 | 507 | include system/system.mk |
486253db | 508 | include package/Makefile.in |
bd0640a2 | 509 | # arch/arch.mk must be after package/Makefile.in because it may need to |
8efa2d8d | 510 | # complement variables defined therein, like BR_NO_CHECK_HASH_FOR. |
bd0640a2 | 511 | include arch/arch.mk |
a792668b TDS |
512 | include support/dependencies/dependencies.mk |
513 | ||
b9d2d4cb PS |
514 | include $(sort $(wildcard toolchain/*.mk)) |
515 | include $(sort $(wildcard toolchain/*/*.mk)) | |
acc706b7 | 516 | |
9b47146e JB |
517 | ifeq ($(BR2_REPRODUCIBLE),y) |
518 | # If SOURCE_DATE_EPOCH has not been set then use the commit date, or the last | |
519 | # release date if the source tree is not within a Git repository. | |
520 | # See: https://reproducible-builds.org/specs/source-date-epoch/ | |
49395dc0 | 521 | BR2_VERSION_GIT_EPOCH := $(shell $(GIT) log -1 --format=%at 2> /dev/null) |
9b47146e JB |
522 | export SOURCE_DATE_EPOCH ?= $(or $(BR2_VERSION_GIT_EPOCH),$(BR2_VERSION_EPOCH)) |
523 | endif | |
524 | ||
ee0246e1 TP |
525 | # Include the package override file if one has been provided in the |
526 | # configuration. | |
c3e49d69 | 527 | PACKAGE_OVERRIDE_FILE = $(call qstrip,$(BR2_PACKAGE_OVERRIDE_FILE)) |
ee0246e1 TP |
528 | ifneq ($(PACKAGE_OVERRIDE_FILE),) |
529 | -include $(PACKAGE_OVERRIDE_FILE) | |
530 | endif | |
531 | ||
741cbccb | 532 | include $(sort $(wildcard package/*/*.mk)) |
d06645d8 | 533 | |
64d8e9a0 | 534 | include boot/common.mk |
64d8e9a0 | 535 | include linux/linux.mk |
00b1ff61 | 536 | include fs/common.mk |
64d8e9a0 | 537 | |
20cd4973 YM |
538 | # If using a br2-external tree, the BR2_EXTERNAL_$(NAME)_PATH variables |
539 | # are also present in the .config file. Since .config is included after | |
540 | # we defined them in the Makefile, the values for those variables are | |
541 | # quoted. We just include the generated Makefile fragment .br2-external.mk | |
542 | # a third time, which will set those variables to the un-quoted values. | |
fc34cf77 YM |
543 | include $(BR2_EXTERNAL_FILE) |
544 | ||
64e12a37 | 545 | # Nothing to include if no BR2_EXTERNAL tree in use |
20cd4973 | 546 | include $(BR2_EXTERNAL_MKS) |
8eb8aaf9 | 547 | |
3e1b33a5 TP |
548 | # Now we are sure we have all the packages scanned and defined. We now |
549 | # check for each package in the list of enabled packages, that all its | |
550 | # dependencies are indeed enabled. | |
551 | # | |
552 | # Only trigger the check for default builds. If the user forces building | |
553 | # a package, even if not enabled in the configuration, we want to accept | |
bbf32a77 AD |
554 | # it. However; we also want to be able to force checking the dependencies |
555 | # if the user so desires. Forcing a dependency check is useful in the case | |
556 | # of test-pkg, as we want to make sure during testing, that a package has | |
557 | # all the dependencies selected in the config file. | |
3e1b33a5 TP |
558 | # |
559 | ifeq ($(MAKECMDGOALS),) | |
bbf32a77 AD |
560 | BR_FORCE_CHECK_DEPENDENCIES = YES |
561 | endif | |
562 | ||
563 | ifeq ($(BR_FORCE_CHECK_DEPENDENCIES),YES) | |
3e1b33a5 TP |
564 | |
565 | define CHECK_ONE_DEPENDENCY | |
566 | ifeq ($$($(2)_TYPE),target) | |
567 | ifeq ($$($(2)_IS_VIRTUAL),) | |
568 | ifneq ($$($$($(2)_KCONFIG_VAR)),y) | |
569 | $$(error $$($(2)_NAME) is in the dependency chain of $$($(1)_NAME) that \ | |
570 | has added it to its _DEPENDENCIES variable without selecting it or \ | |
571 | depending on it from Config.in) | |
572 | endif | |
573 | endif | |
574 | endif | |
575 | endef | |
576 | ||
577 | $(foreach pkg,$(call UPPERCASE,$(PACKAGES)),\ | |
578 | $(foreach dep,$(call UPPERCASE,$($(pkg)_FINAL_ALL_DEPENDENCIES)),\ | |
579 | $(eval $(call CHECK_ONE_DEPENDENCY,$(pkg),$(dep))$(sep)))) | |
580 | ||
581 | endif | |
582 | ||
4113b3c3 | 583 | $(BUILD_DIR)/buildroot-config/auto.conf: $(BR2_CONFIG) |
6eacea5a | 584 | $(MAKE1) $(EXTRAMAKEARGS) HOSTCC="$(HOSTCC_NOCCACHE)" HOSTCXX="$(HOSTCXX_NOCCACHE)" syncconfig |
0b368800 | 585 | |
6ab14ff2 | 586 | .PHONY: prepare |
0b368800 TP |
587 | prepare: $(BUILD_DIR)/buildroot-config/auto.conf |
588 | ||
5f94c97a | 589 | .PHONY: world |
a2487758 | 590 | world: target-post-image |
2a786415 | 591 | |
c32ad51c YM |
592 | .PHONY: prepare-sdk |
593 | prepare-sdk: world | |
994301a2 WG |
594 | @$(call MESSAGE,"Rendering the SDK relocatable") |
595 | $(TOPDIR)/support/scripts/fix-rpath host | |
596 | $(TOPDIR)/support/scripts/fix-rpath staging | |
597 | $(INSTALL) -m 755 $(TOPDIR)/support/misc/relocate-sdk.sh $(HOST_DIR)/relocate-sdk.sh | |
6697f3bc | 598 | mkdir -p $(HOST_DIR)/share/buildroot |
994301a2 WG |
599 | echo $(HOST_DIR) > $(HOST_DIR)/share/buildroot/sdk-location |
600 | ||
c32ad51c YM |
601 | BR2_SDK_PREFIX ?= $(GNU_TARGET_NAME)_sdk-buildroot |
602 | .PHONY: sdk | |
603 | sdk: prepare-sdk $(BR2_TAR_HOST_DEPENDENCY) | |
604 | @$(call MESSAGE,"Generating SDK tarball") | |
605 | $(if $(BR2_SDK_PREFIX),,$(error BR2_SDK_PREFIX can not be empty)) | |
606 | $(Q)mkdir -p $(BINARIES_DIR) | |
607 | $(TAR) czf "$(BINARIES_DIR)/$(BR2_SDK_PREFIX).tar.gz" \ | |
608 | --owner=0 --group=0 --numeric-owner \ | |
609 | --transform='s#^\.#$(BR2_SDK_PREFIX)#' \ | |
610 | -C $(HOST_DIR) "." | |
611 | ||
7ad28656 TDS |
612 | RSYNC_VCS_EXCLUSIONS = \ |
613 | --exclude .svn --exclude .git --exclude .hg --exclude .bzr \ | |
614 | --exclude CVS | |
615 | ||
2a97045d TDS |
616 | STRIP_FIND_CMD = find $(TARGET_DIR) |
617 | ifneq (,$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) | |
618 | STRIP_FIND_CMD += \( $(call finddirclauses,$(TARGET_DIR),$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) \) -prune -o | |
619 | endif | |
12d15072 | 620 | STRIP_FIND_CMD += -type f \( -perm /111 -o -name '*.so*' \) |
06635916 TDS |
621 | # file exclusions: |
622 | # - libpthread.so: a non-stripped libpthread shared library is needed for | |
623 | # proper debugging of pthread programs using gdb. | |
1edb4c51 | 624 | # - ld.so: a non-stripped dynamic linker library is needed for valgrind |
06635916 TDS |
625 | # - kernel modules (*.ko): do not function properly when stripped like normal |
626 | # applications and libraries. Normally kernel modules are already excluded | |
627 | # by the executable permission check above, so the explicit exclusion is only | |
628 | # done for kernel modules with incorrect permissions. | |
1edb4c51 | 629 | STRIP_FIND_CMD += -not \( $(call findfileclauses,libpthread*.so* ld-*.so* *.ko $(call qstrip,$(BR2_STRIP_EXCLUDE_FILES))) \) -print0 |
2a97045d | 630 | |
28685d5f FP |
631 | ifeq ($(BR2_ECLIPSE_REGISTER),y) |
632 | define TOOLCHAIN_ECLIPSE_REGISTER | |
633 | ./support/scripts/eclipse-register-toolchain `readlink -f $(O)` \ | |
634 | $(notdir $(TARGET_CROSS)) $(BR2_ARCH) | |
635 | endef | |
636 | TARGET_FINALIZE_HOOKS += TOOLCHAIN_ECLIPSE_REGISTER | |
637 | endif | |
638 | ||
33de7401 FP |
639 | # Generate locale data. Basically, we call the localedef program |
640 | # (built by the host-localedef package) for each locale. The input | |
641 | # data comes preferably from the toolchain, or if the toolchain does | |
642 | # not have them (Linaro toolchains), we use the ones available on the | |
643 | # host machine. | |
644 | ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y) | |
404f4933 TP |
645 | GLIBC_GENERATE_LOCALES = $(call qstrip,$(BR2_GENERATE_LOCALE)) |
646 | ifneq ($(GLIBC_GENERATE_LOCALES),) | |
8a58e023 | 647 | PACKAGES += host-localedef |
33de7401 | 648 | |
404f4933 | 649 | define GENERATE_GLIBC_LOCALES |
33de7401 | 650 | $(Q)mkdir -p $(TARGET_DIR)/usr/lib/locale/ |
404f4933 | 651 | $(Q)for locale in $(GLIBC_GENERATE_LOCALES) ; do \ |
33de7401 FP |
652 | inputfile=`echo $${locale} | cut -f1 -d'.'` ; \ |
653 | charmap=`echo $${locale} | cut -f2 -d'.' -s` ; \ | |
654 | if test -z "$${charmap}" ; then \ | |
655 | charmap="UTF-8" ; \ | |
656 | fi ; \ | |
657 | echo "Generating locale $${inputfile}.$${charmap}" ; \ | |
658 | I18NPATH=$(STAGING_DIR)/usr/share/i18n:/usr/share/i18n \ | |
0f9c0bf3 | 659 | $(HOST_DIR)/bin/localedef \ |
33de7401 FP |
660 | --prefix=$(TARGET_DIR) \ |
661 | --$(call LOWERCASE,$(BR2_ENDIAN))-endian \ | |
662 | -i $${inputfile} -f $${charmap} \ | |
663 | $${locale} ; \ | |
664 | done | |
665 | endef | |
404f4933 | 666 | TARGET_FINALIZE_HOOKS += GENERATE_GLIBC_LOCALES |
33de7401 FP |
667 | endif |
668 | endif | |
669 | ||
58d82dda FP |
670 | ifeq ($(BR2_ENABLE_LOCALE_PURGE),y) |
671 | LOCALE_WHITELIST = $(BUILD_DIR)/locales.nopurge | |
672 | LOCALE_NOPURGE = $(call qstrip,$(BR2_ENABLE_LOCALE_WHITELIST)) | |
673 | ||
b791571c VB |
674 | # This piece of junk does the following: |
675 | # First collect the whitelist in a file. | |
676 | # Then go over all the locale dirs and for each subdir, check if it exists | |
677 | # in the whitelist file. If it doesn't, kill it. | |
678 | # Finally, specifically for X11, regenerate locale.dir from the whitelist. | |
8d384fa8 | 679 | define PURGE_LOCALES |
58d82dda | 680 | rm -f $(LOCALE_WHITELIST) |
201adefb | 681 | for i in $(LOCALE_NOPURGE) locale-archive; do echo $$i >> $(LOCALE_WHITELIST); done |
58d82dda | 682 | |
36480eab | 683 | for dir in $(wildcard $(addprefix $(TARGET_DIR),/usr/share/locale /usr/share/X11/locale /usr/lib/locale)); \ |
58d82dda | 684 | do \ |
805240ba | 685 | for langdir in $$dir/*; \ |
58d82dda | 686 | do \ |
bbe29b98 TP |
687 | if [ -e "$${langdir}" ]; \ |
688 | then \ | |
689 | grep -qx "$${langdir##*/}" $(LOCALE_WHITELIST) || rm -rf $$langdir; \ | |
690 | fi \ | |
58d82dda FP |
691 | done; \ |
692 | done | |
b791571c VB |
693 | if [ -d $(TARGET_DIR)/usr/share/X11/locale ]; \ |
694 | then \ | |
695 | for lang in $(LOCALE_NOPURGE); \ | |
696 | do \ | |
697 | if [ -f $(TARGET_DIR)/usr/share/X11/locale/$$lang/XLC_LOCALE ]; \ | |
698 | then \ | |
699 | echo "$$lang/XLC_LOCALE: $$lang"; \ | |
700 | fi \ | |
701 | done > $(TARGET_DIR)/usr/share/X11/locale/locale.dir; \ | |
702 | fi | |
58d82dda | 703 | endef |
8d384fa8 | 704 | TARGET_FINALIZE_HOOKS += PURGE_LOCALES |
58d82dda FP |
705 | endif |
706 | ||
d4c0c642 FP |
707 | $(TARGETS_ROOTFS): target-finalize |
708 | ||
2765973e YM |
709 | # Avoid the rootfs name leaking down the dependency chain |
710 | target-finalize: ROOTFS= | |
711 | ||
d0f4f95e TP |
712 | host-finalize: $(HOST_DIR_SYMLINK) |
713 | ||
714 | .PHONY: staging-finalize | |
715 | staging-finalize: | |
716 | @ln -snf $(STAGING_DIR) $(BASE_DIR)/staging | |
717 | ||
5f94c97a | 718 | .PHONY: target-finalize |
d0f4f95e | 719 | target-finalize: $(PACKAGES) host-finalize |
6f6a2cfd | 720 | @$(call MESSAGE,"Finalizing target directory") |
1b8ad2d0 YM |
721 | # Check files that are touched by more than one package |
722 | ./support/scripts/check-uniq-files -t target $(BUILD_DIR)/packages-file-list.txt | |
723 | ./support/scripts/check-uniq-files -t staging $(BUILD_DIR)/packages-file-list-staging.txt | |
724 | ./support/scripts/check-uniq-files -t host $(BUILD_DIR)/packages-file-list-host.txt | |
8d384fa8 | 725 | $(foreach hook,$(TARGET_FINALIZE_HOOKS),$($(hook))$(sep)) |
94d3aa17 | 726 | rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/share/aclocal \ |
df99efb3 LC |
727 | $(TARGET_DIR)/usr/lib/pkgconfig $(TARGET_DIR)/usr/share/pkgconfig \ |
728 | $(TARGET_DIR)/usr/lib/cmake $(TARGET_DIR)/usr/share/cmake | |
729 | find $(TARGET_DIR)/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f | |
179c5f1b | 730 | find $(TARGET_DIR)/lib/ $(TARGET_DIR)/usr/lib/ $(TARGET_DIR)/usr/libexec/ \ |
87f3edec | 731 | \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f |
e48a72e5 MS |
732 | ifneq ($(BR2_PACKAGE_GDB),y) |
733 | rm -rf $(TARGET_DIR)/usr/share/gdb | |
76d1c729 MH |
734 | endif |
735 | ifneq ($(BR2_PACKAGE_BASH),y) | |
736 | rm -rf $(TARGET_DIR)/usr/share/bash-completion | |
737 | endif | |
738 | ifneq ($(BR2_PACKAGE_ZSH),y) | |
739 | rm -rf $(TARGET_DIR)/usr/share/zsh | |
e48a72e5 | 740 | endif |
32faf351 | 741 | rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/man |
32faf351 | 742 | rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info |
87b0637b | 743 | rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc |
d701a823 | 744 | rm -rf $(TARGET_DIR)/usr/share/gtk-doc |
5b7013c4 | 745 | rmdir $(TARGET_DIR)/usr/share 2>/dev/null || true |
26f215d1 | 746 | $(STRIP_FIND_CMD) | xargs -0 $(STRIPCMD) 2>/dev/null || true |
8101c9a3 | 747 | |
6ae7886f RB |
748 | # See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads |
749 | # besides the one in which crash occurred; or SIGTRAP kills my program when | |
750 | # I set a breakpoint" | |
751 | ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y) | |
179c5f1b | 752 | find $(TARGET_DIR)/lib/ -type f -name 'libpthread*.so*' | \ |
52e7073a | 753 | xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG) |
6ae7886f RB |
754 | endif |
755 | ||
1edb4c51 PS |
756 | # Valgrind needs ld.so with enough information, so only strip |
757 | # debugging symbols. | |
179c5f1b | 758 | find $(TARGET_DIR)/lib/ -type f -name 'ld-*.so*' | \ |
1edb4c51 | 759 | xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG) |
9c407234 TP |
760 | test -f $(TARGET_DIR)/etc/ld.so.conf && \ |
761 | { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true | |
762 | test -d $(TARGET_DIR)/etc/ld.so.conf.d && \ | |
763 | { echo "ERROR: we shouldn't have a /etc/ld.so.conf.d directory"; exit 1; } || true | |
4ccde7fa | 764 | mkdir -p $(TARGET_DIR)/etc |
451a8878 PK |
765 | ( \ |
766 | echo "NAME=Buildroot"; \ | |
767 | echo "VERSION=$(BR2_VERSION_FULL)"; \ | |
768 | echo "ID=buildroot"; \ | |
769 | echo "VERSION_ID=$(BR2_VERSION)"; \ | |
770 | echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \ | |
5f2dc445 CL |
771 | ) > $(TARGET_DIR)/usr/lib/os-release |
772 | ln -sf ../usr/lib/os-release $(TARGET_DIR)/etc | |
912ea81a | 773 | |
5f4ca518 WG |
774 | @$(call MESSAGE,"Sanitizing RPATH in target tree") |
775 | $(TOPDIR)/support/scripts/fix-rpath target | |
776 | ||
e9b77128 LC |
777 | @$(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \ |
778 | $(call MESSAGE,"Copying overlay $(d)"); \ | |
0db34529 | 779 | rsync -a --ignore-times --keep-dirlinks $(RSYNC_VCS_EXCLUSIONS) \ |
361d3573 | 780 | --chmod=u=rwX,go=rX --exclude .empty --exclude '*~' \ |
e9b77128 | 781 | $(d)/ $(TARGET_DIR)$(sep)) |
7f860892 | 782 | |
dbf4978e | 783 | @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \ |
1b9b1685 | 784 | $(call MESSAGE,"Executing post-build script $(s)"); \ |
9806bf5a | 785 | $(EXTRA_ENV) $(s) $(TARGET_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep)) |
eed7d873 | 786 | |
bbe5c6da CL |
787 | touch $(TARGET_DIR)/usr |
788 | ||
5f94c97a | 789 | .PHONY: target-post-image |
d0f4f95e | 790 | target-post-image: $(TARGETS_ROOTFS) target-finalize staging-finalize |
543107d3 | 791 | @rm -f $(ROOTFS_COMMON_TAR) |
9fa32ba0 | 792 | @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_IMAGE_SCRIPT)), \ |
6d90a69f | 793 | $(call MESSAGE,"Executing post-image script $(s)"); \ |
9806bf5a | 794 | $(EXTRA_ENV) $(s) $(BINARIES_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep)) |
9fa32ba0 | 795 | |
5f94c97a | 796 | .PHONY: source |
17dcad06 | 797 | source: $(foreach p,$(PACKAGES),$(p)-all-source) |
08782ae7 | 798 | |
6ab14ff2 | 799 | .PHONY: _external-deps external-deps |
7e679ccb | 800 | _external-deps: $(foreach p,$(PACKAGES),$(p)-all-external-deps) |
155971e0 | 801 | external-deps: |
7e679ccb | 802 | @$(MAKE1) -Bs $(EXTRAMAKEARGS) _external-deps | sort -u |
155971e0 | 803 | |
5f94c97a | 804 | .PHONY: legal-info-clean |
7e76f904 LC |
805 | legal-info-clean: |
806 | @rm -fr $(LEGAL_INFO_DIR) | |
807 | ||
5f94c97a | 808 | .PHONY: legal-info-prepare |
7e76f904 | 809 | legal-info-prepare: $(LEGAL_INFO_DIR) |
719726af | 810 | @$(call MESSAGE,"Buildroot $(BR2_VERSION_FULL) Collecting legal info") |
0c45649c | 811 | @$(call legal-license-file,buildroot,buildroot,support/legal-info/buildroot.hash,COPYING,COPYING,HOST) |
e33ea1c9 MS |
812 | @$(call legal-manifest,TARGET,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,DEPENDENCIES WITH LICENSES) |
813 | @$(call legal-manifest,HOST,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,DEPENDENCIES WITH LICENSES) | |
8f149010 | 814 | @$(call legal-manifest,HOST,buildroot,$(BR2_VERSION_FULL),GPL-2.0+,COPYING,not saved,not saved) |
7e76f904 | 815 | @$(call legal-warning,the Buildroot source code has not been saved) |
4113b3c3 | 816 | @cp $(BR2_CONFIG) $(LEGAL_INFO_DIR)/buildroot.config |
7e76f904 | 817 | |
5f94c97a | 818 | .PHONY: legal-info |
d0f4f95e | 819 | legal-info: legal-info-clean legal-info-prepare $(foreach p,$(PACKAGES),$(p)-all-legal-info) \ |
858334c2 | 820 | $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST) |
7e76f904 LC |
821 | @cat support/legal-info/README.header >>$(LEGAL_REPORT) |
822 | @if [ -r $(LEGAL_WARNINGS) ]; then \ | |
823 | cat support/legal-info/README.warnings-header \ | |
824 | $(LEGAL_WARNINGS) >>$(LEGAL_REPORT); \ | |
825 | cat $(LEGAL_WARNINGS); fi | |
7e76f904 | 826 | @rm -f $(LEGAL_WARNINGS) |
7bfce06a YM |
827 | @(cd $(LEGAL_INFO_DIR); \ |
828 | find * -type f -exec sha256sum {} + | LC_ALL=C sort -k2 \ | |
829 | >.legal-info.sha256; \ | |
830 | mv .legal-info.sha256 legal-info.sha256) | |
831 | @echo "Legal info produced in $(LEGAL_INFO_DIR)" | |
7e76f904 | 832 | |
6ab14ff2 | 833 | .PHONY: show-targets |
b7d6c8ad | 834 | show-targets: |
203219ca | 835 | @echo $(sort $(PACKAGES)) $(sort $(TARGETS_ROOTFS)) |
b7d6c8ad | 836 | |
6ab14ff2 | 837 | .PHONY: show-build-order |
75fcebb7 YM |
838 | show-build-order: $(patsubst %,%-show-build-order,$(PACKAGES)) |
839 | ||
6ab14ff2 | 840 | .PHONY: graph-build |
e16bf922 | 841 | graph-build: $(O)/build/build-time.log |
4a9a21b9 | 842 | @install -d $(GRAPHS_DIR) |
e16bf922 YM |
843 | $(foreach o,name build duration,./support/scripts/graph-build-time \ |
844 | --type=histogram --order=$(o) --input=$(<) \ | |
4a9a21b9 | 845 | --output=$(GRAPHS_DIR)/build.hist-$(o).$(BR_GRAPH_OUT) \ |
8ae7838c | 846 | $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep)) |
e16bf922 YM |
847 | $(foreach t,packages steps,./support/scripts/graph-build-time \ |
848 | --type=pie-$(t) --input=$(<) \ | |
4a9a21b9 | 849 | --output=$(GRAPHS_DIR)/build.pie-$(t).$(BR_GRAPH_OUT) \ |
8ae7838c | 850 | $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep)) |
e16bf922 | 851 | |
6ab14ff2 | 852 | .PHONY: graph-depends-requirements |
d3c1c647 | 853 | graph-depends-requirements: |
664f2707 | 854 | @dot -? >/dev/null 2>&1 || \ |
d3c1c647 FP |
855 | { echo "ERROR: The 'dot' program from Graphviz is needed for graph-depends" >&2; exit 1; } |
856 | ||
6ab14ff2 | 857 | .PHONY: graph-depends |
d3c1c647 | 858 | graph-depends: graph-depends-requirements |
4a9a21b9 | 859 | @$(INSTALL) -d $(GRAPHS_DIR) |
56eb3944 | 860 | @cd "$(CONFIG_DIR)"; \ |
287a8828 | 861 | $(TOPDIR)/support/scripts/graph-depends $(BR2_GRAPH_DEPS_OPTS) \ |
2a2eb55c | 862 | --direct -o $(GRAPHS_DIR)/$(@).dot |
5e7020ef YM |
863 | dot $(BR2_GRAPH_DOT_OPTS) -T$(BR_GRAPH_OUT) \ |
864 | -o $(GRAPHS_DIR)/$(@).$(BR_GRAPH_OUT) \ | |
865 | $(GRAPHS_DIR)/$(@).dot | |
0cfe3ab8 | 866 | |
6ab14ff2 | 867 | .PHONY: graph-size |
24c75fbb TP |
868 | graph-size: |
869 | $(Q)mkdir -p $(GRAPHS_DIR) | |
870 | $(Q)$(TOPDIR)/support/scripts/size-stats --builddir $(BASE_DIR) \ | |
871 | --graph $(GRAPHS_DIR)/graph-size.$(BR_GRAPH_OUT) \ | |
872 | --file-size-csv $(GRAPHS_DIR)/file-size-stats.csv \ | |
873 | --package-size-csv $(GRAPHS_DIR)/package-size-stats.csv | |
874 | ||
6ab14ff2 | 875 | .PHONY: check-dependencies |
9dac9866 YM |
876 | check-dependencies: |
877 | @cd "$(CONFIG_DIR)"; \ | |
878 | $(TOPDIR)/support/scripts/graph-depends -C | |
879 | ||
cfe511b2 | 880 | else # ifeq ($(BR2_HAVE_DOT_CONFIG),y) |
2d523c23 | 881 | |
503439f9 AV |
882 | # Some subdirectories are also package names. To avoid that "make linux" |
883 | # on an unconfigured tree produces "Nothing to be done", add an explicit | |
884 | # rule for it. | |
c3493069 | 885 | # Also for 'all' we error out and ask the user to configure first. |
503439f9 | 886 | .PHONY: linux toolchain |
51825df3 | 887 | linux toolchain all: outputmakefile |
503439f9 AV |
888 | $(error Please configure Buildroot first (e.g. "make menuconfig")) |
889 | @exit 1 | |
890 | ||
1ed49963 AVEM |
891 | endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y) |
892 | ||
2d523c23 EA |
893 | # configuration |
894 | # --------------------------------------------------------------------------- | |
895 | ||
c3e49d69 | 896 | HOSTCFLAGS = $(CFLAGS_FOR_BUILD) |
c0d7d4e0 BRF |
897 | export HOSTCFLAGS |
898 | ||
9429e7b6 | 899 | .PHONY: prepare-kconfig |
4802db3d | 900 | prepare-kconfig: outputmakefile $(BUILD_DIR)/.br2-external.in |
9429e7b6 | 901 | |
2cc210c9 PK |
902 | $(BUILD_DIR)/buildroot-config/%onf: |
903 | mkdir -p $(@D)/lxdialog | |
0515fe45 BF |
904 | PKG_CONFIG_PATH="$(HOST_PKG_CONFIG_PATH)" $(MAKE) CC="$(HOSTCC_NOCCACHE)" HOSTCC="$(HOSTCC_NOCCACHE)" \ |
905 | obj=$(@D) -C $(CONFIG) -f Makefile.br $(@F) | |
2d523c23 | 906 | |
1ed49963 AVEM |
907 | DEFCONFIG = $(call qstrip,$(BR2_DEFCONFIG)) |
908 | ||
909 | # We don't want to fully expand BR2_DEFCONFIG here, so Kconfig will | |
910 | # recognize that if it's still at its default $(CONFIG_DIR)/defconfig | |
1039eb74 | 911 | COMMON_CONFIG_ENV = \ |
1ed49963 | 912 | BR2_DEFCONFIG='$(call qstrip,$(value BR2_DEFCONFIG))' \ |
1039eb74 TP |
913 | KCONFIG_AUTOCONFIG=$(BUILD_DIR)/buildroot-config/auto.conf \ |
914 | KCONFIG_AUTOHEADER=$(BUILD_DIR)/buildroot-config/autoconf.h \ | |
0b368800 | 915 | KCONFIG_TRISTATE=$(BUILD_DIR)/buildroot-config/tristate.config \ |
4113b3c3 | 916 | BR2_CONFIG=$(BR2_CONFIG) \ |
12825f7a | 917 | HOST_GCC_VERSION="$(HOSTCC_VERSION)" \ |
4802db3d | 918 | BUILD_DIR=$(BUILD_DIR) \ |
53903a15 | 919 | SKIP_LEGACY= |
2d523c23 | 920 | |
9429e7b6 | 921 | xconfig: $(BUILD_DIR)/buildroot-config/qconf prepare-kconfig |
610255e7 | 922 | @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN) |
b0df9df3 | 923 | |
9429e7b6 | 924 | gconfig: $(BUILD_DIR)/buildroot-config/gconf prepare-kconfig |
610255e7 | 925 | @$(COMMON_CONFIG_ENV) srctree=$(TOPDIR) $< $(CONFIG_CONFIG_IN) |
2b42aae7 | 926 | |
9429e7b6 | 927 | menuconfig: $(BUILD_DIR)/buildroot-config/mconf prepare-kconfig |
610255e7 | 928 | @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN) |
2d523c23 | 929 | |
9429e7b6 | 930 | nconfig: $(BUILD_DIR)/buildroot-config/nconf prepare-kconfig |
610255e7 | 931 | @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN) |
2d523c23 | 932 | |
9429e7b6 | 933 | config: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig |
1039eb74 | 934 | @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN) |
2d523c23 | 935 | |
53903a15 AV |
936 | # For the config targets that automatically select options, we pass |
937 | # SKIP_LEGACY=y to disable the legacy options. However, in that case | |
938 | # no values are set for the legacy options so a subsequent oldconfig | |
939 | # will query them. Therefore, run an additional olddefconfig. | |
940 | ||
dab80981 | 941 | randconfig allyesconfig alldefconfig allnoconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig |
2607051e | 942 | @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --$@ $(CONFIG_CONFIG_IN) |
53903a15 | 943 | @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null |
6652770f | 944 | |
2607051e | 945 | randpackageconfig allyespackageconfig allnopackageconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig |
4113b3c3 | 946 | @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg |
53903a15 | 947 | @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \ |
39ca6d50 | 948 | KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \ |
2607051e | 949 | $< --$(subst package,,$@) $(CONFIG_CONFIG_IN) |
39ca6d50 | 950 | @rm -f $(CONFIG_DIR)/.config.nopkg |
53903a15 | 951 | @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null |
6652770f | 952 | |
6eacea5a | 953 | oldconfig syncconfig olddefconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig |
2607051e | 954 | @$(COMMON_CONFIG_ENV) $< --$@ $(CONFIG_CONFIG_IN) |
9db3b47e | 955 | |
9429e7b6 | 956 | defconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig |
1ed49963 | 957 | @$(COMMON_CONFIG_ENV) $< --defconfig$(if $(DEFCONFIG),=$(DEFCONFIG)) $(CONFIG_CONFIG_IN) |
2d523c23 | 958 | |
666edc7a | 959 | define percent_defconfig |
32babbf9 | 960 | # Override the BR2_DEFCONFIG from COMMON_CONFIG_ENV with the new defconfig |
9429e7b6 | 961 | %_defconfig: $(BUILD_DIR)/buildroot-config/conf $(1)/configs/%_defconfig prepare-kconfig |
666edc7a YM |
962 | @$$(COMMON_CONFIG_ENV) BR2_DEFCONFIG=$(1)/configs/$$@ \ |
963 | $$< --defconfig=$(1)/configs/$$@ $$(CONFIG_CONFIG_IN) | |
964 | endef | |
339e1c95 | 965 | $(eval $(foreach d,$(call reverse,$(TOPDIR) $(BR2_EXTERNAL_DIRS)),$(call percent_defconfig,$(d))$(sep))) |
ff9d6e30 | 966 | |
9429e7b6 | 967 | savedefconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig |
1ed49963 AVEM |
968 | @$(COMMON_CONFIG_ENV) $< \ |
969 | --savedefconfig=$(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig) \ | |
970 | $(CONFIG_CONFIG_IN) | |
f71a621d | 971 | @$(SED) '/BR2_DEFCONFIG=/d' $(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig) |
2d523c23 | 972 | |
1ed49963 | 973 | .PHONY: defconfig savedefconfig |
406053d5 | 974 | |
95442bb3 | 975 | ################################################################################ |
2d523c23 EA |
976 | # |
977 | # Cleanup and misc junk | |
978 | # | |
95442bb3 | 979 | ################################################################################ |
aefad531 | 980 | |
ca9a0b25 AVEM |
981 | # staging and target directories do NOT list these as |
982 | # dependencies anywhere else | |
3d020627 | 983 | $(BUILD_DIR) $(BASE_TARGET_DIR) $(HOST_DIR) $(BINARIES_DIR) $(LEGAL_INFO_DIR) $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST): |
ca9a0b25 AVEM |
984 | @mkdir -p $@ |
985 | ||
aefad531 YM |
986 | # outputmakefile generates a Makefile in the output directory, if using a |
987 | # separate output directory. This allows convenient use of make in the | |
988 | # output directory. | |
5f94c97a | 989 | .PHONY: outputmakefile |
aefad531 YM |
990 | outputmakefile: |
991 | ifeq ($(NEED_WRAPPER),y) | |
f082c7c5 | 992 | $(Q)$(TOPDIR)/support/scripts/mkmakefile $(TOPDIR) $(O) |
aefad531 YM |
993 | endif |
994 | ||
4802db3d YM |
995 | # Even though the target is a real file, we mark it as PHONY as we |
996 | # want it to be re-generated each time make is invoked, in case the | |
997 | # value of BR2_EXTERNAL is changed. | |
998 | .PHONY: $(BUILD_DIR)/.br2-external.in | |
999 | $(BUILD_DIR)/.br2-external.in: $(BUILD_DIR) | |
6bd19ccf | 1000 | $(Q)support/scripts/br2-external -k -o "$(@)" $(BR2_EXTERNAL) |
4802db3d | 1001 | |
376fda8f YM |
1002 | # printvars prints all the variables currently defined in our |
1003 | # Makefiles. Alternatively, if a non-empty VARS variable is passed, | |
1004 | # only the variables matching the make pattern passed in VARS are | |
1005 | # displayed. | |
5f94c97a | 1006 | .PHONY: printvars |
98b616d7 | 1007 | printvars: |
b8d0aadc TP |
1008 | @: |
1009 | $(foreach V, \ | |
376fda8f | 1010 | $(sort $(if $(VARS),$(filter $(VARS),$(.VARIABLES)),$(.VARIABLES))), \ |
98b616d7 ÉV |
1011 | $(if $(filter-out environment% default automatic, \ |
1012 | $(origin $V)), \ | |
ba636031 YM |
1013 | $(if $(QUOTED_VARS),\ |
1014 | $(info $V='$(subst ','\'',$(if $(RAW_VARS),$(value $V),$($V)))'), \ | |
1015 | $(info $V=$(if $(RAW_VARS),$(value $V),$($V)))))) | |
1016 | # ' Syntax colouring... | |
98b616d7 | 1017 | |
5f94c97a | 1018 | .PHONY: clean |
2d523c23 | 1019 | clean: |
7e9870ce | 1020 | rm -rf $(BASE_TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) $(HOST_DIR_SYMLINK) \ |
e0c60677 | 1021 | $(BUILD_DIR) $(BASE_DIR)/staging \ |
4a9a21b9 | 1022 | $(LEGAL_INFO_DIR) $(GRAPHS_DIR) |
2d523c23 | 1023 | |
5f94c97a | 1024 | .PHONY: distclean |
2d523c23 | 1025 | distclean: clean |
171d4103 | 1026 | ifeq ($(O),$(CURDIR)/output) |
406053d5 PK |
1027 | rm -rf $(O) |
1028 | endif | |
e76b4fd1 | 1029 | rm -rf $(TOPDIR)/dl $(BR2_CONFIG) $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/..config.tmp \ |
f8c0e45d | 1030 | $(CONFIG_DIR)/.auto.deps $(BR2_EXTERNAL_FILE) |
2d523c23 | 1031 | |
5f94c97a | 1032 | .PHONY: help |
a49b81ed | 1033 | help: |
e491fba2 | 1034 | @echo 'Cleaning:' |
406053d5 | 1035 | @echo ' clean - delete all files created by build' |
e491fba2 BRF |
1036 | @echo ' distclean - delete all non-source files (including .config)' |
1037 | @echo | |
1038 | @echo 'Build:' | |
1039 | @echo ' all - make world' | |
2a786415 | 1040 | @echo ' toolchain - build toolchain' |
994301a2 | 1041 | @echo ' sdk - build relocatable SDK' |
e491fba2 BRF |
1042 | @echo |
1043 | @echo 'Configuration:' | |
1044 | @echo ' menuconfig - interactive curses-based configurator' | |
15f5bef0 | 1045 | @echo ' nconfig - interactive ncurses-based configurator' |
c48bbb8c | 1046 | @echo ' xconfig - interactive Qt-based configurator' |
2b42aae7 | 1047 | @echo ' gconfig - interactive GTK-based configurator' |
e491fba2 | 1048 | @echo ' oldconfig - resolve any unresolved symbols in .config' |
6eacea5a PV |
1049 | @echo ' syncconfig - Same as oldconfig, but quietly, additionally update deps' |
1050 | @echo ' olddefconfig - Same as syncconfig but sets new symbols to their default value' | |
c48bbb8c | 1051 | @echo ' randconfig - New config with random answer to all options' |
27aa7ae6 AVEM |
1052 | @echo ' defconfig - New config with default answer to all options;' |
1053 | @echo ' BR2_DEFCONFIG, if set on the command line, is used as input' | |
5c1a75c0 | 1054 | @echo ' savedefconfig - Save current config to BR2_DEFCONFIG (minimal config)' |
c48bbb8c PK |
1055 | @echo ' allyesconfig - New config where all options are accepted with yes' |
1056 | @echo ' allnoconfig - New config where all options are answered with no' | |
dab80981 | 1057 | @echo ' alldefconfig - New config where all options are set to default' |
6652770f PK |
1058 | @echo ' randpackageconfig - New config with random answer to package options' |
1059 | @echo ' allyespackageconfig - New config where pkg options are accepted with yes' | |
1060 | @echo ' allnopackageconfig - New config where package options are answered with no' | |
b1e0b6d7 AV |
1061 | @echo |
1062 | @echo 'Package-specific:' | |
1063 | @echo ' <pkg> - Build and install <pkg> and all its dependencies' | |
1064 | @echo ' <pkg>-source - Only download the source files for <pkg>' | |
1065 | @echo ' <pkg>-extract - Extract <pkg> sources' | |
1066 | @echo ' <pkg>-patch - Apply patches to <pkg>' | |
1067 | @echo ' <pkg>-depends - Build <pkg>'\''s dependencies' | |
1068 | @echo ' <pkg>-configure - Build <pkg> up to the configure step' | |
1069 | @echo ' <pkg>-build - Build <pkg> up to the build step' | |
56cf5612 YM |
1070 | @echo ' <pkg>-show-depends - List packages on which <pkg> depends' |
1071 | @echo ' <pkg>-show-rdepends - List packages which have <pkg> as a dependency' | |
ca9b17a2 GR |
1072 | @echo ' <pkg>-show-recursive-depends' |
1073 | @echo ' - Recursively list packages on which <pkg> depends' | |
1074 | @echo ' <pkg>-show-recursive-rdepends' | |
1075 | @echo ' - Recursively list packages which have <pkg> as a dependency' | |
b1e0b6d7 | 1076 | @echo ' <pkg>-graph-depends - Generate a graph of <pkg>'\''s dependencies' |
2a2eb55c | 1077 | @echo ' <pkg>-graph-rdepends - Generate a graph of <pkg>'\''s reverse dependencies' |
b1e0b6d7 AV |
1078 | @echo ' <pkg>-dirclean - Remove <pkg> build directory' |
1079 | @echo ' <pkg>-reconfigure - Restart the build from the configure step' | |
1080 | @echo ' <pkg>-rebuild - Restart the build from the build step' | |
66a5fc74 YM |
1081 | $(foreach p,$(HELP_PACKAGES), \ |
1082 | @echo $(sep) \ | |
1083 | @echo '$($(p)_NAME):' $(sep) \ | |
1084 | $($(p)_HELP_CMDS)$(sep)) | |
8792cf9e TP |
1085 | @echo |
1086 | @echo 'Documentation:' | |
55ecab1b | 1087 | @echo ' manual - build manual in all formats' |
8792cf9e TP |
1088 | @echo ' manual-html - build manual in HTML' |
1089 | @echo ' manual-split-html - build manual in split HTML' | |
1090 | @echo ' manual-pdf - build manual in PDF' | |
462e9915 | 1091 | @echo ' manual-text - build manual in text' |
8792cf9e | 1092 | @echo ' manual-epub - build manual in ePub' |
e16bf922 | 1093 | @echo ' graph-build - generate graphs of the build times' |
0cfe3ab8 | 1094 | @echo ' graph-depends - generate graph of the dependency tree' |
24c75fbb | 1095 | @echo ' graph-size - generate stats of the filesystem size' |
de6377e8 | 1096 | @echo ' list-defconfigs - list all defconfigs (pre-configured minimal systems)' |
e491fba2 BRF |
1097 | @echo |
1098 | @echo 'Miscellaneous:' | |
1099 | @echo ' source - download all sources needed for offline-build' | |
155971e0 | 1100 | @echo ' external-deps - list external packages used' |
7e76f904 | 1101 | @echo ' legal-info - generate info about license compliance' |
ba636031 | 1102 | @echo ' printvars - dump all the internal variables' |
e491fba2 | 1103 | @echo |
15f5bef0 PK |
1104 | @echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build' |
1105 | @echo ' make O=dir - Locate all output files in "dir", including .config' | |
1106 | @echo | |
f42a580a AV |
1107 | @echo 'For further details, see README, generate the Buildroot manual, or consult' |
1108 | @echo 'it on-line at http://buildroot.org/docs.html' | |
1109 | @echo | |
1110 | ||
20cd4973 YM |
1111 | # List the defconfig files |
1112 | # $(1): base directory | |
1113 | # $(2): br2-external name, empty for bundled | |
1114 | define list-defconfigs | |
1115 | @first=true; \ | |
1116 | for defconfig in $(1)/configs/*_defconfig; do \ | |
1117 | [ -f "$${defconfig}" ] || continue; \ | |
1118 | if $${first}; then \ | |
1119 | if [ "$(2)" ]; then \ | |
49117c10 | 1120 | printf 'External configs in "$(call qstrip,$(2))":\n'; \ |
20cd4973 YM |
1121 | else \ |
1122 | printf "Built-in configs:\n"; \ | |
1123 | fi; \ | |
1124 | first=false; \ | |
1125 | fi; \ | |
1126 | defconfig="$${defconfig##*/}"; \ | |
1127 | printf " %-35s - Build for %s\n" "$${defconfig}" "$${defconfig%_defconfig}"; \ | |
1128 | done; \ | |
1129 | $${first} || printf "\n" | |
1130 | endef | |
1131 | ||
1132 | # We iterate over BR2_EXTERNAL_NAMES rather than BR2_EXTERNAL_DIRS, | |
1133 | # because we want to display the name of the br2-external tree. | |
5f94c97a | 1134 | .PHONY: list-defconfigs |
f42a580a | 1135 | list-defconfigs: |
20cd4973 YM |
1136 | $(call list-defconfigs,$(TOPDIR)) |
1137 | $(foreach name,$(BR2_EXTERNAL_NAMES),\ | |
49117c10 YM |
1138 | $(call list-defconfigs,$(BR2_EXTERNAL_$(name)_PATH),\ |
1139 | $(BR2_EXTERNAL_$(name)_DESC))$(sep)) | |
ba2e7e02 | 1140 | |
c3e49d69 | 1141 | release: OUT = buildroot-$(BR2_VERSION) |
0dca7065 | 1142 | |
134ab1ce PK |
1143 | # Create release tarballs. We need to fiddle a bit to add the generated |
1144 | # documentation to the git output | |
0dca7065 | 1145 | release: |
c6715b69 | 1146 | git archive --format=tar --prefix=$(OUT)/ HEAD > $(OUT).tar |
462e9915 | 1147 | $(MAKE) O=$(OUT) manual-html manual-text manual-pdf |
15cb9876 | 1148 | $(MAKE) O=$(OUT) manual-clean |
134ab1ce PK |
1149 | tar rf $(OUT).tar $(OUT) |
1150 | gzip -9 -c < $(OUT).tar > $(OUT).tar.gz | |
1151 | bzip2 -9 -c < $(OUT).tar > $(OUT).tar.bz2 | |
1152 | rm -rf $(OUT) $(OUT).tar | |
e62d2ecd | 1153 | |
2b91ab7a AVEM |
1154 | print-version: |
1155 | @echo $(BR2_VERSION_FULL) | |
1156 | ||
1290241d TP |
1157 | check-package: |
1158 | find $(TOPDIR) -type f \( -name '*.mk' -o -name '*.hash' -o -name 'Config.*' \) \ | |
1159 | -exec ./utils/check-package {} + | |
1160 | ||
b287ea6f TP |
1161 | .PHONY: .gitlab-ci.yml |
1162 | .gitlab-ci.yml: .gitlab-ci.yml.in | |
e7e30455 | 1163 | ./support/scripts/generate-gitlab-ci-yml $< > $@ |
4f863d77 | 1164 | |
b7285d00 | 1165 | include docs/manual/manual.mk |
b9d2d4cb | 1166 | -include $(foreach dir,$(BR2_EXTERNAL_DIRS),$(sort $(wildcard $(dir)/docs/*/*.mk))) |
8792cf9e | 1167 | |
6652770f | 1168 | .PHONY: $(noconfig_targets) |
bee5745c | 1169 | |
173135df | 1170 | endif #umask / $(CURDIR) / $(O) |