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