]> Git Repo - buildroot-mgba.git/blame - Makefile
package/libebml: fix build with gcc 11
[buildroot-mgba.git] / Makefile
CommitLineData
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]>
6648cfc7 5# Copyright (C) 2014-2020 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
31SHELL := $(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.
38ifneq ("$(origin O)", "command line")
173135df 39O := $(CURDIR)/output
916e614b
SM
40endif
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.
58override 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.
61CANONICAL_O := $(shell mkdir -p $(O) >/dev/null 2>&1)$(realpath $(O))
62
7007dc2b
YM
63# gcc fails to build when the srcdir contains a '@'
64ifneq ($(findstring @,$(CANONICAL_O)),)
65$(error The build directory can not contain a '@')
66endif
67
173135df 68CANONICAL_CURDIR = $(realpath $(CURDIR))
916e614b
SM
69
70REQ_UMASK = 0022
71
173135df
SM
72# Make sure O= is passed (with its absolute canonical path) everywhere the
73# toplevel makefile is called back.
74EXTRAMAKEARGS := O=$(CANONICAL_O)
916e614b
SM
75
76# Check Buildroot execution pre-requisites here.
173135df 77ifneq ($(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 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
3d8df5aa 95export BR2_VERSION := 2021.08-rc1
9befe94b 96# Actual time the release is cut (for reproducible builds)
3d8df5aa 97BR2_VERSION_EPOCH = 1628024000
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 \
841ee767 128 print-version olddefconfig distclean manual manual-% check-package check-flake8
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 \
45f03959 144 savedefconfig update-defconfig printvars
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
1f187371
YM
232CPE_UPDATES_DIR = $(BASE_DIR)/cpe-updates
233
c3e49d69 234BR2_CONFIG = $(CONFIG_DIR)/.config
2b0f4552 235
a1b0651a
US
236# Pull in the user's configuration file
237ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
4113b3c3 238-include $(BR2_CONFIG)
7521f373 239endif
9741a49e 240
d9a4c0c7
TP
241ifeq ($(BR2_PER_PACKAGE_DIRECTORIES),)
242# Disable top-level parallel build if per-package directories is not
243# used. Indeed, per-package directories is necessary to guarantee
244# determinism and reproducibility with top-level parallel build.
052fec0c 245.NOTPARALLEL:
d9a4c0c7 246endif
052fec0c 247
a5f3513b
GC
248# timezone and locale may affect build output
249ifeq ($(BR2_REPRODUCIBLE),y)
3111f6a5
JP
250export TZ = UTC
251export LANG = C
252export LC_ALL = C
a5f3513b
GC
253endif
254
afc61c6e
BRF
255# To put more focus on warnings, be less verbose as default
256# Use 'make V=1' to see the full commands
6bf9e233
MY
257ifeq ("$(origin V)", "command line")
258 KBUILD_VERBOSE = $(V)
afc61c6e
BRF
259endif
260ifndef KBUILD_VERBOSE
c3e49d69 261 KBUILD_VERBOSE = 0
afc61c6e
BRF
262endif
263
264ifeq ($(KBUILD_VERBOSE),1)
c3e49d69 265 Q =
1669b6ed 266ifndef VERBOSE
c3e49d69 267 VERBOSE = 1
1669b6ed 268endif
30702986 269export VERBOSE
afc61c6e 270else
c3e49d69 271 Q = @
afc61c6e
BRF
272endif
273
69f85924 274# kconfig uses CONFIG_SHELL
c3e49d69 275CONFIG_SHELL := $(SHELL)
69f85924 276
474d39a1 277export SHELL CONFIG_SHELL Q KBUILD_VERBOSE
afc61c6e
BRF
278
279ifndef HOSTAR
c3e49d69 280HOSTAR := ar
afc61c6e
BRF
281endif
282ifndef HOSTAS
c3e49d69 283HOSTAS := as
afc61c6e
BRF
284endif
285ifndef HOSTCC
c3e49d69
FP
286HOSTCC := gcc
287HOSTCC := $(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc)
afc61c6e 288endif
c3e49d69 289HOSTCC_NOCCACHE := $(HOSTCC)
afc61c6e 290ifndef HOSTCXX
c3e49d69
FP
291HOSTCXX := g++
292HOSTCXX := $(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++)
afc61c6e 293endif
c3e49d69 294HOSTCXX_NOCCACHE := $(HOSTCXX)
356133b4 295ifndef HOSTCPP
c3e49d69 296HOSTCPP := cpp
356133b4 297endif
afc61c6e 298ifndef HOSTLD
c3e49d69 299HOSTLD := ld
afc61c6e 300endif
0f9c5b11 301ifndef HOSTLN
c3e49d69 302HOSTLN := ln
0f9c5b11 303endif
356133b4 304ifndef HOSTNM
c3e49d69 305HOSTNM := nm
356133b4 306endif
f1f4451a 307ifndef HOSTOBJCOPY
c3e49d69 308HOSTOBJCOPY := objcopy
f1f4451a
TP
309endif
310ifndef HOSTRANLIB
c3e49d69
FP
311HOSTRANLIB := ranlib
312endif
313HOSTAR := $(shell which $(HOSTAR) || type -p $(HOSTAR) || echo ar)
314HOSTAS := $(shell which $(HOSTAS) || type -p $(HOSTAS) || echo as)
c3e49d69
FP
315HOSTCPP := $(shell which $(HOSTCPP) || type -p $(HOSTCPP) || echo cpp)
316HOSTLD := $(shell which $(HOSTLD) || type -p $(HOSTLD) || echo ld)
317HOSTLN := $(shell which $(HOSTLN) || type -p $(HOSTLN) || echo ln)
318HOSTNM := $(shell which $(HOSTNM) || type -p $(HOSTNM) || echo nm)
319HOSTOBJCOPY := $(shell which $(HOSTOBJCOPY) || type -p $(HOSTOBJCOPY) || echo objcopy)
320HOSTRANLIB := $(shell which $(HOSTRANLIB) || type -p $(HOSTRANLIB) || echo ranlib)
90605b8f 321SED := $(shell which sed || type -p sed) -i -e
54e93328 322
a9847d14 323export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTLD
17b66aff 324export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
afc61c6e 325
91ea9331
YM
326# Determine the userland we are running on.
327#
328# Note that, despite its name, we are not interested in the actual
329# architecture name. This is mostly used to determine whether some
330# of the binary tools (e.g. pre-built external toolchains) can run
331# on the current host. So we need to know if the userland we're
332# running on can actually run those toolchains.
333#
334# For example, a 64-bit prebuilt toolchain will not run on a 64-bit
335# kernel if the userland is 32-bit (e.g. in a chroot for example).
336#
337# So, we extract the first part of the tuple the host gcc was
338# configured to generate code for; we assume this is our userland.
339#
86229d64 340export HOSTARCH := $(shell LC_ALL=C $(HOSTCC_NOCCACHE) -v 2>&1 | \
91ea9331
YM
341 sed -e '/^Target: \([^-]*\).*/!d' \
342 -e 's//\1/' \
343 -e 's/i.86/x86/' \
344 -e 's/sun4u/sparc64/' \
345 -e 's/arm.*/arm/' \
346 -e 's/sa110/arm/' \
347 -e 's/ppc64/powerpc64/' \
348 -e 's/ppc/powerpc/' \
349 -e 's/macppc/powerpc/' \
350 -e 's/sh.*/sh/' )
351
3950e69d
YM
352# When adding a new host gcc version in Config.in,
353# update the HOSTCC_MAX_VERSION variable:
1776190f 354HOSTCC_MAX_VERSION := 9
3950e69d
YM
355
356HOSTCC_VERSION := $(shell V=$$($(HOSTCC_NOCCACHE) --version | \
357 sed -n -r 's/^.* ([0-9]*)\.([0-9]*)\.([0-9]*)[ ]*.*/\1 \2/p'); \
358 [ "$${V%% *}" -le $(HOSTCC_MAX_VERSION) ] || V=$(HOSTCC_MAX_VERSION); \
359 printf "%s" "$${V}")
12825f7a
AV
360
361# For gcc >= 5.x, we only need the major version.
362ifneq ($(firstword $(HOSTCC_VERSION)),4)
363HOSTCC_VERSION := $(firstword $(HOSTCC_VERSION))
364endif
365
c2a9358b
YM
366ifeq ($(BR2_NEEDS_HOST_UTF8_LOCALE),y)
367# First, we try to use the user's configured locale (as that's the
368# language they'd expect messages to be displayed), then we favour
369# a non language-specific locale like C.UTF-8 if one is available,
370# so we sort with the C locale to get it at the top.
371# This is guaranteed to not be empty, because of the check in
372# support/dependencies/dependencies.sh
373HOST_UTF8_LOCALE := $(shell \
374 ( echo $${LC_ALL:-$${LC_MESSAGES:-$${LANG}}}; \
375 locale -a 2>/dev/null | LC_ALL=C sort \
376 ) \
377 | grep -i -E 'utf-?8$$' \
378 | head -n 1)
379HOST_UTF8_LOCALE_ENV := LC_ALL=$(HOST_UTF8_LOCALE)
380endif
381
670cb306 382# Make sure pkg-config doesn't look outside the buildroot tree
0515fe45 383HOST_PKG_CONFIG_PATH := $(PKG_CONFIG_PATH)
670cb306 384unexport PKG_CONFIG_PATH
4f607edf 385unexport PKG_CONFIG_SYSROOT_DIR
bdf472d5 386unexport PKG_CONFIG_LIBDIR
670cb306 387
91123a6f
TP
388# Having DESTDIR set in the environment confuses the installation
389# steps of some packages.
390unexport DESTDIR
391
bed61a7b
GZ
392# Causes breakage with packages that needs host-ruby
393unexport RUBYOPT
394
3ed0eada 395include package/pkg-utils.mk
ab6a6212 396include package/doc-asciidoc.mk
3ed0eada 397
cfe511b2 398ifeq ($(BR2_HAVE_DOT_CONFIG),y)
54e098e4 399
95442bb3 400################################################################################
2c649045
PK
401#
402# Hide troublesome environment variables from sub processes
403#
95442bb3 404################################################################################
2c649045
PK
405unexport CROSS_COMPILE
406unexport ARCH
2bf3c166 407unexport CC
376737d9
ND
408unexport LD
409unexport AR
2bf3c166
DN
410unexport CXX
411unexport CPP
344c5a20 412unexport RANLIB
2bf3c166
DN
413unexport CFLAGS
414unexport CXXFLAGS
415unexport GREP_OPTIONS
f5437a65 416unexport TAR_OPTIONS
12c9f7dd 417unexport CONFIG_SITE
32314b44 418unexport QMAKESPEC
20ca008d 419unexport TERMINFO
6d3b9756 420unexport MACHINE
2e32330c 421unexport O
6cff741e 422unexport GCC_COLORS
d3e535a8
TDS
423unexport PLATFORM
424unexport OS
27bc59d4 425
c3e49d69 426GNU_HOST_NAME := $(shell support/gnuconfig/config.guess)
60281cbf 427
8a58e023 428PACKAGES :=
0ea851c0 429PACKAGES_ALL :=
acc706b7 430
89464a96 431# silent mode requested?
fffb68a8 432QUIET := $(if $(findstring s,$(filter-out --%,$(MAKEFLAGS))),-q)
89464a96 433
397fe5cc 434# Strip off the annoying quoting
c3e49d69 435ARCH := $(call qstrip,$(BR2_ARCH))
65e80a0b 436
c3e49d69 437KERNEL_ARCH := $(shell echo "$(ARCH)" | sed -e "s/-.*//" \
891973f5 438 -e s/i.86/i386/ -e s/sun4u/sparc64/ \
f59aeca6 439 -e s/arcle/arc/ \
8332ffab 440 -e s/arceb/arc/ \
891973f5 441 -e s/arm.*/arm/ -e s/sa110/arm/ \
827ba465 442 -e s/aarch64.*/arm64/ \
b58a6bf7 443 -e s/nds32.*/nds32/ \
a818e29e 444 -e s/or1k/openrisc/ \
891973f5 445 -e s/parisc64/parisc/ \
a426a919 446 -e s/powerpc64.*/powerpc/ \
891973f5 447 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
9b3d52b4 448 -e s/riscv.*/riscv/ \
c220581c 449 -e s/sh.*/sh/ \
b9a31ea3 450 -e s/s390x/s390/ \
c220581c 451 -e s/microblazeel/microblaze/)
891973f5 452
c3e49d69
FP
453ZCAT := $(call qstrip,$(BR2_ZCAT))
454BZCAT := $(call qstrip,$(BR2_BZCAT))
455XZCAT := $(call qstrip,$(BR2_XZCAT))
f165032e 456LZCAT := $(call qstrip,$(BR2_LZCAT))
c3e49d69 457TAR_OPTIONS = $(call qstrip,$(BR2_TAR_OPTIONS)) -xf
397fe5cc 458
c4e6d5c8
TP
459ifeq ($(BR2_PER_PACKAGE_DIRECTORIES),y)
460HOST_DIR = $(if $(PKG),$(PER_PACKAGE_DIR)/$($(PKG)_NAME)/host,$(call qstrip,$(BR2_HOST_DIR)))
461TARGET_DIR = $(if $(ROOTFS),$(ROOTFS_$(ROOTFS)_TARGET_DIR),$(if $(PKG),$(PER_PACKAGE_DIR)/$($(PKG)_NAME)/target,$(BASE_TARGET_DIR)))
462else
c3e49d69 463HOST_DIR := $(call qstrip,$(BR2_HOST_DIR))
a86b626b 464TARGET_DIR = $(if $(ROOTFS),$(ROOTFS_$(ROOTFS)_TARGET_DIR),$(BASE_TARGET_DIR))
c4e6d5c8 465endif
a86b626b 466
91b4a452
AVEM
467ifneq ($(HOST_DIR),$(BASE_DIR)/host)
468HOST_DIR_SYMLINK = $(BASE_DIR)/host
7d38e58d 469$(HOST_DIR_SYMLINK): | $(BASE_DIR)
1b62227d 470 ln -snf $(HOST_DIR) $(HOST_DIR_SYMLINK)
91b4a452
AVEM
471endif
472
9b824423 473STAGING_DIR_SYMLINK = $(BASE_DIR)/staging
7d38e58d 474$(STAGING_DIR_SYMLINK): | $(BASE_DIR)
9b824423
TDS
475 ln -snf $(STAGING_DIR) $(STAGING_DIR_SYMLINK)
476
caa329bf 477# Quotes are needed for spaces and all in the original PATH content.
4c8872d8 478BR_PATH = "$(HOST_DIR)/bin:$(HOST_DIR)/sbin:$(PATH)"
caa329bf 479
9226a990
TP
480# Location of a file giving a big fat warning that output/target
481# should not be used as the root filesystem.
beef2b4a 482TARGET_DIR_WARNING_FILE = $(TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
9226a990 483
17b66aff 484ifeq ($(BR2_CCACHE),y)
11e8c900 485CCACHE = $(HOST_DIR)/bin/ccache
3901cb51 486BR_CACHE_DIR ?= $(call qstrip,$(BR2_CCACHE_DIR))
e7ab4b49 487export BR_CACHE_DIR
11e8c900
TP
488HOSTCC = $(CCACHE) $(HOSTCC_NOCCACHE)
489HOSTCXX = $(CCACHE) $(HOSTCXX_NOCCACHE)
792f1278
AV
490else
491export BR_NO_CCACHE
17b66aff
TP
492endif
493
2b0f4552
YM
494# Scripts in support/ or post-build scripts may need to reference
495# these locations, so export them so it is easier to use
4113b3c3 496export BR2_CONFIG
a5f3513b 497export BR2_REPRODUCIBLE
2b0f4552
YM
498export TARGET_DIR
499export STAGING_DIR
500export HOST_DIR
501export BINARIES_DIR
1300cb55 502export BASE_DIR
2b0f4552 503
95442bb3 504################################################################################
7dcbbfbb
BRF
505#
506# You should probably leave this stuff alone unless you know
507# what you are doing.
508#
95442bb3 509################################################################################
7dcbbfbb 510
6547bced 511all: world
ffde94bd 512
ebcfa987
AVEM
513# Include legacy before the other things, because package .mk files
514# may rely on it.
ebcfa987 515include Makefile.legacy
ebcfa987 516
2de968f0 517include system/system.mk
486253db 518include package/Makefile.in
bd0640a2 519# arch/arch.mk must be after package/Makefile.in because it may need to
8efa2d8d 520# complement variables defined therein, like BR_NO_CHECK_HASH_FOR.
bd0640a2 521include arch/arch.mk
a792668b
TDS
522include support/dependencies/dependencies.mk
523
b9d2d4cb
PS
524include $(sort $(wildcard toolchain/*.mk))
525include $(sort $(wildcard toolchain/*/*.mk))
acc706b7 526
9b47146e
JB
527ifeq ($(BR2_REPRODUCIBLE),y)
528# If SOURCE_DATE_EPOCH has not been set then use the commit date, or the last
529# release date if the source tree is not within a Git repository.
530# See: https://reproducible-builds.org/specs/source-date-epoch/
49395dc0 531BR2_VERSION_GIT_EPOCH := $(shell $(GIT) log -1 --format=%at 2> /dev/null)
9b47146e
JB
532export SOURCE_DATE_EPOCH ?= $(or $(BR2_VERSION_GIT_EPOCH),$(BR2_VERSION_EPOCH))
533endif
534
ee0246e1
TP
535# Include the package override file if one has been provided in the
536# configuration.
c3e49d69 537PACKAGE_OVERRIDE_FILE = $(call qstrip,$(BR2_PACKAGE_OVERRIDE_FILE))
ee0246e1
TP
538ifneq ($(PACKAGE_OVERRIDE_FILE),)
539-include $(PACKAGE_OVERRIDE_FILE)
540endif
541
741cbccb 542include $(sort $(wildcard package/*/*.mk))
d06645d8 543
64d8e9a0 544include boot/common.mk
64d8e9a0 545include linux/linux.mk
00b1ff61 546include fs/common.mk
64d8e9a0 547
20cd4973
YM
548# If using a br2-external tree, the BR2_EXTERNAL_$(NAME)_PATH variables
549# are also present in the .config file. Since .config is included after
550# we defined them in the Makefile, the values for those variables are
551# quoted. We just include the generated Makefile fragment .br2-external.mk
552# a third time, which will set those variables to the un-quoted values.
fc34cf77
YM
553include $(BR2_EXTERNAL_FILE)
554
64e12a37 555# Nothing to include if no BR2_EXTERNAL tree in use
20cd4973 556include $(BR2_EXTERNAL_MKS)
8eb8aaf9 557
3e1b33a5
TP
558# Now we are sure we have all the packages scanned and defined. We now
559# check for each package in the list of enabled packages, that all its
560# dependencies are indeed enabled.
561#
562# Only trigger the check for default builds. If the user forces building
563# a package, even if not enabled in the configuration, we want to accept
bbf32a77
AD
564# it. However; we also want to be able to force checking the dependencies
565# if the user so desires. Forcing a dependency check is useful in the case
566# of test-pkg, as we want to make sure during testing, that a package has
567# all the dependencies selected in the config file.
3e1b33a5
TP
568#
569ifeq ($(MAKECMDGOALS),)
bbf32a77
AD
570BR_FORCE_CHECK_DEPENDENCIES = YES
571endif
572
573ifeq ($(BR_FORCE_CHECK_DEPENDENCIES),YES)
3e1b33a5
TP
574
575define CHECK_ONE_DEPENDENCY
576ifeq ($$($(2)_TYPE),target)
577ifeq ($$($(2)_IS_VIRTUAL),)
578ifneq ($$($$($(2)_KCONFIG_VAR)),y)
579$$(error $$($(2)_NAME) is in the dependency chain of $$($(1)_NAME) that \
580has added it to its _DEPENDENCIES variable without selecting it or \
581depending on it from Config.in)
582endif
583endif
584endif
585endef
586
587$(foreach pkg,$(call UPPERCASE,$(PACKAGES)),\
588 $(foreach dep,$(call UPPERCASE,$($(pkg)_FINAL_ALL_DEPENDENCIES)),\
589 $(eval $(call CHECK_ONE_DEPENDENCY,$(pkg),$(dep))$(sep))))
590
591endif
592
4113b3c3 593$(BUILD_DIR)/buildroot-config/auto.conf: $(BR2_CONFIG)
6eacea5a 594 $(MAKE1) $(EXTRAMAKEARGS) HOSTCC="$(HOSTCC_NOCCACHE)" HOSTCXX="$(HOSTCXX_NOCCACHE)" syncconfig
0b368800 595
6ab14ff2 596.PHONY: prepare
0b368800
TP
597prepare: $(BUILD_DIR)/buildroot-config/auto.conf
598
5f94c97a 599.PHONY: world
a2487758 600world: target-post-image
2a786415 601
c32ad51c
YM
602.PHONY: prepare-sdk
603prepare-sdk: world
994301a2 604 @$(call MESSAGE,"Rendering the SDK relocatable")
c4e6d5c8
TP
605 PER_PACKAGE_DIR=$(PER_PACKAGE_DIR) $(TOPDIR)/support/scripts/fix-rpath host
606 PER_PACKAGE_DIR=$(PER_PACKAGE_DIR) $(TOPDIR)/support/scripts/fix-rpath staging
994301a2 607 $(INSTALL) -m 755 $(TOPDIR)/support/misc/relocate-sdk.sh $(HOST_DIR)/relocate-sdk.sh
6697f3bc 608 mkdir -p $(HOST_DIR)/share/buildroot
994301a2
WG
609 echo $(HOST_DIR) > $(HOST_DIR)/share/buildroot/sdk-location
610
c32ad51c
YM
611BR2_SDK_PREFIX ?= $(GNU_TARGET_NAME)_sdk-buildroot
612.PHONY: sdk
613sdk: prepare-sdk $(BR2_TAR_HOST_DEPENDENCY)
614 @$(call MESSAGE,"Generating SDK tarball")
615 $(if $(BR2_SDK_PREFIX),,$(error BR2_SDK_PREFIX can not be empty))
616 $(Q)mkdir -p $(BINARIES_DIR)
617 $(TAR) czf "$(BINARIES_DIR)/$(BR2_SDK_PREFIX).tar.gz" \
618 --owner=0 --group=0 --numeric-owner \
8fed1629
JC
619 --transform='s#^$(patsubst /%,%,$(HOST_DIR))#$(BR2_SDK_PREFIX)#' \
620 -C / $(patsubst /%,%,$(HOST_DIR))
c32ad51c 621
7ad28656
TDS
622RSYNC_VCS_EXCLUSIONS = \
623 --exclude .svn --exclude .git --exclude .hg --exclude .bzr \
624 --exclude CVS
625
e5e0f637
JK
626# When stripping, obey to BR2_STRIP_EXCLUDE_DIRS and
627# BR2_STRIP_EXCLUDE_FILES
628STRIP_FIND_COMMON_CMD = \
629 find $(TARGET_DIR) \
630 $(if $(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS)), \
631 \( $(call finddirclauses,$(TARGET_DIR),$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) \) \
632 -prune -o \
633 ) \
634 $(if $(call qstrip,$(BR2_STRIP_EXCLUDE_FILES)), \
635 -not \( $(call findfileclauses,$(call qstrip,$(BR2_STRIP_EXCLUDE_FILES))) \) )
636
637# Regular stripping for everything, except libpthread, ld-*.so and
638# kernel modules:
06635916
TDS
639# - libpthread.so: a non-stripped libpthread shared library is needed for
640# proper debugging of pthread programs using gdb.
1edb4c51 641# - ld.so: a non-stripped dynamic linker library is needed for valgrind
06635916
TDS
642# - kernel modules (*.ko): do not function properly when stripped like normal
643# applications and libraries. Normally kernel modules are already excluded
e5e0f637 644# by the executable permission check, so the explicit exclusion is only
06635916 645# done for kernel modules with incorrect permissions.
e5e0f637
JK
646STRIP_FIND_CMD = \
647 $(STRIP_FIND_COMMON_CMD) \
648 -type f \( -perm /111 -o -name '*.so*' \) \
649 -not \( $(call findfileclauses,libpthread*.so* ld-*.so* *.ko) \) \
650 -print0
651
652# Special stripping (only debugging symbols) for libpthread and ld-*.so.
653STRIP_FIND_SPECIAL_LIBS_CMD = \
654 $(STRIP_FIND_COMMON_CMD) \
655 \( -name 'ld-*.so*' -o -name 'libpthread*.so*' \) \
656 -print0
2a97045d 657
28685d5f
FP
658ifeq ($(BR2_ECLIPSE_REGISTER),y)
659define TOOLCHAIN_ECLIPSE_REGISTER
660 ./support/scripts/eclipse-register-toolchain `readlink -f $(O)` \
661 $(notdir $(TARGET_CROSS)) $(BR2_ARCH)
662endef
663TARGET_FINALIZE_HOOKS += TOOLCHAIN_ECLIPSE_REGISTER
664endif
665
6fbdf515 666# Generate locale data.
33de7401 667ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y)
404f4933
TP
668GLIBC_GENERATE_LOCALES = $(call qstrip,$(BR2_GENERATE_LOCALE))
669ifneq ($(GLIBC_GENERATE_LOCALES),)
8a58e023 670PACKAGES += host-localedef
33de7401 671
404f4933 672define GENERATE_GLIBC_LOCALES
6fbdf515
GM
673 $(MAKE) -f support/misc/gen-glibc-locales.mk \
674 ENDIAN=$(call LOWERCASE,$(BR2_ENDIAN)) \
675 LOCALES="$(GLIBC_GENERATE_LOCALES)" \
676 Q=$(Q)
33de7401 677endef
404f4933 678TARGET_FINALIZE_HOOKS += GENERATE_GLIBC_LOCALES
33de7401
FP
679endif
680endif
681
58d82dda
FP
682ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
683LOCALE_WHITELIST = $(BUILD_DIR)/locales.nopurge
684LOCALE_NOPURGE = $(call qstrip,$(BR2_ENABLE_LOCALE_WHITELIST))
685
b791571c
VB
686# This piece of junk does the following:
687# First collect the whitelist in a file.
688# Then go over all the locale dirs and for each subdir, check if it exists
689# in the whitelist file. If it doesn't, kill it.
690# Finally, specifically for X11, regenerate locale.dir from the whitelist.
8d384fa8 691define PURGE_LOCALES
f88d5f52 692 printf '%s\n' $(LOCALE_NOPURGE) locale-archive > $(LOCALE_WHITELIST)
58d82dda 693
658a80ec 694 for dir in $(addprefix $(TARGET_DIR),/usr/share/locale /usr/share/X11/locale /usr/lib/locale); \
58d82dda 695 do \
658a80ec 696 if [ ! -d $$dir ]; then continue; fi; \
805240ba 697 for langdir in $$dir/*; \
58d82dda 698 do \
bbe29b98
TP
699 if [ -e "$${langdir}" ]; \
700 then \
701 grep -qx "$${langdir##*/}" $(LOCALE_WHITELIST) || rm -rf $$langdir; \
702 fi \
58d82dda
FP
703 done; \
704 done
b791571c
VB
705 if [ -d $(TARGET_DIR)/usr/share/X11/locale ]; \
706 then \
707 for lang in $(LOCALE_NOPURGE); \
708 do \
709 if [ -f $(TARGET_DIR)/usr/share/X11/locale/$$lang/XLC_LOCALE ]; \
710 then \
711 echo "$$lang/XLC_LOCALE: $$lang"; \
712 fi \
713 done > $(TARGET_DIR)/usr/share/X11/locale/locale.dir; \
714 fi
58d82dda 715endef
8d384fa8 716TARGET_FINALIZE_HOOKS += PURGE_LOCALES
58d82dda
FP
717endif
718
d4c0c642
FP
719$(TARGETS_ROOTFS): target-finalize
720
2765973e
YM
721# Avoid the rootfs name leaking down the dependency chain
722target-finalize: ROOTFS=
723
aa1e7474
TP
724TARGET_DIR_FILES_LISTS = $(sort $(wildcard $(BUILD_DIR)/*/.files-list.txt))
725HOST_DIR_FILES_LISTS = $(sort $(wildcard $(BUILD_DIR)/*/.files-list-host.txt))
726STAGING_DIR_FILES_LISTS = $(sort $(wildcard $(BUILD_DIR)/*/.files-list-staging.txt))
727
c4e6d5c8
TP
728.PHONY: host-finalize
729host-finalize: $(PACKAGES) $(HOST_DIR) $(HOST_DIR_SYMLINK)
730 @$(call MESSAGE,"Finalizing host directory")
731 $(call per-package-rsync,$(sort $(PACKAGES)),host,$(HOST_DIR))
d0f4f95e
TP
732
733.PHONY: staging-finalize
9b824423 734staging-finalize: $(STAGING_DIR_SYMLINK)
d0f4f95e 735
5f94c97a 736.PHONY: target-finalize
c4e6d5c8 737target-finalize: $(PACKAGES) $(TARGET_DIR) host-finalize
6f6a2cfd 738 @$(call MESSAGE,"Finalizing target directory")
c4e6d5c8 739 $(call per-package-rsync,$(sort $(PACKAGES)),target,$(TARGET_DIR))
8d384fa8 740 $(foreach hook,$(TARGET_FINALIZE_HOOKS),$($(hook))$(sep))
94d3aa17 741 rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/share/aclocal \
df99efb3 742 $(TARGET_DIR)/usr/lib/pkgconfig $(TARGET_DIR)/usr/share/pkgconfig \
f08a7f3f
AN
743 $(TARGET_DIR)/usr/lib/cmake $(TARGET_DIR)/usr/share/cmake \
744 $(TARGET_DIR)/usr/doc
df99efb3 745 find $(TARGET_DIR)/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f
179c5f1b 746 find $(TARGET_DIR)/lib/ $(TARGET_DIR)/usr/lib/ $(TARGET_DIR)/usr/libexec/ \
f08a7f3f 747 \( -name '*.a' -o -name '*.la' -o -name '*.prl' \) -print0 | xargs -0 rm -f
e48a72e5
MS
748ifneq ($(BR2_PACKAGE_GDB),y)
749 rm -rf $(TARGET_DIR)/usr/share/gdb
76d1c729
MH
750endif
751ifneq ($(BR2_PACKAGE_BASH),y)
752 rm -rf $(TARGET_DIR)/usr/share/bash-completion
18072ecc 753 rm -rf $(TARGET_DIR)/etc/bash_completion.d
76d1c729
MH
754endif
755ifneq ($(BR2_PACKAGE_ZSH),y)
756 rm -rf $(TARGET_DIR)/usr/share/zsh
e48a72e5 757endif
32faf351 758 rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/man
32faf351 759 rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info
87b0637b 760 rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc
d701a823 761 rm -rf $(TARGET_DIR)/usr/share/gtk-doc
5b7013c4 762 rmdir $(TARGET_DIR)/usr/share 2>/dev/null || true
04e9a1ec
DM
763ifneq ($(BR2_ENABLE_DEBUG):$(BR2_STRIP_strip),y:)
764 rm -rf $(TARGET_DIR)/lib/debug $(TARGET_DIR)/usr/lib/debug
765endif
26f215d1 766 $(STRIP_FIND_CMD) | xargs -0 $(STRIPCMD) 2>/dev/null || true
e5e0f637 767 $(STRIP_FIND_SPECIAL_LIBS_CMD) | xargs -0 -r $(STRIPCMD) $(STRIP_STRIP_DEBUG) 2>/dev/null || true
8101c9a3 768
9c407234
TP
769 test -f $(TARGET_DIR)/etc/ld.so.conf && \
770 { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true
771 test -d $(TARGET_DIR)/etc/ld.so.conf.d && \
772 { echo "ERROR: we shouldn't have a /etc/ld.so.conf.d directory"; exit 1; } || true
4ccde7fa 773 mkdir -p $(TARGET_DIR)/etc
451a8878
PK
774 ( \
775 echo "NAME=Buildroot"; \
776 echo "VERSION=$(BR2_VERSION_FULL)"; \
777 echo "ID=buildroot"; \
778 echo "VERSION_ID=$(BR2_VERSION)"; \
779 echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \
5f2dc445
CL
780 ) > $(TARGET_DIR)/usr/lib/os-release
781 ln -sf ../usr/lib/os-release $(TARGET_DIR)/etc
912ea81a 782
5f4ca518 783 @$(call MESSAGE,"Sanitizing RPATH in target tree")
c4e6d5c8 784 PER_PACKAGE_DIR=$(PER_PACKAGE_DIR) $(TOPDIR)/support/scripts/fix-rpath target
5f4ca518 785
dc7c6487
CS
786# For a merged /usr, ensure that /lib, /bin and /sbin and their /usr
787# counterparts are appropriately setup as symlinks ones to the others.
788ifeq ($(BR2_ROOTFS_MERGED_USR),y)
789
5754d9c9
YM
790 $(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \
791 @$(call MESSAGE,"Sanity check in overlay $(d)")$(sep) \
792 $(Q)not_merged_dirs="$$(support/scripts/check-merged-usr.sh $(d))"; \
dc7c6487
CS
793 test -n "$$not_merged_dirs" && { \
794 echo "ERROR: The overlay in $(d) is not" \
795 "using a merged /usr for the following directories:" \
796 $$not_merged_dirs; \
797 exit 1; \
798 } || true$(sep))
799
800endif # merged /usr
801
5754d9c9
YM
802 $(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \
803 @$(call MESSAGE,"Copying overlay $(d)")$(sep) \
804 $(Q)$(call SYSTEM_RSYNC,$(d),$(TARGET_DIR))$(sep))
7f860892 805
18f6c261 806 $(Q)$(if $(TARGET_DIR_FILES_LISTS), \
aa1e7474 807 cat $(TARGET_DIR_FILES_LISTS)) > $(BUILD_DIR)/packages-file-list.txt
18f6c261 808 $(Q)$(if $(HOST_DIR_FILES_LISTS), \
aa1e7474 809 cat $(HOST_DIR_FILES_LISTS)) > $(BUILD_DIR)/packages-file-list-host.txt
18f6c261 810 $(Q)$(if $(STAGING_DIR_FILES_LISTS), \
aa1e7474 811 cat $(STAGING_DIR_FILES_LISTS)) > $(BUILD_DIR)/packages-file-list-staging.txt
509db3b8 812
5754d9c9
YM
813 $(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \
814 @$(call MESSAGE,"Executing post-build script $(s)")$(sep) \
815 $(Q)$(EXTRA_ENV) $(s) $(TARGET_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
d4d52d90
TDS
816
817 touch $(TARGET_DIR)/usr
818
5f94c97a 819.PHONY: target-post-image
d0f4f95e 820target-post-image: $(TARGETS_ROOTFS) target-finalize staging-finalize
543107d3 821 @rm -f $(ROOTFS_COMMON_TAR)
d57e7307 822 $(Q)mkdir -p $(BINARIES_DIR)
9fa32ba0 823 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_IMAGE_SCRIPT)), \
6d90a69f 824 $(call MESSAGE,"Executing post-image script $(s)"); \
9806bf5a 825 $(EXTRA_ENV) $(s) $(BINARIES_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
9fa32ba0 826
5f94c97a 827.PHONY: source
17dcad06 828source: $(foreach p,$(PACKAGES),$(p)-all-source)
08782ae7 829
6ab14ff2 830.PHONY: _external-deps external-deps
7e679ccb 831_external-deps: $(foreach p,$(PACKAGES),$(p)-all-external-deps)
155971e0 832external-deps:
7e679ccb 833 @$(MAKE1) -Bs $(EXTRAMAKEARGS) _external-deps | sort -u
155971e0 834
5f94c97a 835.PHONY: legal-info-clean
7e76f904
LC
836legal-info-clean:
837 @rm -fr $(LEGAL_INFO_DIR)
838
5f94c97a 839.PHONY: legal-info-prepare
7e76f904 840legal-info-prepare: $(LEGAL_INFO_DIR)
719726af 841 @$(call MESSAGE,"Buildroot $(BR2_VERSION_FULL) Collecting legal info")
0c45649c 842 @$(call legal-license-file,buildroot,buildroot,support/legal-info/buildroot.hash,COPYING,COPYING,HOST)
e33ea1c9
MS
843 @$(call legal-manifest,TARGET,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,DEPENDENCIES WITH LICENSES)
844 @$(call legal-manifest,HOST,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,DEPENDENCIES WITH LICENSES)
8f149010 845 @$(call legal-manifest,HOST,buildroot,$(BR2_VERSION_FULL),GPL-2.0+,COPYING,not saved,not saved)
7e76f904 846 @$(call legal-warning,the Buildroot source code has not been saved)
4113b3c3 847 @cp $(BR2_CONFIG) $(LEGAL_INFO_DIR)/buildroot.config
7e76f904 848
5f94c97a 849.PHONY: legal-info
d0f4f95e 850legal-info: legal-info-clean legal-info-prepare $(foreach p,$(PACKAGES),$(p)-all-legal-info) \
858334c2 851 $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST)
7e76f904
LC
852 @cat support/legal-info/README.header >>$(LEGAL_REPORT)
853 @if [ -r $(LEGAL_WARNINGS) ]; then \
854 cat support/legal-info/README.warnings-header \
855 $(LEGAL_WARNINGS) >>$(LEGAL_REPORT); \
856 cat $(LEGAL_WARNINGS); fi
7e76f904 857 @rm -f $(LEGAL_WARNINGS)
7bfce06a
YM
858 @(cd $(LEGAL_INFO_DIR); \
859 find * -type f -exec sha256sum {} + | LC_ALL=C sort -k2 \
860 >.legal-info.sha256; \
861 mv .legal-info.sha256 legal-info.sha256)
862 @echo "Legal info produced in $(LEGAL_INFO_DIR)"
7e76f904 863
6ab14ff2 864.PHONY: show-targets
b7d6c8ad 865show-targets:
203219ca 866 @echo $(sort $(PACKAGES)) $(sort $(TARGETS_ROOTFS))
b7d6c8ad 867
6ab14ff2 868.PHONY: show-build-order
75fcebb7
YM
869show-build-order: $(patsubst %,%-show-build-order,$(PACKAGES))
870
6ab14ff2 871.PHONY: graph-build
e16bf922 872graph-build: $(O)/build/build-time.log
4a9a21b9 873 @install -d $(GRAPHS_DIR)
e16bf922
YM
874 $(foreach o,name build duration,./support/scripts/graph-build-time \
875 --type=histogram --order=$(o) --input=$(<) \
4a9a21b9 876 --output=$(GRAPHS_DIR)/build.hist-$(o).$(BR_GRAPH_OUT) \
8ae7838c 877 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
e16bf922
YM
878 $(foreach t,packages steps,./support/scripts/graph-build-time \
879 --type=pie-$(t) --input=$(<) \
4a9a21b9 880 --output=$(GRAPHS_DIR)/build.pie-$(t).$(BR_GRAPH_OUT) \
8ae7838c 881 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
e16bf922 882
6ab14ff2 883.PHONY: graph-depends-requirements
d3c1c647 884graph-depends-requirements:
664f2707 885 @dot -? >/dev/null 2>&1 || \
d3c1c647
FP
886 { echo "ERROR: The 'dot' program from Graphviz is needed for graph-depends" >&2; exit 1; }
887
6ab14ff2 888.PHONY: graph-depends
d3c1c647 889graph-depends: graph-depends-requirements
4a9a21b9 890 @$(INSTALL) -d $(GRAPHS_DIR)
56eb3944 891 @cd "$(CONFIG_DIR)"; \
287a8828 892 $(TOPDIR)/support/scripts/graph-depends $(BR2_GRAPH_DEPS_OPTS) \
2a2eb55c 893 --direct -o $(GRAPHS_DIR)/$(@).dot
5e7020ef
YM
894 dot $(BR2_GRAPH_DOT_OPTS) -T$(BR_GRAPH_OUT) \
895 -o $(GRAPHS_DIR)/$(@).$(BR_GRAPH_OUT) \
896 $(GRAPHS_DIR)/$(@).dot
0cfe3ab8 897
6ab14ff2 898.PHONY: graph-size
24c75fbb
TP
899graph-size:
900 $(Q)mkdir -p $(GRAPHS_DIR)
901 $(Q)$(TOPDIR)/support/scripts/size-stats --builddir $(BASE_DIR) \
902 --graph $(GRAPHS_DIR)/graph-size.$(BR_GRAPH_OUT) \
903 --file-size-csv $(GRAPHS_DIR)/file-size-stats.csv \
e9cdabee
YM
904 --package-size-csv $(GRAPHS_DIR)/package-size-stats.csv \
905 $(BR2_GRAPH_SIZE_OPTS)
24c75fbb 906
6ab14ff2 907.PHONY: check-dependencies
9dac9866
YM
908check-dependencies:
909 @cd "$(CONFIG_DIR)"; \
910 $(TOPDIR)/support/scripts/graph-depends -C
911
f8177b78
YM
912.PHONY: show-info
913show-info:
914 @:
915 $(info $(call clean-json, \
916 { $(foreach p, \
917 $(sort $(foreach i,$(PACKAGES) $(TARGETS_ROOTFS), \
918 $(i) \
919 $($(call UPPERCASE,$(i))_FINAL_RECURSIVE_DEPENDENCIES) \
920 ) \
921 ), \
922 $(call json-info,$(call UPPERCASE,$(p)))$(comma) \
923 ) } \
924 ) \
925 )
926
78568465
TP
927.PHONY: pkg-stats
928pkg-stats:
929 @cd "$(CONFIG_DIR)" ; \
930 $(TOPDIR)/support/scripts/pkg-stats -c \
931 --json $(O)/pkg-stats.json \
932 --html $(O)/pkg-stats.html \
933 --nvd-path $(DL_DIR)/buildroot-nvd
934
fd731294
TP
935.PHONY: missing-cpe
936missing-cpe:
1f187371 937 $(Q)mkdir -p $(CPE_UPDATES_DIR)
fd731294
TP
938 $(Q)cd "$(CONFIG_DIR)" ; \
939 $(TOPDIR)/support/scripts/gen-missing-cpe \
940 --nvd-path $(DL_DIR)/buildroot-nvd \
1f187371 941 --output $(CPE_UPDATES_DIR)
fd731294 942
cfe511b2 943else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
2d523c23 944
503439f9
AV
945# Some subdirectories are also package names. To avoid that "make linux"
946# on an unconfigured tree produces "Nothing to be done", add an explicit
947# rule for it.
c3493069 948# Also for 'all' we error out and ask the user to configure first.
503439f9 949.PHONY: linux toolchain
51825df3 950linux toolchain all: outputmakefile
503439f9
AV
951 $(error Please configure Buildroot first (e.g. "make menuconfig"))
952 @exit 1
953
1ed49963
AVEM
954endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
955
2d523c23
EA
956# configuration
957# ---------------------------------------------------------------------------
958
c3e49d69 959HOSTCFLAGS = $(CFLAGS_FOR_BUILD)
c0d7d4e0
BRF
960export HOSTCFLAGS
961
2cc210c9
PK
962$(BUILD_DIR)/buildroot-config/%onf:
963 mkdir -p $(@D)/lxdialog
0515fe45
BF
964 PKG_CONFIG_PATH="$(HOST_PKG_CONFIG_PATH)" $(MAKE) CC="$(HOSTCC_NOCCACHE)" HOSTCC="$(HOSTCC_NOCCACHE)" \
965 obj=$(@D) -C $(CONFIG) -f Makefile.br $(@F)
2d523c23 966
1ed49963
AVEM
967DEFCONFIG = $(call qstrip,$(BR2_DEFCONFIG))
968
969# We don't want to fully expand BR2_DEFCONFIG here, so Kconfig will
970# recognize that if it's still at its default $(CONFIG_DIR)/defconfig
1039eb74 971COMMON_CONFIG_ENV = \
1ed49963 972 BR2_DEFCONFIG='$(call qstrip,$(value BR2_DEFCONFIG))' \
1039eb74
TP
973 KCONFIG_AUTOCONFIG=$(BUILD_DIR)/buildroot-config/auto.conf \
974 KCONFIG_AUTOHEADER=$(BUILD_DIR)/buildroot-config/autoconf.h \
0b368800 975 KCONFIG_TRISTATE=$(BUILD_DIR)/buildroot-config/tristate.config \
4113b3c3 976 BR2_CONFIG=$(BR2_CONFIG) \
12825f7a 977 HOST_GCC_VERSION="$(HOSTCC_VERSION)" \
54af0551 978 BASE_DIR=$(BASE_DIR) \
53903a15 979 SKIP_LEGACY=
2d523c23 980
f879203c 981xconfig: $(BUILD_DIR)/buildroot-config/qconf outputmakefile
610255e7 982 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
b0df9df3 983
f879203c 984gconfig: $(BUILD_DIR)/buildroot-config/gconf outputmakefile
610255e7 985 @$(COMMON_CONFIG_ENV) srctree=$(TOPDIR) $< $(CONFIG_CONFIG_IN)
2b42aae7 986
f879203c 987menuconfig: $(BUILD_DIR)/buildroot-config/mconf outputmakefile
610255e7 988 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
2d523c23 989
f879203c 990nconfig: $(BUILD_DIR)/buildroot-config/nconf outputmakefile
610255e7 991 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
2d523c23 992
f879203c 993config: $(BUILD_DIR)/buildroot-config/conf outputmakefile
1039eb74 994 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
2d523c23 995
53903a15
AV
996# For the config targets that automatically select options, we pass
997# SKIP_LEGACY=y to disable the legacy options. However, in that case
998# no values are set for the legacy options so a subsequent oldconfig
999# will query them. Therefore, run an additional olddefconfig.
1000
f879203c 1001randconfig allyesconfig alldefconfig allnoconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
2607051e 1002 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --$@ $(CONFIG_CONFIG_IN)
53903a15 1003 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
6652770f 1004
f879203c 1005randpackageconfig allyespackageconfig allnopackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
4113b3c3 1006 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
53903a15 1007 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \
39ca6d50 1008 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
2607051e 1009 $< --$(subst package,,$@) $(CONFIG_CONFIG_IN)
39ca6d50 1010 @rm -f $(CONFIG_DIR)/.config.nopkg
53903a15 1011 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
6652770f 1012
f879203c 1013oldconfig syncconfig olddefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
2607051e 1014 @$(COMMON_CONFIG_ENV) $< --$@ $(CONFIG_CONFIG_IN)
9db3b47e 1015
f879203c 1016defconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
1ed49963 1017 @$(COMMON_CONFIG_ENV) $< --defconfig$(if $(DEFCONFIG),=$(DEFCONFIG)) $(CONFIG_CONFIG_IN)
2d523c23 1018
666edc7a 1019define percent_defconfig
32babbf9 1020# Override the BR2_DEFCONFIG from COMMON_CONFIG_ENV with the new defconfig
f879203c 1021%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(1)/configs/%_defconfig outputmakefile
666edc7a
YM
1022 @$$(COMMON_CONFIG_ENV) BR2_DEFCONFIG=$(1)/configs/$$@ \
1023 $$< --defconfig=$(1)/configs/$$@ $$(CONFIG_CONFIG_IN)
1024endef
339e1c95 1025$(eval $(foreach d,$(call reverse,$(TOPDIR) $(BR2_EXTERNAL_DIRS)),$(call percent_defconfig,$(d))$(sep)))
ff9d6e30 1026
45f03959
VD
1027update-defconfig: savedefconfig
1028
f879203c 1029savedefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
1ed49963
AVEM
1030 @$(COMMON_CONFIG_ENV) $< \
1031 --savedefconfig=$(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig) \
1032 $(CONFIG_CONFIG_IN)
1482ef6b 1033 @$(SED) '/^BR2_DEFCONFIG=/d' $(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig)
2d523c23 1034
45f03959 1035.PHONY: defconfig savedefconfig update-defconfig
406053d5 1036
95442bb3 1037################################################################################
2d523c23
EA
1038#
1039# Cleanup and misc junk
1040#
95442bb3 1041################################################################################
aefad531 1042
ca9a0b25
AVEM
1043# staging and target directories do NOT list these as
1044# dependencies anywhere else
c4e6d5c8 1045$(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
1046 @mkdir -p $@
1047
aefad531
YM
1048# outputmakefile generates a Makefile in the output directory, if using a
1049# separate output directory. This allows convenient use of make in the
1050# output directory.
5f94c97a 1051.PHONY: outputmakefile
aefad531
YM
1052outputmakefile:
1053ifeq ($(NEED_WRAPPER),y)
f082c7c5 1054 $(Q)$(TOPDIR)/support/scripts/mkmakefile $(TOPDIR) $(O)
aefad531
YM
1055endif
1056
376fda8f
YM
1057# printvars prints all the variables currently defined in our
1058# Makefiles. Alternatively, if a non-empty VARS variable is passed,
1059# only the variables matching the make pattern passed in VARS are
1060# displayed.
5f94c97a 1061.PHONY: printvars
98b616d7 1062printvars:
b8d0aadc
TP
1063 @:
1064 $(foreach V, \
fd5bd123 1065 $(sort $(filter $(VARS),$(.VARIABLES))), \
98b616d7
ÉV
1066 $(if $(filter-out environment% default automatic, \
1067 $(origin $V)), \
ba636031
YM
1068 $(if $(QUOTED_VARS),\
1069 $(info $V='$(subst ','\'',$(if $(RAW_VARS),$(value $V),$($V)))'), \
1070 $(info $V=$(if $(RAW_VARS),$(value $V),$($V))))))
1071# ' Syntax colouring...
98b616d7 1072
5f94c97a 1073.PHONY: clean
2d523c23 1074clean:
7e9870ce 1075 rm -rf $(BASE_TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) $(HOST_DIR_SYMLINK) \
e0c60677 1076 $(BUILD_DIR) $(BASE_DIR)/staging \
3ae38dde
YM
1077 $(LEGAL_INFO_DIR) $(GRAPHS_DIR) $(PER_PACKAGE_DIR) $(CPE_UPDATES_DIR) \
1078 $(O)/pkg-stats.*
2d523c23 1079
5f94c97a 1080.PHONY: distclean
2d523c23 1081distclean: clean
171d4103 1082ifeq ($(O),$(CURDIR)/output)
406053d5
PK
1083 rm -rf $(O)
1084endif
e76b4fd1 1085 rm -rf $(TOPDIR)/dl $(BR2_CONFIG) $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/..config.tmp \
76345bf6 1086 $(CONFIG_DIR)/.auto.deps $(BASE_DIR)/.br2-external.*
2d523c23 1087
5f94c97a 1088.PHONY: help
a49b81ed 1089help:
e491fba2 1090 @echo 'Cleaning:'
406053d5 1091 @echo ' clean - delete all files created by build'
e491fba2
BRF
1092 @echo ' distclean - delete all non-source files (including .config)'
1093 @echo
1094 @echo 'Build:'
1095 @echo ' all - make world'
2a786415 1096 @echo ' toolchain - build toolchain'
994301a2 1097 @echo ' sdk - build relocatable SDK'
e491fba2
BRF
1098 @echo
1099 @echo 'Configuration:'
1100 @echo ' menuconfig - interactive curses-based configurator'
15f5bef0 1101 @echo ' nconfig - interactive ncurses-based configurator'
c48bbb8c 1102 @echo ' xconfig - interactive Qt-based configurator'
2b42aae7 1103 @echo ' gconfig - interactive GTK-based configurator'
e491fba2 1104 @echo ' oldconfig - resolve any unresolved symbols in .config'
6eacea5a
PV
1105 @echo ' syncconfig - Same as oldconfig, but quietly, additionally update deps'
1106 @echo ' olddefconfig - Same as syncconfig but sets new symbols to their default value'
c48bbb8c 1107 @echo ' randconfig - New config with random answer to all options'
27aa7ae6
AVEM
1108 @echo ' defconfig - New config with default answer to all options;'
1109 @echo ' BR2_DEFCONFIG, if set on the command line, is used as input'
5c1a75c0 1110 @echo ' savedefconfig - Save current config to BR2_DEFCONFIG (minimal config)'
45f03959 1111 @echo ' update-defconfig - Same as savedefconfig'
c48bbb8c
PK
1112 @echo ' allyesconfig - New config where all options are accepted with yes'
1113 @echo ' allnoconfig - New config where all options are answered with no'
dab80981 1114 @echo ' alldefconfig - New config where all options are set to default'
6652770f
PK
1115 @echo ' randpackageconfig - New config with random answer to package options'
1116 @echo ' allyespackageconfig - New config where pkg options are accepted with yes'
1117 @echo ' allnopackageconfig - New config where package options are answered with no'
b1e0b6d7
AV
1118 @echo
1119 @echo 'Package-specific:'
1120 @echo ' <pkg> - Build and install <pkg> and all its dependencies'
1121 @echo ' <pkg>-source - Only download the source files for <pkg>'
1122 @echo ' <pkg>-extract - Extract <pkg> sources'
1123 @echo ' <pkg>-patch - Apply patches to <pkg>'
1124 @echo ' <pkg>-depends - Build <pkg>'\''s dependencies'
1125 @echo ' <pkg>-configure - Build <pkg> up to the configure step'
1126 @echo ' <pkg>-build - Build <pkg> up to the build step'
5abb8821 1127 @echo ' <pkg>-show-info - generate info about <pkg>, as a JSON blurb'
56cf5612
YM
1128 @echo ' <pkg>-show-depends - List packages on which <pkg> depends'
1129 @echo ' <pkg>-show-rdepends - List packages which have <pkg> as a dependency'
ca9b17a2
GR
1130 @echo ' <pkg>-show-recursive-depends'
1131 @echo ' - Recursively list packages on which <pkg> depends'
1132 @echo ' <pkg>-show-recursive-rdepends'
1133 @echo ' - Recursively list packages which have <pkg> as a dependency'
b1e0b6d7 1134 @echo ' <pkg>-graph-depends - Generate a graph of <pkg>'\''s dependencies'
2a2eb55c 1135 @echo ' <pkg>-graph-rdepends - Generate a graph of <pkg>'\''s reverse dependencies'
b1e0b6d7
AV
1136 @echo ' <pkg>-dirclean - Remove <pkg> build directory'
1137 @echo ' <pkg>-reconfigure - Restart the build from the configure step'
1138 @echo ' <pkg>-rebuild - Restart the build from the build step'
4899d9ec 1139 @echo ' <pkg>-reinstall - Restart the build from the install step'
66a5fc74
YM
1140 $(foreach p,$(HELP_PACKAGES), \
1141 @echo $(sep) \
1142 @echo '$($(p)_NAME):' $(sep) \
1143 $($(p)_HELP_CMDS)$(sep))
8792cf9e
TP
1144 @echo
1145 @echo 'Documentation:'
55ecab1b 1146 @echo ' manual - build manual in all formats'
8792cf9e
TP
1147 @echo ' manual-html - build manual in HTML'
1148 @echo ' manual-split-html - build manual in split HTML'
1149 @echo ' manual-pdf - build manual in PDF'
462e9915 1150 @echo ' manual-text - build manual in text'
8792cf9e 1151 @echo ' manual-epub - build manual in ePub'
e16bf922 1152 @echo ' graph-build - generate graphs of the build times'
0cfe3ab8 1153 @echo ' graph-depends - generate graph of the dependency tree'
24c75fbb 1154 @echo ' graph-size - generate stats of the filesystem size'
de6377e8 1155 @echo ' list-defconfigs - list all defconfigs (pre-configured minimal systems)'
e491fba2
BRF
1156 @echo
1157 @echo 'Miscellaneous:'
1158 @echo ' source - download all sources needed for offline-build'
155971e0 1159 @echo ' external-deps - list external packages used'
7e76f904 1160 @echo ' legal-info - generate info about license compliance'
f8177b78 1161 @echo ' show-info - generate info about packages, as a JSON blurb'
78568465 1162 @echo ' pkg-stats - generate info about packages as JSON and HTML'
fd731294 1163 @echo ' missing-cpe - generate XML snippets for missing CPE identifiers'
fd5bd123 1164 @echo ' printvars - dump internal variables selected with VARS=...'
e491fba2 1165 @echo
15f5bef0
PK
1166 @echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build'
1167 @echo ' make O=dir - Locate all output files in "dir", including .config'
1168 @echo
f42a580a
AV
1169 @echo 'For further details, see README, generate the Buildroot manual, or consult'
1170 @echo 'it on-line at http://buildroot.org/docs.html'
1171 @echo
1172
20cd4973
YM
1173# List the defconfig files
1174# $(1): base directory
1175# $(2): br2-external name, empty for bundled
1176define list-defconfigs
1177 @first=true; \
1178 for defconfig in $(1)/configs/*_defconfig; do \
1179 [ -f "$${defconfig}" ] || continue; \
1180 if $${first}; then \
1181 if [ "$(2)" ]; then \
49117c10 1182 printf 'External configs in "$(call qstrip,$(2))":\n'; \
20cd4973
YM
1183 else \
1184 printf "Built-in configs:\n"; \
1185 fi; \
1186 first=false; \
1187 fi; \
1188 defconfig="$${defconfig##*/}"; \
1189 printf " %-35s - Build for %s\n" "$${defconfig}" "$${defconfig%_defconfig}"; \
1190 done; \
1191 $${first} || printf "\n"
1192endef
1193
1194# We iterate over BR2_EXTERNAL_NAMES rather than BR2_EXTERNAL_DIRS,
1195# because we want to display the name of the br2-external tree.
5f94c97a 1196.PHONY: list-defconfigs
f42a580a 1197list-defconfigs:
20cd4973
YM
1198 $(call list-defconfigs,$(TOPDIR))
1199 $(foreach name,$(BR2_EXTERNAL_NAMES),\
49117c10
YM
1200 $(call list-defconfigs,$(BR2_EXTERNAL_$(name)_PATH),\
1201 $(BR2_EXTERNAL_$(name)_DESC))$(sep))
ba2e7e02 1202
c3e49d69 1203release: OUT = buildroot-$(BR2_VERSION)
0dca7065 1204
134ab1ce
PK
1205# Create release tarballs. We need to fiddle a bit to add the generated
1206# documentation to the git output
0dca7065 1207release:
c6715b69 1208 git archive --format=tar --prefix=$(OUT)/ HEAD > $(OUT).tar
462e9915 1209 $(MAKE) O=$(OUT) manual-html manual-text manual-pdf
bee47598 1210 $(MAKE) O=$(OUT) distclean
134ab1ce
PK
1211 tar rf $(OUT).tar $(OUT)
1212 gzip -9 -c < $(OUT).tar > $(OUT).tar.gz
1213 bzip2 -9 -c < $(OUT).tar > $(OUT).tar.bz2
1214 rm -rf $(OUT) $(OUT).tar
e62d2ecd 1215
2b91ab7a
AVEM
1216print-version:
1217 @echo $(BR2_VERSION_FULL)
1218
841ee767
YM
1219check-flake8:
1220 $(Q)git ls-tree -r --name-only HEAD \
1221 | xargs file \
1222 | grep 'Python script' \
1223 | cut -d':' -f1 \
3b10ee39 1224 | xargs -- python3 -m flake8 --statistics
841ee767 1225
1290241d
TP
1226check-package:
1227 find $(TOPDIR) -type f \( -name '*.mk' -o -name '*.hash' -o -name 'Config.*' \) \
1228 -exec ./utils/check-package {} +
1229
b7285d00 1230include docs/manual/manual.mk
b9d2d4cb 1231-include $(foreach dir,$(BR2_EXTERNAL_DIRS),$(sort $(wildcard $(dir)/docs/*/*.mk)))
8792cf9e 1232
6652770f 1233.PHONY: $(noconfig_targets)
bee5745c 1234
173135df 1235endif #umask / $(CURDIR) / $(O)
This page took 1.274563 seconds and 4 git commands to generate.