blob: 0115c4dfcc53ec36d2b05e3c5989c952b773c0bd [file] [log] [blame]
Thomas De Schampheleire6cbdfb62013-09-05 09:12:15 +02001# Makefile for buildroot
Eric Andersenffde94b2001-12-22 00:56:11 +00002#
Eric Andersen15b26ae2005-02-07 22:19:26 +00003# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
Peter Korsgaarde580ce82014-01-08 17:12:04 +01004# Copyright (C) 2006-2014 by the Buildroot developers <buildroot@uclibc.org>
Peter Korsgaard67640032018-02-01 16:48:31 +01005# Copyright (C) 2014-2018 by the Buildroot developers <buildroot@buildroot.org>
Eric Andersenffde94b2001-12-22 00:56:11 +00006#
Eric Andersen08782ae2002-04-26 11:45:55 +00007# This program is free software; you can redistribute it and/or modify
Eric Andersen2d523c22004-10-09 01:06:03 +00008# 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.
Eric Andersenffde94b2001-12-22 00:56:11 +000011#
Eric Andersen2d523c22004-10-09 01:06:03 +000012# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
Eric Andersen08782ae2002-04-26 11:45:55 +000014# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Eric Andersen2d523c22004-10-09 01:06:03 +000015# General Public License for more details.
Peter Korsgaardb30d6732009-01-26 19:42:47 +000016#
Eric Andersen2d523c22004-10-09 01:06:03 +000017# 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
20#
Eric Andersenffde94b2001-12-22 00:56:11 +000021
Eric Andersen2d523c22004-10-09 01:06:03 +000022#--------------------------------------------------------------
23# Just run 'make menuconfig', configure stuff, then run 'make'.
24# You shouldn't need to mess with anything beyond this point...
25#--------------------------------------------------------------
Yann E. MORIN2d239bb2010-10-31 17:35:09 +010026
Arnout Vandecappelle6bb74302016-11-05 22:05:08 +010027# Delete default rules. We don't use them. This saves a bit of time.
28.SUFFIXES:
29
Kurt Van Dijck3f4c72c2016-06-19 06:12:06 +020030# 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
Samuel Martin916e6142016-10-17 23:05:42 +020035# 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")
Samuel Martin173135d2016-10-17 23:05:43 +020039O := $(CURDIR)/output
Samuel Martin916e6142016-10-17 23:05:42 +020040endif
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
Samuel Martin173135d2016-10-17 23:05:43 +020044# its pre-requisites, which are:
Samuel Martin916e6142016-10-17 23:05:42 +020045# 1- Permissive enough umask:
46# Wrong or too restrictive umask will prevent Buildroot and packages from
47# creating files and directories.
Samuel Martin173135d2016-10-17 23:05:43 +020048# 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
63CANONICAL_CURDIR = $(realpath $(CURDIR))
Samuel Martin916e6142016-10-17 23:05:42 +020064
65REQ_UMASK = 0022
66
Samuel Martin173135d2016-10-17 23:05:43 +020067# Make sure O= is passed (with its absolute canonical path) everywhere the
68# toplevel makefile is called back.
69EXTRAMAKEARGS := O=$(CANONICAL_O)
Samuel Martin916e6142016-10-17 23:05:42 +020070
71# Check Buildroot execution pre-requisites here.
Samuel Martin173135d2016-10-17 23:05:43 +020072ifneq ($(shell umask):$(CURDIR):$(O),$(REQ_UMASK):$(CANONICAL_CURDIR):$(CANONICAL_O))
Guido Martínez1e9f6042015-07-17 00:33:07 +020073.PHONY: _all $(MAKECMDGOALS)
Guido Martínezbee57452014-11-21 13:19:00 -030074
Guido Martínez1e9f6042015-07-17 00:33:07 +020075$(MAKECMDGOALS): _all
76 @:
Guido Martínezbee57452014-11-21 13:19:00 -030077
Guido Martínez1e9f6042015-07-17 00:33:07 +020078_all:
Samuel Martin173135d2016-10-17 23:05:43 +020079 @umask $(REQ_UMASK) && \
80 $(MAKE) -C $(CANONICAL_CURDIR) --no-print-directory \
81 $(MAKECMDGOALS) $(EXTRAMAKEARGS)
Guido Martínezbee57452014-11-21 13:19:00 -030082
Samuel Martin173135d2016-10-17 23:05:43 +020083else # umask / $(CURDIR) / $(O)
Guido Martínezbee57452014-11-21 13:19:00 -030084
Yann E. MORIN5309e2e2014-10-11 19:34:42 +020085# This is our default rule, so must come first
86all:
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +020087.PHONY: all
Yann E. MORIN5309e2e2014-10-11 19:34:42 +020088
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010089# Set and export the version string
Thomas Petazzoni71d81482018-08-05 15:40:05 +020090export BR2_VERSION := 2018.08-rc1
Gilles Chanteperdrix9befe942016-11-23 13:58:40 +010091# Actual time the release is cut (for reproducible builds)
Thomas Petazzoni71d81482018-08-05 15:40:05 +020092BR2_VERSION_EPOCH = 1533476000
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010093
Gustavo Zacarias2ac7da02015-07-14 18:30:39 -030094# Save running make version since it's clobbered by the make package
95RUNNING_MAKE_VERSION := $(MAKE_VERSION)
96
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +010097# Check for minimal make version (note: this check will break at make 10.x)
Fabio Porceddac3e49d62014-04-23 10:39:23 +020098MIN_MAKE_VERSION = 3.81
Gustavo Zacarias2ac7da02015-07-14 18:30:39 -030099ifneq ($(firstword $(sort $(RUNNING_MAKE_VERSION) $(MIN_MAKE_VERSION))),$(MIN_MAKE_VERSION))
100$(error You have make '$(RUNNING_MAKE_VERSION)' installed. GNU make >= $(MIN_MAKE_VERSION) is required)
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +0100101endif
102
Fabio Porcedda2afb23a2014-02-14 10:55:08 +0100103# Parallel execution of this Makefile is disabled because it changes
104# the packages building order, that can be a problem for two reasons:
105# - If a package has an unspecified optional dependency and that
106# dependency is present when the package is built, it is used,
107# otherwise it isn't (but compilation happily proceeds) so the end
108# result will differ if the order is swapped due to parallel
109# building.
110# - Also changing the building order can be a problem if two packages
111# manipulate the same file in the target directory.
112#
113# Taking into account the above considerations, if you still want to execute
114# this top-level Makefile in parallel comment the ".NOTPARALLEL" line and
Fabio Porcedda1668e1d2015-07-01 10:10:46 +0200115# use the -j<jobs> option when building, e.g:
116# make -j$((`getconf _NPROCESSORS_ONLN`+1))
Yann E. MORIN2d239bb2010-10-31 17:35:09 +0100117.NOTPARALLEL:
118
Peter Korsgaard6b1dd452009-11-30 17:29:01 +0100119# absolute path
Samuel Martine0499942016-03-09 23:58:43 +0100120TOPDIR := $(CURDIR)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200121CONFIG_CONFIG_IN = Config.in
122CONFIG = support/kconfig
123DATE := $(shell date +%Y%m%d)
Eric Andersen2d523c22004-10-09 01:06:03 +0000124
Yann E. MORIN8258df22010-10-31 17:35:12 +0100125# Compute the full local version string so packages can use it as-is
126# Need to export it, so it can be got from environment in children (eg. mconf)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200127export BR2_VERSION_FULL := $(BR2_VERSION)$(shell $(TOPDIR)/support/scripts/setlocalversion)
Yann E. MORIN8258df22010-10-31 17:35:12 +0100128
Arnout Vandecappelle106dc752017-06-15 00:11:29 +0200129# List of targets and target patterns for which .config doesn't need to be read in
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200130noconfig_targets := menuconfig nconfig gconfig xconfig config oldconfig randconfig \
Arnout Vandecappelledab80982017-07-21 03:05:29 +0200131 defconfig %_defconfig allyesconfig allnoconfig alldefconfig silentoldconfig release \
Peter Korsgaard66527702009-10-04 21:57:12 +0200132 randpackageconfig allyespackageconfig allnopackageconfig \
Thomas Petazzoni12902412018-08-11 12:44:23 +0200133 print-version olddefconfig distclean manual manual-% check-package
Bernhard Reutner-Fischer9e250352006-12-02 19:01:10 +0000134
Thomas Petazzoni256f1422015-04-26 11:51:14 +0200135# Some global targets do not trigger a build, but are used to collect
136# metadata, or do various checks. When such targets are triggered,
137# some packages should not do their configuration sanity
138# checks. Provide them a BR_BUILDING variable set to 'y' when we're
139# actually building and they should do their sanity checks.
140#
141# We're building in two situations: when MAKECMDGOALS is empty
142# (default target is to build), or when MAKECMDGOALS contains
143# something else than one of the nobuild_targets.
Maxime Hadjinlianbf28a162017-10-25 22:09:51 +0200144nobuild_targets := source %-source \
Rahul Jain472f0ae2016-11-15 16:33:20 +0530145 legal-info %-legal-info external-deps _external-deps \
146 clean distclean help show-targets graph-depends \
147 %-graph-depends %-show-depends %-show-version \
148 graph-build graph-size list-defconfigs \
149 savedefconfig printvars
Thomas Petazzoni256f1422015-04-26 11:51:14 +0200150ifeq ($(MAKECMDGOALS),)
151BR_BUILDING = y
152else ifneq ($(filter-out $(nobuild_targets),$(MAKECMDGOALS)),)
153BR_BUILDING = y
154endif
155
Arnout Vandecappelle5e3f8962016-11-03 02:55:16 +0100156# We call make recursively to build packages. The command-line overrides that
157# are passed to Buildroot don't apply to those package build systems. In
158# particular, we don't want to pass down the O=<dir> option for out-of-tree
159# builds, because the value specified on the command line will not be correct
160# for packages.
161MAKEOVERRIDES :=
162
Yann E. MORIN242e0082016-07-17 12:34:21 +0200163# Include some helper macros and variables
164include support/misc/utils.mk
Peter Korsgaardf85f2de2009-01-25 20:19:01 +0000165
Samuel Martin0b1b2c42016-10-17 23:05:41 +0200166# Set variables related to in-tree or out-of-tree build.
Samuel Martin173135d2016-10-17 23:05:43 +0200167# Here, both $(O) and $(CURDIR) are absolute canonical paths.
168ifeq ($(O),$(CURDIR)/output)
169CONFIG_DIR := $(CURDIR)
Samuel Martin0b1b2c42016-10-17 23:05:41 +0200170NEED_WRAPPER =
171else
172CONFIG_DIR := $(O)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200173NEED_WRAPPER = y
Will Wagner39ca6d52010-01-11 12:28:50 +0000174endif
175
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200176# bash prints the name of the directory on 'cd <dir>' if CDPATH is
177# set, so unset it here to not cause problems. Notice that the export
Danomi Manchego6caa76d2016-11-22 21:31:31 -0500178# line doesn't affect the environment of $(shell ..) calls.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200179export CDPATH :=
Danomi Manchego6caa76d2016-11-22 21:31:31 -0500180
181BASE_DIR := $(CANONICAL_O)
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200182$(if $(BASE_DIR),, $(error output directory "$(O)" does not exist))
183
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100184
185# Handling of BR2_EXTERNAL.
186#
187# The value of BR2_EXTERNAL is stored in .br-external in the output directory.
Yann E. MORIN20cd4972016-10-14 16:39:20 +0200188# The location of the external.mk makefile fragments is computed in that file.
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200189# On subsequent invocations of make, this file is read in. BR2_EXTERNAL can
190# still be overridden on the command line, therefore the file is re-created
191# every time make is run.
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100192
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200193BR2_EXTERNAL_FILE = $(BASE_DIR)/.br-external.mk
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100194-include $(BR2_EXTERNAL_FILE)
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200195$(shell support/scripts/br2-external \
196 -m -o '$(BR2_EXTERNAL_FILE)' $(BR2_EXTERNAL))
197BR2_EXTERNAL_ERROR =
198include $(BR2_EXTERNAL_FILE)
199ifneq ($(BR2_EXTERNAL_ERROR),)
200$(error $(BR2_EXTERNAL_ERROR))
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100201endif
202
Masahiro Yamada5b686a02015-04-08 09:53:36 +0900203# To make sure that the environment variable overrides the .config option,
Arnout Vandecappelle67680212014-02-04 16:18:51 +0100204# set this before including .config.
205ifneq ($(BR2_DL_DIR),)
206DL_DIR := $(BR2_DL_DIR)
207endif
Gustavo Zacarias3901cb52015-10-15 10:24:39 -0300208ifneq ($(BR2_CCACHE_DIR),)
209BR_CACHE_DIR := $(BR2_CCACHE_DIR)
210endif
Arnout Vandecappelle67680212014-02-04 16:18:51 +0100211
Yann E. MORINf1fedbb2013-12-28 18:39:13 +0100212# Need that early, before we scan packages
213# Avoids doing the $(or...) everytime
Yann E. MORIN22d05902014-04-13 22:42:37 +0200214BR_GRAPH_OUT := $(or $(BR2_GRAPH_OUT),pdf)
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100215
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200216BUILD_DIR := $(BASE_DIR)/build
217BINARIES_DIR := $(BASE_DIR)/images
Yann E. MORINc6e42572018-03-31 11:05:55 +0200218# The target directory is common to all packages,
219# but there is one that is specific to each filesystem.
Yann E. MORIN7e9870c2018-03-31 11:05:50 +0200220BASE_TARGET_DIR := $(BASE_DIR)/target
Yann E. MORINc6e42572018-03-31 11:05:55 +0200221TARGET_DIR = $(if $(ROOTFS),$(ROOTFS_$(ROOTFS)_TARGET_DIR),$(BASE_TARGET_DIR))
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200222# initial definition so that 'make clean' works for most users, even without
223# .config. HOST_DIR will be overwritten later when .config is included.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200224HOST_DIR := $(BASE_DIR)/host
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100225GRAPHS_DIR := $(BASE_DIR)/graphs
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200226
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200227LEGAL_INFO_DIR = $(BASE_DIR)/legal-info
228REDIST_SOURCES_DIR_TARGET = $(LEGAL_INFO_DIR)/sources
229REDIST_SOURCES_DIR_HOST = $(LEGAL_INFO_DIR)/host-sources
230LICENSE_FILES_DIR_TARGET = $(LEGAL_INFO_DIR)/licenses
231LICENSE_FILES_DIR_HOST = $(LEGAL_INFO_DIR)/host-licenses
232LEGAL_MANIFEST_CSV_TARGET = $(LEGAL_INFO_DIR)/manifest.csv
233LEGAL_MANIFEST_CSV_HOST = $(LEGAL_INFO_DIR)/host-manifest.csv
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200234LEGAL_WARNINGS = $(LEGAL_INFO_DIR)/.warnings
235LEGAL_REPORT = $(LEGAL_INFO_DIR)/README
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200236
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200237BR2_CONFIG = $(CONFIG_DIR)/.config
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000238
Ulf Samuelssona1b06512008-03-28 07:31:28 +0000239# Pull in the user's configuration file
240ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100241-include $(BR2_CONFIG)
Ulf Samuelsson7521f372007-09-12 04:34:16 +0000242endif
Eric Andersen2d523c22004-10-09 01:06:03 +0000243
Gilles Chanteperdrixa5f35132016-06-14 17:31:10 +0200244# timezone and locale may affect build output
245ifeq ($(BR2_REPRODUCIBLE),y)
Jérôme Pouiller3111f6a2016-11-23 13:58:57 +0100246export TZ = UTC
247export LANG = C
248export LC_ALL = C
Jérôme Pouiller9b91b212016-11-23 13:58:42 +0100249export GZIP = -n
Gilles Chanteperdrixa5f35132016-06-14 17:31:10 +0200250endif
251
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000252# To put more focus on warnings, be less verbose as default
253# Use 'make V=1' to see the full commands
Masahiro Yamada6bf9e232015-04-07 14:09:09 +0900254ifeq ("$(origin V)", "command line")
255 KBUILD_VERBOSE = $(V)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000256endif
257ifndef KBUILD_VERBOSE
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200258 KBUILD_VERBOSE = 0
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000259endif
260
261ifeq ($(KBUILD_VERBOSE),1)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200262 Q =
Bernhard Reutner-Fischer1669b6e2007-09-22 14:19:22 +0000263ifndef VERBOSE
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200264 VERBOSE = 1
Bernhard Reutner-Fischer1669b6e2007-09-22 14:19:22 +0000265endif
Cédric Marie30702982015-06-23 23:36:06 +0200266export VERBOSE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000267else
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200268 Q = @
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000269endif
270
Peter Korsgaard69f85922009-01-01 21:20:35 +0000271# kconfig uses CONFIG_SHELL
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200272CONFIG_SHELL := $(SHELL)
Peter Korsgaard69f85922009-01-01 21:20:35 +0000273
Cédric Marie474d39a2015-10-08 22:03:37 +0200274export SHELL CONFIG_SHELL Q KBUILD_VERBOSE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000275
276ifndef HOSTAR
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200277HOSTAR := ar
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000278endif
279ifndef HOSTAS
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200280HOSTAS := as
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000281endif
282ifndef HOSTCC
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200283HOSTCC := gcc
284HOSTCC := $(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000285endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200286HOSTCC_NOCCACHE := $(HOSTCC)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000287ifndef HOSTCXX
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200288HOSTCXX := g++
289HOSTCXX := $(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000290endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200291HOSTCXX_NOCCACHE := $(HOSTCXX)
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000292ifndef HOSTCPP
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200293HOSTCPP := cpp
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000294endif
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000295ifndef HOSTLD
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200296HOSTLD := ld
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000297endif
Ulf Samuelsson0f9c5b12007-07-15 21:54:11 +0000298ifndef HOSTLN
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200299HOSTLN := ln
Ulf Samuelsson0f9c5b12007-07-15 21:54:11 +0000300endif
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000301ifndef HOSTNM
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200302HOSTNM := nm
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000303endif
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100304ifndef HOSTOBJCOPY
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200305HOSTOBJCOPY := objcopy
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100306endif
307ifndef HOSTRANLIB
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200308HOSTRANLIB := ranlib
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100309endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200310HOSTAR := $(shell which $(HOSTAR) || type -p $(HOSTAR) || echo ar)
311HOSTAS := $(shell which $(HOSTAS) || type -p $(HOSTAS) || echo as)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200312HOSTCPP := $(shell which $(HOSTCPP) || type -p $(HOSTCPP) || echo cpp)
313HOSTLD := $(shell which $(HOSTLD) || type -p $(HOSTLD) || echo ld)
314HOSTLN := $(shell which $(HOSTLN) || type -p $(HOSTLN) || echo ln)
315HOSTNM := $(shell which $(HOSTNM) || type -p $(HOSTNM) || echo nm)
316HOSTOBJCOPY := $(shell which $(HOSTOBJCOPY) || type -p $(HOSTOBJCOPY) || echo objcopy)
317HOSTRANLIB := $(shell which $(HOSTRANLIB) || type -p $(HOSTRANLIB) || echo ranlib)
Thomas Petazzoni90605b82016-12-04 22:37:24 +0100318SED := $(shell which sed || type -p sed) -i -e
Ulf Samuelsson54e93322008-07-06 07:34:41 +0000319
Masahiro Yamadaa9847d12015-04-09 20:28:55 +0900320export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTLD
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100321export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000322
Yann E. MORIN91ea9332015-11-09 20:00:21 +0100323# Determine the userland we are running on.
324#
325# Note that, despite its name, we are not interested in the actual
326# architecture name. This is mostly used to determine whether some
327# of the binary tools (e.g. pre-built external toolchains) can run
328# on the current host. So we need to know if the userland we're
329# running on can actually run those toolchains.
330#
331# For example, a 64-bit prebuilt toolchain will not run on a 64-bit
332# kernel if the userland is 32-bit (e.g. in a chroot for example).
333#
334# So, we extract the first part of the tuple the host gcc was
335# configured to generate code for; we assume this is our userland.
336#
Romain Naour86229d62016-01-20 22:53:19 +0100337export HOSTARCH := $(shell LC_ALL=C $(HOSTCC_NOCCACHE) -v 2>&1 | \
Yann E. MORIN91ea9332015-11-09 20:00:21 +0100338 sed -e '/^Target: \([^-]*\).*/!d' \
339 -e 's//\1/' \
340 -e 's/i.86/x86/' \
341 -e 's/sun4u/sparc64/' \
342 -e 's/arm.*/arm/' \
343 -e 's/sa110/arm/' \
344 -e 's/ppc64/powerpc64/' \
345 -e 's/ppc/powerpc/' \
346 -e 's/macppc/powerpc/' \
347 -e 's/sh.*/sh/' )
348
Arnout Vandecappelle12825f72015-12-31 01:34:13 +0100349HOSTCC_VERSION := $(shell $(HOSTCC_NOCCACHE) --version | \
350 sed -n -r 's/^.* ([0-9]*)\.([0-9]*)\.([0-9]*)[ ]*.*/\1 \2/p')
351
352# For gcc >= 5.x, we only need the major version.
353ifneq ($(firstword $(HOSTCC_VERSION)),4)
354HOSTCC_VERSION := $(firstword $(HOSTCC_VERSION))
355endif
356
Yann E. MORINc2a93582018-03-04 11:29:04 +0100357ifeq ($(BR2_NEEDS_HOST_UTF8_LOCALE),y)
358# First, we try to use the user's configured locale (as that's the
359# language they'd expect messages to be displayed), then we favour
360# a non language-specific locale like C.UTF-8 if one is available,
361# so we sort with the C locale to get it at the top.
362# This is guaranteed to not be empty, because of the check in
363# support/dependencies/dependencies.sh
364HOST_UTF8_LOCALE := $(shell \
365 ( echo $${LC_ALL:-$${LC_MESSAGES:-$${LANG}}}; \
366 locale -a 2>/dev/null | LC_ALL=C sort \
367 ) \
368 | grep -i -E 'utf-?8$$' \
369 | head -n 1)
370HOST_UTF8_LOCALE_ENV := LC_ALL=$(HOST_UTF8_LOCALE)
371endif
372
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000373# Make sure pkg-config doesn't look outside the buildroot tree
Bjørn Forsman0515fe42015-01-03 00:58:47 +0100374HOST_PKG_CONFIG_PATH := $(PKG_CONFIG_PATH)
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000375unexport PKG_CONFIG_PATH
Charles Manning4f607ed2012-12-02 11:13:04 +0000376unexport PKG_CONFIG_SYSROOT_DIR
Peter Korsgaardbdf472d2013-09-11 14:15:15 +0200377unexport PKG_CONFIG_LIBDIR
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000378
Thomas Petazzoni91123a62012-07-02 04:21:14 +0000379# Having DESTDIR set in the environment confuses the installation
380# steps of some packages.
381unexport DESTDIR
382
Gustavo Zacariasbed61a72013-07-11 11:37:33 -0300383# Causes breakage with packages that needs host-ruby
384unexport RUBYOPT
385
Thomas De Schampheleire3ed0ead2014-08-15 15:40:34 +0200386include package/pkg-utils.mk
Yann E. MORINab6a6212014-10-03 19:01:52 +0200387include package/doc-asciidoc.mk
Thomas De Schampheleire3ed0ead2014-08-15 15:40:34 +0200388
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000389ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersenffde94b2001-12-22 00:56:11 +0000390
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200391################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000392#
393# Hide troublesome environment variables from sub processes
394#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200395################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000396unexport CROSS_COMPILE
397unexport ARCH
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100398unexport CC
Nicolas Dichtel376737d2016-04-14 16:58:32 +0200399unexport LD
400unexport AR
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100401unexport CXX
402unexport CPP
Tom Rini344c5a22015-11-17 14:04:04 -0500403unexport RANLIB
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100404unexport CFLAGS
405unexport CXXFLAGS
406unexport GREP_OPTIONS
Nixf5437a62014-01-26 22:58:02 +0000407unexport TAR_OPTIONS
Peter Korsgaard12c9f7d2011-12-12 10:25:50 +0100408unexport CONFIG_SITE
Stephan Hoffmann32314b42012-08-17 13:54:16 +0200409unexport QMAKESPEC
Nathan Lynch20ca0082012-07-10 07:37:22 +0000410unexport TERMINFO
Risto Avila6d3b9752014-09-24 04:37:13 +0000411unexport MACHINE
Guido Martínez2e323302015-07-25 16:07:39 -0300412unexport O
Yann E. MORIN6cff7412017-02-14 18:24:32 +0100413unexport GCC_COLORS
Bernhard Reutner-Fischer7dcbbfb2007-06-02 09:05:40 +0000414
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200415GNU_HOST_NAME := $(shell support/gnuconfig/config.guess)
Thomas Petazzoni60281cb2010-04-10 23:17:25 +0200416
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200417PACKAGES :=
Yann E. MORIN0ea851c2015-10-22 22:33:56 +0200418PACKAGES_ALL :=
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000419
Peter Korsgaard89464a92009-09-30 17:39:44 +0200420# silent mode requested?
Fabio Porceddafffb68a2015-01-01 21:03:50 +0100421QUIET := $(if $(findstring s,$(filter-out --%,$(MAKEFLAGS))),-q)
Peter Korsgaard89464a92009-09-30 17:39:44 +0200422
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200423# Strip off the annoying quoting
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200424ARCH := $(call qstrip,$(BR2_ARCH))
Thomas Petazzoni65e80a02010-04-28 23:40:57 +0200425
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200426KERNEL_ARCH := $(shell echo "$(ARCH)" | sed -e "s/-.*//" \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200427 -e s/i.86/i386/ -e s/sun4u/sparc64/ \
Maxime Ripardf59aeca2013-05-06 00:14:55 +0000428 -e s/arcle/arc/ \
Peter Korsgaard8332ffa2013-06-10 14:04:03 +0200429 -e s/arceb/arc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200430 -e s/arm.*/arm/ -e s/sa110/arm/ \
Bamvor Jian Zhang827ba462015-03-18 17:49:48 +0800431 -e s/aarch64.*/arm64/ \
Waldemar Brodkorba818e292017-01-25 07:35:07 +0100432 -e s/or1k/openrisc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200433 -e s/parisc64/parisc/ \
Jeff Baileya426a912014-05-24 23:59:22 -0700434 -e s/powerpc64.*/powerpc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200435 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
Jan Drazilc2205812014-03-19 13:01:05 +0100436 -e s/sh.*/sh/ \
437 -e s/microblazeel/microblaze/)
Peter Korsgaard891973f2010-10-17 23:32:37 +0200438
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200439ZCAT := $(call qstrip,$(BR2_ZCAT))
440BZCAT := $(call qstrip,$(BR2_BZCAT))
441XZCAT := $(call qstrip,$(BR2_XZCAT))
Baruch Siachf1650322017-02-12 22:15:39 +0200442LZCAT := $(call qstrip,$(BR2_LZCAT))
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200443TAR_OPTIONS = $(call qstrip,$(BR2_TAR_OPTIONS)) -xf
Bernhard Reutner-Fischer1dbe6e32007-08-21 17:56:47 +0000444
Gustavo Zacariasa2b4f7f2011-02-02 10:05:56 -0300445# packages compiled for the host go here
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200446HOST_DIR := $(call qstrip,$(BR2_HOST_DIR))
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200447
Arnout Vandecappelle (Essensium/Mind)91b4a452017-08-04 18:31:30 +0200448ifneq ($(HOST_DIR),$(BASE_DIR)/host)
449HOST_DIR_SYMLINK = $(BASE_DIR)/host
450$(HOST_DIR_SYMLINK): $(BASE_DIR)
451 ln -snf $(HOST_DIR) $(BASE_DIR)/host
452endif
453
Samuel Martincaa329b2014-04-15 00:31:04 +0200454# Quotes are needed for spaces and all in the original PATH content.
Arnout Vandecappelle4c8872d2017-07-04 16:03:55 +0200455BR_PATH = "$(HOST_DIR)/bin:$(HOST_DIR)/sbin:$(PATH)"
Samuel Martincaa329b2014-04-15 00:31:04 +0200456
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000457# Location of a file giving a big fat warning that output/target
458# should not be used as the root filesystem.
Yann E. MORIN7e9870c2018-03-31 11:05:50 +0200459TARGET_DIR_WARNING_FILE = $(BASE_TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000460
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100461ifeq ($(BR2_CCACHE),y)
Arnout Vandecappelle0f9c0bf2017-07-05 13:14:19 +0200462CCACHE := $(HOST_DIR)/bin/ccache
Gustavo Zacarias3901cb52015-10-15 10:24:39 -0300463BR_CACHE_DIR ?= $(call qstrip,$(BR2_CCACHE_DIR))
Arnout Vandecappellee7ab4b42014-02-04 16:18:50 +0100464export BR_CACHE_DIR
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200465HOSTCC := $(CCACHE) $(HOSTCC)
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100466HOSTCXX := $(CCACHE) $(HOSTCXX)
Arnout Vandecappelle792f1272015-10-04 13:28:56 +0100467else
468export BR_NO_CCACHE
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100469endif
470
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000471# Scripts in support/ or post-build scripts may need to reference
472# these locations, so export them so it is easier to use
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100473export BR2_CONFIG
Gilles Chanteperdrixa5f35132016-06-14 17:31:10 +0200474export BR2_REPRODUCIBLE
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000475export TARGET_DIR
476export STAGING_DIR
477export HOST_DIR
478export BINARIES_DIR
Peter Korsgaard1300cb52013-01-14 10:02:29 +0100479export BASE_DIR
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000480
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200481################################################################################
Eric Andersen08782ae2002-04-26 11:45:55 +0000482#
Eric Andersenef407d32004-01-29 23:21:00 +0000483# You should probably leave this stuff alone unless you know
Eric Andersen08782ae2002-04-26 11:45:55 +0000484# what you are doing.
485#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200486################################################################################
Manuel Novoa III d632d422003-11-01 05:34:41 +0000487
Bernhard Reutner-Fischer6547bce2007-08-22 12:35:41 +0000488all: world
Eric Andersenffde94b2001-12-22 00:56:11 +0000489
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000490# Include legacy before the other things, because package .mk files
491# may rely on it.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000492include Makefile.legacy
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000493
Yann E. MORIN2de968f2017-07-18 19:25:31 +0200494include system/system.mk
Thomas Petazzoni486253d2012-04-17 16:45:23 +0200495include package/Makefile.in
Yann E. MORIN8efa2d82017-03-14 11:30:30 -0700496# arch/arch.mk.* must be after package/Makefile.in because it may need to
497# complement variables defined therein, like BR_NO_CHECK_HASH_FOR.
Peter Seidererb9d2d4c2017-11-21 20:13:30 +0100498-include $(sort $(wildcard arch/arch.mk.*))
Thomas De Schampheleirea7926682012-02-08 17:22:16 +0100499include support/dependencies/dependencies.mk
500
Peter Seidererb9d2d4c2017-11-21 20:13:30 +0100501include $(sort $(wildcard toolchain/*.mk))
502include $(sort $(wildcard toolchain/*/*.mk))
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000503
James Byrne9b471462018-04-09 17:08:01 +0100504ifeq ($(BR2_REPRODUCIBLE),y)
505# If SOURCE_DATE_EPOCH has not been set then use the commit date, or the last
506# release date if the source tree is not within a Git repository.
507# See: https://reproducible-builds.org/specs/source-date-epoch/
James Byrne49395dc2018-04-10 11:28:12 +0100508BR2_VERSION_GIT_EPOCH := $(shell $(GIT) log -1 --format=%at 2> /dev/null)
James Byrne9b471462018-04-09 17:08:01 +0100509export SOURCE_DATE_EPOCH ?= $(or $(BR2_VERSION_GIT_EPOCH),$(BR2_VERSION_EPOCH))
510endif
511
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200512# Include the package override file if one has been provided in the
513# configuration.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200514PACKAGE_OVERRIDE_FILE = $(call qstrip,$(BR2_PACKAGE_OVERRIDE_FILE))
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200515ifneq ($(PACKAGE_OVERRIDE_FILE),)
516-include $(PACKAGE_OVERRIDE_FILE)
517endif
518
Jérôme Pouiller741cbcc2013-09-03 10:45:41 +0200519include $(sort $(wildcard package/*/*.mk))
Eric Andersend06645d2005-02-10 03:06:39 +0000520
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100521include boot/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100522include linux/linux.mk
Philippe Reynes00b1ff62014-05-05 09:52:13 +0200523include fs/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100524
Yann E. MORIN20cd4972016-10-14 16:39:20 +0200525# If using a br2-external tree, the BR2_EXTERNAL_$(NAME)_PATH variables
526# are also present in the .config file. Since .config is included after
527# we defined them in the Makefile, the values for those variables are
528# quoted. We just include the generated Makefile fragment .br2-external.mk
529# a third time, which will set those variables to the un-quoted values.
Yann E. MORINfc34cf72016-10-14 16:39:17 +0200530include $(BR2_EXTERNAL_FILE)
531
Yann E. MORIN64e12a32016-10-14 16:39:14 +0200532# Nothing to include if no BR2_EXTERNAL tree in use
Yann E. MORIN20cd4972016-10-14 16:39:20 +0200533include $(BR2_EXTERNAL_MKS)
Thomas Petazzoni8eb8aaf2013-12-05 20:11:11 +0100534
Thomas Petazzoni3e1b33a2016-01-01 01:01:23 +0100535# Now we are sure we have all the packages scanned and defined. We now
536# check for each package in the list of enabled packages, that all its
537# dependencies are indeed enabled.
538#
539# Only trigger the check for default builds. If the user forces building
540# a package, even if not enabled in the configuration, we want to accept
541# it.
542#
543ifeq ($(MAKECMDGOALS),)
544
545define CHECK_ONE_DEPENDENCY
546ifeq ($$($(2)_TYPE),target)
547ifeq ($$($(2)_IS_VIRTUAL),)
548ifneq ($$($$($(2)_KCONFIG_VAR)),y)
549$$(error $$($(2)_NAME) is in the dependency chain of $$($(1)_NAME) that \
550has added it to its _DEPENDENCIES variable without selecting it or \
551depending on it from Config.in)
552endif
553endif
554endif
555endef
556
557$(foreach pkg,$(call UPPERCASE,$(PACKAGES)),\
558 $(foreach dep,$(call UPPERCASE,$($(pkg)_FINAL_ALL_DEPENDENCIES)),\
559 $(eval $(call CHECK_ONE_DEPENDENCY,$(pkg),$(dep))$(sep))))
560
561endif
562
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200563.PHONY: dirs
Yann E. MORIN7e9870c2018-03-31 11:05:50 +0200564dirs: $(BUILD_DIR) $(STAGING_DIR) $(BASE_TARGET_DIR) \
Arnout Vandecappelle (Essensium/Mind)91b4a452017-08-04 18:31:30 +0200565 $(HOST_DIR) $(HOST_DIR_SYMLINK) $(BINARIES_DIR)
Ulf Samuelssonf958d892007-08-14 07:45:01 +0000566
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100567$(BUILD_DIR)/buildroot-config/auto.conf: $(BR2_CONFIG)
Peter Korsgaard879058a2013-12-16 13:49:28 +0100568 $(MAKE1) $(EXTRAMAKEARGS) HOSTCC="$(HOSTCC_NOCCACHE)" HOSTCXX="$(HOSTCXX_NOCCACHE)" silentoldconfig
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200569
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200570.PHONY: prepare
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200571prepare: $(BUILD_DIR)/buildroot-config/auto.conf
572
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200573.PHONY: world
Fabio Porceddaa2487752014-02-14 10:55:06 +0100574world: target-post-image
Fabio Porcedda2a786412013-01-14 22:02:00 +0000575
Yann E. MORINc32ad512018-08-04 10:27:41 +0200576.PHONY: prepare-sdk
577prepare-sdk: world
Wolfgang Grandegger994301a2017-07-22 13:15:40 +0200578 @$(call MESSAGE,"Rendering the SDK relocatable")
579 $(TOPDIR)/support/scripts/fix-rpath host
580 $(TOPDIR)/support/scripts/fix-rpath staging
581 $(INSTALL) -m 755 $(TOPDIR)/support/misc/relocate-sdk.sh $(HOST_DIR)/relocate-sdk.sh
Stefan Becker6697f3b2018-03-26 10:23:32 +0300582 mkdir -p $(HOST_DIR)/share/buildroot
Wolfgang Grandegger994301a2017-07-22 13:15:40 +0200583 echo $(HOST_DIR) > $(HOST_DIR)/share/buildroot/sdk-location
584
Yann E. MORINc32ad512018-08-04 10:27:41 +0200585BR2_SDK_PREFIX ?= $(GNU_TARGET_NAME)_sdk-buildroot
586.PHONY: sdk
587sdk: prepare-sdk $(BR2_TAR_HOST_DEPENDENCY)
588 @$(call MESSAGE,"Generating SDK tarball")
589 $(if $(BR2_SDK_PREFIX),,$(error BR2_SDK_PREFIX can not be empty))
590 $(Q)mkdir -p $(BINARIES_DIR)
591 $(TAR) czf "$(BINARIES_DIR)/$(BR2_SDK_PREFIX).tar.gz" \
592 --owner=0 --group=0 --numeric-owner \
593 --transform='s#^\.#$(BR2_SDK_PREFIX)#' \
594 -C $(HOST_DIR) "."
595
Yann E. MORINcb34ea52015-11-26 23:13:41 +0100596# Populating the staging with the base directories is handled by the skeleton package
Arnout Vandecappellece58db72017-07-10 01:21:17 +0200597$(STAGING_DIR):
Yann E. MORINcb34ea52015-11-26 23:13:41 +0100598 @mkdir -p $(STAGING_DIR)
Gustavo Zacarias5ad139e2010-12-31 08:39:05 -0300599 @ln -snf $(STAGING_DIR) $(BASE_DIR)/staging
Eric Andersen08782ae2002-04-26 11:45:55 +0000600
Thomas De Schampheleire7ad28652013-11-07 11:41:22 +0100601RSYNC_VCS_EXCLUSIONS = \
602 --exclude .svn --exclude .git --exclude .hg --exclude .bzr \
603 --exclude CVS
604
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000605STRIP_FIND_CMD = find $(TARGET_DIR)
606ifneq (,$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS)))
607STRIP_FIND_CMD += \( $(call finddirclauses,$(TARGET_DIR),$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) \) -prune -o
608endif
Thomas Petazzoni12d15072014-02-04 16:36:18 +0100609STRIP_FIND_CMD += -type f \( -perm /111 -o -name '*.so*' \)
Thomas De Schampheleire06635912014-04-30 21:29:02 +0200610# file exclusions:
611# - libpthread.so: a non-stripped libpthread shared library is needed for
612# proper debugging of pthread programs using gdb.
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200613# - ld.so: a non-stripped dynamic linker library is needed for valgrind
Thomas De Schampheleire06635912014-04-30 21:29:02 +0200614# - kernel modules (*.ko): do not function properly when stripped like normal
615# applications and libraries. Normally kernel modules are already excluded
616# by the executable permission check above, so the explicit exclusion is only
617# done for kernel modules with incorrect permissions.
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200618STRIP_FIND_CMD += -not \( $(call findfileclauses,libpthread*.so* ld-*.so* *.ko $(call qstrip,$(BR2_STRIP_EXCLUDE_FILES))) \) -print0
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000619
Fabio Porcedda28685d52014-06-27 14:15:57 +0200620ifeq ($(BR2_ECLIPSE_REGISTER),y)
621define TOOLCHAIN_ECLIPSE_REGISTER
622 ./support/scripts/eclipse-register-toolchain `readlink -f $(O)` \
623 $(notdir $(TARGET_CROSS)) $(BR2_ARCH)
624endef
625TARGET_FINALIZE_HOOKS += TOOLCHAIN_ECLIPSE_REGISTER
626endif
627
Fabio Porcedda33de7402014-06-27 14:15:58 +0200628# Generate locale data. Basically, we call the localedef program
629# (built by the host-localedef package) for each locale. The input
630# data comes preferably from the toolchain, or if the toolchain does
631# not have them (Linaro toolchains), we use the ones available on the
632# host machine.
633ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y)
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100634GLIBC_GENERATE_LOCALES = $(call qstrip,$(BR2_GENERATE_LOCALE))
635ifneq ($(GLIBC_GENERATE_LOCALES),)
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200636PACKAGES += host-localedef
Fabio Porcedda33de7402014-06-27 14:15:58 +0200637
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100638define GENERATE_GLIBC_LOCALES
Fabio Porcedda33de7402014-06-27 14:15:58 +0200639 $(Q)mkdir -p $(TARGET_DIR)/usr/lib/locale/
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100640 $(Q)for locale in $(GLIBC_GENERATE_LOCALES) ; do \
Fabio Porcedda33de7402014-06-27 14:15:58 +0200641 inputfile=`echo $${locale} | cut -f1 -d'.'` ; \
642 charmap=`echo $${locale} | cut -f2 -d'.' -s` ; \
643 if test -z "$${charmap}" ; then \
644 charmap="UTF-8" ; \
645 fi ; \
646 echo "Generating locale $${inputfile}.$${charmap}" ; \
647 I18NPATH=$(STAGING_DIR)/usr/share/i18n:/usr/share/i18n \
Arnout Vandecappelle0f9c0bf2017-07-05 13:14:19 +0200648 $(HOST_DIR)/bin/localedef \
Fabio Porcedda33de7402014-06-27 14:15:58 +0200649 --prefix=$(TARGET_DIR) \
650 --$(call LOWERCASE,$(BR2_ENDIAN))-endian \
651 -i $${inputfile} -f $${charmap} \
652 $${locale} ; \
653 done
654endef
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100655TARGET_FINALIZE_HOOKS += GENERATE_GLIBC_LOCALES
Fabio Porcedda33de7402014-06-27 14:15:58 +0200656endif
657endif
658
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200659ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
660LOCALE_WHITELIST = $(BUILD_DIR)/locales.nopurge
661LOCALE_NOPURGE = $(call qstrip,$(BR2_ENABLE_LOCALE_WHITELIST))
662
Valentine Barshakb7915712015-07-14 01:45:28 +0200663# This piece of junk does the following:
664# First collect the whitelist in a file.
665# Then go over all the locale dirs and for each subdir, check if it exists
666# in the whitelist file. If it doesn't, kill it.
667# Finally, specifically for X11, regenerate locale.dir from the whitelist.
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200668define PURGE_LOCALES
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200669 rm -f $(LOCALE_WHITELIST)
Sven Neumann201adef2014-06-18 11:23:30 +0200670 for i in $(LOCALE_NOPURGE) locale-archive; do echo $$i >> $(LOCALE_WHITELIST); done
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200671
Arnout Vandecappelle36480ea2015-07-13 23:00:34 +0200672 for dir in $(wildcard $(addprefix $(TARGET_DIR),/usr/share/locale /usr/share/X11/locale /usr/lib/locale)); \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200673 do \
Arnout Vandecappelle805240b2015-07-14 01:45:27 +0200674 for langdir in $$dir/*; \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200675 do \
Trent Piephobbe29b92016-03-08 21:02:15 +0000676 if [ -e "$${langdir}" ]; \
677 then \
678 grep -qx "$${langdir##*/}" $(LOCALE_WHITELIST) || rm -rf $$langdir; \
679 fi \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200680 done; \
681 done
Valentine Barshakb7915712015-07-14 01:45:28 +0200682 if [ -d $(TARGET_DIR)/usr/share/X11/locale ]; \
683 then \
684 for lang in $(LOCALE_NOPURGE); \
685 do \
686 if [ -f $(TARGET_DIR)/usr/share/X11/locale/$$lang/XLC_LOCALE ]; \
687 then \
688 echo "$$lang/XLC_LOCALE: $$lang"; \
689 fi \
690 done > $(TARGET_DIR)/usr/share/X11/locale/locale.dir; \
691 fi
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200692endef
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200693TARGET_FINALIZE_HOOKS += PURGE_LOCALES
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200694endif
695
Fabio Porceddad4c0c642014-02-20 15:26:18 +0100696$(TARGETS_ROOTFS): target-finalize
697
Yann E. MORIN27659732018-03-31 11:05:51 +0200698# Avoid the rootfs name leaking down the dependency chain
699target-finalize: ROOTFS=
700
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200701.PHONY: target-finalize
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200702target-finalize: $(PACKAGES)
Thomas De Schampheleire6f6a2cf2014-05-12 16:19:27 +0200703 @$(call MESSAGE,"Finalizing target directory")
Yann E. MORIN1b8ad2d2017-10-28 17:30:59 +0200704 # Check files that are touched by more than one package
705 ./support/scripts/check-uniq-files -t target $(BUILD_DIR)/packages-file-list.txt
706 ./support/scripts/check-uniq-files -t staging $(BUILD_DIR)/packages-file-list-staging.txt
707 ./support/scripts/check-uniq-files -t host $(BUILD_DIR)/packages-file-list-host.txt
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200708 $(foreach hook,$(TARGET_FINALIZE_HOOKS),$($(hook))$(sep))
Valentine Barshak94d3aa12012-10-02 08:52:15 +0000709 rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/share/aclocal \
Luca Ceresolidf99efb2013-03-06 07:14:26 +0000710 $(TARGET_DIR)/usr/lib/pkgconfig $(TARGET_DIR)/usr/share/pkgconfig \
711 $(TARGET_DIR)/usr/lib/cmake $(TARGET_DIR)/usr/share/cmake
712 find $(TARGET_DIR)/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f
Jérôme Pouiller179c5f12016-11-09 11:57:27 +0100713 find $(TARGET_DIR)/lib/ $(TARGET_DIR)/usr/lib/ $(TARGET_DIR)/usr/libexec/ \
Herve Codina87f3ede2015-09-15 15:27:06 +0200714 \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
Malte Starostike48a72e2010-07-24 21:29:56 +0200715ifneq ($(BR2_PACKAGE_GDB),y)
716 rm -rf $(TARGET_DIR)/usr/share/gdb
717endif
Maxime Hadjinlian76d1c722015-07-12 17:25:57 +0200718ifneq ($(BR2_PACKAGE_BASH),y)
719 rm -rf $(TARGET_DIR)/usr/share/bash-completion
720endif
721ifneq ($(BR2_PACKAGE_ZSH),y)
722 rm -rf $(TARGET_DIR)/usr/share/zsh
723endif
Peter Korsgaard32faf352009-04-07 21:04:31 +0000724 rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/man
Peter Korsgaard32faf352009-04-07 21:04:31 +0000725 rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info
Thomas Petazzoni87b06372010-04-10 22:42:45 +0200726 rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc
Paulius Zaleckasd701a822010-05-05 13:09:36 +0300727 rm -rf $(TARGET_DIR)/usr/share/gtk-doc
Gaël PORTAY5b7013c2016-11-22 15:53:33 -0500728 rmdir $(TARGET_DIR)/usr/share 2>/dev/null || true
Andrew Parlane26f215d2015-03-18 15:10:29 +0000729 $(STRIP_FIND_CMD) | xargs -0 $(STRIPCMD) 2>/dev/null || true
Mike Frysinger8101c9a2010-11-17 18:55:43 -0500730
Richard Braun6ae78862012-11-20 07:18:11 +0000731# See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads
732# besides the one in which crash occurred; or SIGTRAP kills my program when
733# I set a breakpoint"
734ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
Jérôme Pouiller179c5f12016-11-09 11:57:27 +0100735 find $(TARGET_DIR)/lib/ -type f -name 'libpthread*.so*' | \
Thomas Petazzoni52e70732013-08-20 13:03:03 +0200736 xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG)
Richard Braun6ae78862012-11-20 07:18:11 +0000737endif
738
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200739# Valgrind needs ld.so with enough information, so only strip
740# debugging symbols.
Jérôme Pouiller179c5f12016-11-09 11:57:27 +0100741 find $(TARGET_DIR)/lib/ -type f -name 'ld-*.so*' | \
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200742 xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG)
Thomas Petazzoni9c407232016-01-01 22:23:39 +0100743 test -f $(TARGET_DIR)/etc/ld.so.conf && \
744 { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true
745 test -d $(TARGET_DIR)/etc/ld.so.conf.d && \
746 { echo "ERROR: we shouldn't have a /etc/ld.so.conf.d directory"; exit 1; } || true
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200747 mkdir -p $(TARGET_DIR)/etc
Peter Korsgaard451a8872012-02-14 12:58:25 +0100748 ( \
749 echo "NAME=Buildroot"; \
750 echo "VERSION=$(BR2_VERSION_FULL)"; \
751 echo "ID=buildroot"; \
752 echo "VERSION_ID=$(BR2_VERSION)"; \
753 echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \
Chris Lesiak5f2dc442018-01-23 17:13:50 -0600754 ) > $(TARGET_DIR)/usr/lib/os-release
755 ln -sf ../usr/lib/os-release $(TARGET_DIR)/etc
Peter Korsgaard912ea812009-09-30 17:40:24 +0200756
Wolfgang Grandegger5f4ca512017-07-20 16:35:16 +0200757 @$(call MESSAGE,"Sanitizing RPATH in target tree")
758 $(TOPDIR)/support/scripts/fix-rpath target
759
Luca Ceresolie9b77122013-04-08 06:50:16 +0000760 @$(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \
761 $(call MESSAGE,"Copying overlay $(d)"); \
Peter Seiderer0db34522016-04-23 21:18:29 +0200762 rsync -a --ignore-times --keep-dirlinks $(RSYNC_VCS_EXCLUSIONS) \
Guido Martínez361d3572014-11-21 13:19:01 -0300763 --chmod=u=rwX,go=rX --exclude .empty --exclude '*~' \
Luca Ceresolie9b77122013-04-08 06:50:16 +0000764 $(d)/ $(TARGET_DIR)$(sep))
Arnout Vandecappelle (Essensium/Mind)7f860892013-02-05 07:16:00 +0000765
Philippe Reynesdbf49782012-11-17 13:01:22 +0100766 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \
Luca Ceresoli1b9b1682013-04-08 06:50:14 +0000767 $(call MESSAGE,"Executing post-build script $(s)"); \
Yann E. MORIN9806bf52014-03-10 21:51:33 +0100768 $(EXTRA_ENV) $(s) $(TARGET_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Daniel Mackeed7d872009-07-08 22:46:58 +0200769
Chris Lesiakbbe5c6d2018-04-30 12:14:11 -0500770 touch $(TARGET_DIR)/usr
771
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200772.PHONY: target-post-image
Thomas Petazzonifbb3b862014-02-28 21:05:27 +0100773target-post-image: $(TARGETS_ROOTFS) target-finalize
Yann E. MORIN543107d2018-03-31 11:06:01 +0200774 @rm -f $(ROOTFS_COMMON_TAR)
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000775 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_IMAGE_SCRIPT)), \
Luca Ceresoli6d90a692013-04-08 06:50:15 +0000776 $(call MESSAGE,"Executing post-image script $(s)"); \
Yann E. MORIN9806bf52014-03-10 21:51:33 +0100777 $(EXTRA_ENV) $(s) $(BINARIES_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000778
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200779.PHONY: source
Thomas Petazzoni17dcad02015-04-26 11:51:12 +0200780source: $(foreach p,$(PACKAGES),$(p)-all-source)
Eric Andersenffde94b2001-12-22 00:56:11 +0000781
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200782.PHONY: _external-deps external-deps
Thomas Petazzoni7e679cc2015-04-26 11:51:01 +0200783_external-deps: $(foreach p,$(PACKAGES),$(p)-all-external-deps)
Peter Korsgaard155971e2008-03-04 12:19:16 +0000784external-deps:
Thomas Petazzoni7e679cc2015-04-26 11:51:01 +0200785 @$(MAKE1) -Bs $(EXTRAMAKEARGS) _external-deps | sort -u
Peter Korsgaard155971e2008-03-04 12:19:16 +0000786
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200787.PHONY: legal-info-clean
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200788legal-info-clean:
789 @rm -fr $(LEGAL_INFO_DIR)
790
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200791.PHONY: legal-info-prepare
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200792legal-info-prepare: $(LEGAL_INFO_DIR)
Yann E. MORIN719726a2017-07-05 13:20:43 +0200793 @$(call MESSAGE,"Buildroot $(BR2_VERSION_FULL) Collecting legal info")
794 @$(call legal-license-file,buildroot,buildroot,support/legal-info,COPYING,COPYING,HOST)
Clayton Shotwellaf629e42014-07-21 08:46:31 -0500795 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,TARGET)
796 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,HOST)
Rahul Bedarkard116b432017-03-30 19:13:48 +0530797 @$(call legal-manifest,buildroot,$(BR2_VERSION_FULL),GPL-2.0+,COPYING,not saved,not saved,HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200798 @$(call legal-warning,the Buildroot source code has not been saved)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100799 @cp $(BR2_CONFIG) $(LEGAL_INFO_DIR)/buildroot.config
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200800
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200801.PHONY: legal-info
Thomas Petazzoni5db22b32015-04-12 18:37:50 +0200802legal-info: dirs legal-info-clean legal-info-prepare $(foreach p,$(PACKAGES),$(p)-all-legal-info) \
Thomas De Schampheleire858334c2013-11-12 09:47:59 +0100803 $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200804 @cat support/legal-info/README.header >>$(LEGAL_REPORT)
805 @if [ -r $(LEGAL_WARNINGS) ]; then \
806 cat support/legal-info/README.warnings-header \
807 $(LEGAL_WARNINGS) >>$(LEGAL_REPORT); \
808 cat $(LEGAL_WARNINGS); fi
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200809 @rm -f $(LEGAL_WARNINGS)
Yann E. MORIN7bfce062016-05-07 18:14:36 +0200810 @(cd $(LEGAL_INFO_DIR); \
811 find * -type f -exec sha256sum {} + | LC_ALL=C sort -k2 \
812 >.legal-info.sha256; \
813 mv .legal-info.sha256 legal-info.sha256)
814 @echo "Legal info produced in $(LEGAL_INFO_DIR)"
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200815
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200816.PHONY: show-targets
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200817show-targets:
Yann E. MORIN203219c2017-11-12 18:45:39 +0100818 @echo $(sort $(PACKAGES)) $(sort $(TARGETS_ROOTFS))
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200819
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200820.PHONY: show-build-order
Yann E. MORIN75fcebb2017-04-02 15:03:38 +0200821show-build-order: $(patsubst %,%-show-build-order,$(PACKAGES))
822
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200823.PHONY: graph-build
Yann E. MORINe16bf922013-12-28 18:39:11 +0100824graph-build: $(O)/build/build-time.log
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100825 @install -d $(GRAPHS_DIR)
Yann E. MORINe16bf922013-12-28 18:39:11 +0100826 $(foreach o,name build duration,./support/scripts/graph-build-time \
827 --type=histogram --order=$(o) --input=$(<) \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100828 --output=$(GRAPHS_DIR)/build.hist-$(o).$(BR_GRAPH_OUT) \
Yann E. MORIN8ae78382014-02-23 16:59:11 +0100829 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
Yann E. MORINe16bf922013-12-28 18:39:11 +0100830 $(foreach t,packages steps,./support/scripts/graph-build-time \
831 --type=pie-$(t) --input=$(<) \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100832 --output=$(GRAPHS_DIR)/build.pie-$(t).$(BR_GRAPH_OUT) \
Yann E. MORIN8ae78382014-02-23 16:59:11 +0100833 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
Yann E. MORINe16bf922013-12-28 18:39:11 +0100834
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200835.PHONY: graph-depends-requirements
Fabio Porceddad3c1c642014-06-17 11:33:54 +0200836graph-depends-requirements:
Thomas Petazzoni664f2702014-06-13 14:17:19 +0200837 @dot -? >/dev/null 2>&1 || \
Fabio Porceddad3c1c642014-06-17 11:33:54 +0200838 { echo "ERROR: The 'dot' program from Graphviz is needed for graph-depends" >&2; exit 1; }
839
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200840.PHONY: graph-depends
Fabio Porceddad3c1c642014-06-17 11:33:54 +0200841graph-depends: graph-depends-requirements
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100842 @$(INSTALL) -d $(GRAPHS_DIR)
Yann E. MORIN56eb3942014-01-07 23:46:04 +0100843 @cd "$(CONFIG_DIR)"; \
Yann E. MORIN287a8822014-05-16 23:05:13 +0200844 $(TOPDIR)/support/scripts/graph-depends $(BR2_GRAPH_DEPS_OPTS) \
Yann E. MORIN2a2eb552016-10-23 19:19:44 +0200845 --direct -o $(GRAPHS_DIR)/$(@).dot
Yann E. MORIN5e7020e2016-02-07 22:34:26 +0100846 dot $(BR2_GRAPH_DOT_OPTS) -T$(BR_GRAPH_OUT) \
847 -o $(GRAPHS_DIR)/$(@).$(BR_GRAPH_OUT) \
848 $(GRAPHS_DIR)/$(@).dot
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100849
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200850.PHONY: graph-size
Thomas Petazzoni24c75fb2015-10-17 15:33:44 +0200851graph-size:
852 $(Q)mkdir -p $(GRAPHS_DIR)
853 $(Q)$(TOPDIR)/support/scripts/size-stats --builddir $(BASE_DIR) \
854 --graph $(GRAPHS_DIR)/graph-size.$(BR_GRAPH_OUT) \
855 --file-size-csv $(GRAPHS_DIR)/file-size-stats.csv \
856 --package-size-csv $(GRAPHS_DIR)/package-size-stats.csv
857
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200858.PHONY: check-dependencies
Yann E. MORIN9dac9862016-02-07 22:34:29 +0100859check-dependencies:
860 @cd "$(CONFIG_DIR)"; \
861 $(TOPDIR)/support/scripts/graph-depends -C
862
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000863else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersen2d523c22004-10-09 01:06:03 +0000864
Arnout Vandecappelle503439f2017-06-30 19:00:33 +0200865# Some subdirectories are also package names. To avoid that "make linux"
866# on an unconfigured tree produces "Nothing to be done", add an explicit
867# rule for it.
Arnout Vandecappellec3493062017-07-01 10:24:46 +0200868# Also for 'all' we error out and ask the user to configure first.
Arnout Vandecappelle503439f2017-06-30 19:00:33 +0200869.PHONY: linux toolchain
Peter Korsgaard51825df2017-07-03 12:24:05 +0200870linux toolchain all: outputmakefile
Arnout Vandecappelle503439f2017-06-30 19:00:33 +0200871 $(error Please configure Buildroot first (e.g. "make menuconfig"))
872 @exit 1
873
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000874endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
875
Eric Andersen2d523c22004-10-09 01:06:03 +0000876# configuration
877# ---------------------------------------------------------------------------
878
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200879HOSTCFLAGS = $(CFLAGS_FOR_BUILD)
Bernhard Reutner-Fischerc0d7d4e2007-07-09 18:23:20 +0000880export HOSTCFLAGS
881
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200882.PHONY: prepare-kconfig
Yann E. MORIN4802db32016-07-17 12:34:26 +0200883prepare-kconfig: outputmakefile $(BUILD_DIR)/.br2-external.in
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200884
Peter Korsgaard2cc210c2010-06-20 23:05:32 +0200885$(BUILD_DIR)/buildroot-config/%onf:
886 mkdir -p $(@D)/lxdialog
Bjørn Forsman0515fe42015-01-03 00:58:47 +0100887 PKG_CONFIG_PATH="$(HOST_PKG_CONFIG_PATH)" $(MAKE) CC="$(HOSTCC_NOCCACHE)" HOSTCC="$(HOSTCC_NOCCACHE)" \
888 obj=$(@D) -C $(CONFIG) -f Makefile.br $(@F)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200889
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000890DEFCONFIG = $(call qstrip,$(BR2_DEFCONFIG))
891
892# We don't want to fully expand BR2_DEFCONFIG here, so Kconfig will
893# recognize that if it's still at its default $(CONFIG_DIR)/defconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200894COMMON_CONFIG_ENV = \
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000895 BR2_DEFCONFIG='$(call qstrip,$(value BR2_DEFCONFIG))' \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200896 KCONFIG_AUTOCONFIG=$(BUILD_DIR)/buildroot-config/auto.conf \
897 KCONFIG_AUTOHEADER=$(BUILD_DIR)/buildroot-config/autoconf.h \
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200898 KCONFIG_TRISTATE=$(BUILD_DIR)/buildroot-config/tristate.config \
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100899 BR2_CONFIG=$(BR2_CONFIG) \
Arnout Vandecappelle12825f72015-12-31 01:34:13 +0100900 HOST_GCC_VERSION="$(HOSTCC_VERSION)" \
Yann E. MORIN4802db32016-07-17 12:34:26 +0200901 BUILD_DIR=$(BUILD_DIR) \
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200902 SKIP_LEGACY=
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200903
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200904xconfig: $(BUILD_DIR)/buildroot-config/qconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100905 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200906
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200907gconfig: $(BUILD_DIR)/buildroot-config/gconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100908 @$(COMMON_CONFIG_ENV) srctree=$(TOPDIR) $< $(CONFIG_CONFIG_IN)
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200909
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200910menuconfig: $(BUILD_DIR)/buildroot-config/mconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100911 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000912
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200913nconfig: $(BUILD_DIR)/buildroot-config/nconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100914 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000915
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200916config: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200917 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000918
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200919# For the config targets that automatically select options, we pass
920# SKIP_LEGACY=y to disable the legacy options. However, in that case
921# no values are set for the legacy options so a subsequent oldconfig
922# will query them. Therefore, run an additional olddefconfig.
923
Arnout Vandecappelledab80982017-07-21 03:05:29 +0200924randconfig allyesconfig alldefconfig allnoconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle26070512017-07-21 03:05:28 +0200925 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --$@ $(CONFIG_CONFIG_IN)
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200926 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Eric Andersen2d523c22004-10-09 01:06:03 +0000927
Arnout Vandecappelle26070512017-07-21 03:05:28 +0200928randpackageconfig allyespackageconfig allnopackageconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100929 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200930 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \
Will Wagner39ca6d52010-01-11 12:28:50 +0000931 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Arnout Vandecappelle26070512017-07-21 03:05:28 +0200932 $< --$(subst package,,$@) $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000933 @rm -f $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200934 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Peter Korsgaard66527702009-10-04 21:57:12 +0200935
Arnout Vandecappelle26070512017-07-21 03:05:28 +0200936oldconfig silentoldconfig olddefconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
937 @$(COMMON_CONFIG_ENV) $< --$@ $(CONFIG_CONFIG_IN)
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000938
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200939defconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000940 @$(COMMON_CONFIG_ENV) $< --defconfig$(if $(DEFCONFIG),=$(DEFCONFIG)) $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000941
Yann E. MORIN666edc72016-07-17 12:34:22 +0200942define percent_defconfig
Arnout Vandecappelle32babbf2015-02-02 16:34:46 +0100943# Override the BR2_DEFCONFIG from COMMON_CONFIG_ENV with the new defconfig
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200944%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(1)/configs/%_defconfig prepare-kconfig
Yann E. MORIN666edc72016-07-17 12:34:22 +0200945 @$$(COMMON_CONFIG_ENV) BR2_DEFCONFIG=$(1)/configs/$$@ \
946 $$< --defconfig=$(1)/configs/$$@ $$(CONFIG_CONFIG_IN)
947endef
Yann E. MORIN339e1c92016-10-14 16:39:22 +0200948$(eval $(foreach d,$(call reverse,$(TOPDIR) $(BR2_EXTERNAL_DIRS)),$(call percent_defconfig,$(d))$(sep)))
Thomas Petazzoni6f381192010-08-11 20:01:23 +0200949
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200950savedefconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000951 @$(COMMON_CONFIG_ENV) $< \
952 --savedefconfig=$(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig) \
953 $(CONFIG_CONFIG_IN)
Herve Codinaf71a6212015-06-04 10:16:33 +0200954 @$(SED) '/BR2_DEFCONFIG=/d' $(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig)
Eric Andersen2d523c22004-10-09 01:06:03 +0000955
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000956.PHONY: defconfig savedefconfig
Peter Korsgaard406053d2009-11-20 14:05:48 +0100957
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200958################################################################################
Eric Andersen2d523c22004-10-09 01:06:03 +0000959#
960# Cleanup and misc junk
961#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200962################################################################################
Yann E. MORINaefad532010-09-26 10:56:12 +0200963
Arnout Vandecappelle (Essensium/Mind)ca9a0b22017-08-04 18:31:29 +0200964# staging and target directories do NOT list these as
965# dependencies anywhere else
Peter Korsgaard3d020622018-03-31 21:03:57 +0200966$(BUILD_DIR) $(BASE_TARGET_DIR) $(HOST_DIR) $(BINARIES_DIR) $(LEGAL_INFO_DIR) $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST):
Arnout Vandecappelle (Essensium/Mind)ca9a0b22017-08-04 18:31:29 +0200967 @mkdir -p $@
968
Yann E. MORINaefad532010-09-26 10:56:12 +0200969# outputmakefile generates a Makefile in the output directory, if using a
970# separate output directory. This allows convenient use of make in the
971# output directory.
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200972.PHONY: outputmakefile
Yann E. MORINaefad532010-09-26 10:56:12 +0200973outputmakefile:
974ifeq ($(NEED_WRAPPER),y)
Thomas Petazzonif082c7c2011-08-31 23:35:02 +0200975 $(Q)$(TOPDIR)/support/scripts/mkmakefile $(TOPDIR) $(O)
Yann E. MORINaefad532010-09-26 10:56:12 +0200976endif
977
Yann E. MORIN4802db32016-07-17 12:34:26 +0200978# Even though the target is a real file, we mark it as PHONY as we
979# want it to be re-generated each time make is invoked, in case the
980# value of BR2_EXTERNAL is changed.
981.PHONY: $(BUILD_DIR)/.br2-external.in
982$(BUILD_DIR)/.br2-external.in: $(BUILD_DIR)
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200983 $(Q)support/scripts/br2-external -k -o "$(@)" $(BR2_EXTERNAL)
Yann E. MORIN4802db32016-07-17 12:34:26 +0200984
Yann E. MORIN376fda82015-11-04 22:42:39 +0100985# printvars prints all the variables currently defined in our
986# Makefiles. Alternatively, if a non-empty VARS variable is passed,
987# only the variables matching the make pattern passed in VARS are
988# displayed.
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200989.PHONY: printvars
Émeric Vigier98b616d2013-05-29 00:41:11 +0200990printvars:
Arnout Vandecappellecd036c92017-06-15 00:11:34 +0200991 @:$(foreach V, \
Yann E. MORIN376fda82015-11-04 22:42:39 +0100992 $(sort $(if $(VARS),$(filter $(VARS),$(.VARIABLES)),$(.VARIABLES))), \
Émeric Vigier98b616d2013-05-29 00:41:11 +0200993 $(if $(filter-out environment% default automatic, \
994 $(origin $V)), \
Yann E. MORINba636032017-03-29 11:43:05 +0200995 $(if $(QUOTED_VARS),\
996 $(info $V='$(subst ','\'',$(if $(RAW_VARS),$(value $V),$($V)))'), \
997 $(info $V=$(if $(RAW_VARS),$(value $V),$($V))))))
998# ' Syntax colouring...
Émeric Vigier98b616d2013-05-29 00:41:11 +0200999
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +02001000.PHONY: clean
Eric Andersen2d523c22004-10-09 01:06:03 +00001001clean:
Yann E. MORIN7e9870c2018-03-31 11:05:50 +02001002 rm -rf $(BASE_TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) $(HOST_DIR_SYMLINK) \
Arnout Vandecappellee0c60672014-03-17 09:22:33 +01001003 $(BUILD_DIR) $(BASE_DIR)/staging \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +01001004 $(LEGAL_INFO_DIR) $(GRAPHS_DIR)
Eric Andersen2d523c22004-10-09 01:06:03 +00001005
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +02001006.PHONY: distclean
Eric Andersen2d523c22004-10-09 01:06:03 +00001007distclean: clean
Danomi Manchego171d4102016-11-22 21:23:02 -05001008ifeq ($(O),$(CURDIR)/output)
Peter Korsgaard406053d2009-11-20 14:05:48 +01001009 rm -rf $(O)
1010endif
Yann E. MORINe76b4fd2016-09-11 15:55:46 +02001011 rm -rf $(TOPDIR)/dl $(BR2_CONFIG) $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/..config.tmp \
Yann E. MORINf8c0e452015-10-22 22:34:00 +02001012 $(CONFIG_DIR)/.auto.deps $(BR2_EXTERNAL_FILE)
Eric Andersen2d523c22004-10-09 01:06:03 +00001013
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +02001014.PHONY: help
Yann E. MORINa49b81e2016-04-16 23:20:17 +02001015help:
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001016 @echo 'Cleaning:'
Peter Korsgaard406053d2009-11-20 14:05:48 +01001017 @echo ' clean - delete all files created by build'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001018 @echo ' distclean - delete all non-source files (including .config)'
1019 @echo
1020 @echo 'Build:'
1021 @echo ' all - make world'
Fabio Porcedda2a786412013-01-14 22:02:00 +00001022 @echo ' toolchain - build toolchain'
Wolfgang Grandegger994301a2017-07-22 13:15:40 +02001023 @echo ' sdk - build relocatable SDK'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001024 @echo
1025 @echo 'Configuration:'
1026 @echo ' menuconfig - interactive curses-based configurator'
Peter Korsgaard15f5bef2011-02-01 08:41:01 +01001027 @echo ' nconfig - interactive ncurses-based configurator'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +02001028 @echo ' xconfig - interactive Qt-based configurator'
Peter Korsgaard2b42aae2010-06-05 21:09:05 +02001029 @echo ' gconfig - interactive GTK-based configurator'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001030 @echo ' oldconfig - resolve any unresolved symbols in .config'
Thomas Petazzoni9db3b472013-04-04 11:24:25 +00001031 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
1032 @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +02001033 @echo ' randconfig - New config with random answer to all options'
Arnout Vandecappelle (Essensium/Mind)27aa7ae2018-07-22 23:34:45 +02001034 @echo ' defconfig - New config with default answer to all options;'
1035 @echo ' BR2_DEFCONFIG, if set on the command line, is used as input'
Frank Hunleth5c1a75c2015-02-11 08:14:49 -05001036 @echo ' savedefconfig - Save current config to BR2_DEFCONFIG (minimal config)'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +02001037 @echo ' allyesconfig - New config where all options are accepted with yes'
1038 @echo ' allnoconfig - New config where all options are answered with no'
Arnout Vandecappelledab80982017-07-21 03:05:29 +02001039 @echo ' alldefconfig - New config where all options are set to default'
Peter Korsgaard66527702009-10-04 21:57:12 +02001040 @echo ' randpackageconfig - New config with random answer to package options'
1041 @echo ' allyespackageconfig - New config where pkg options are accepted with yes'
1042 @echo ' allnopackageconfig - New config where package options are answered with no'
Arnout Vandecappelleb1e0b6d2015-03-21 20:49:47 +01001043 @echo
1044 @echo 'Package-specific:'
1045 @echo ' <pkg> - Build and install <pkg> and all its dependencies'
1046 @echo ' <pkg>-source - Only download the source files for <pkg>'
1047 @echo ' <pkg>-extract - Extract <pkg> sources'
1048 @echo ' <pkg>-patch - Apply patches to <pkg>'
1049 @echo ' <pkg>-depends - Build <pkg>'\''s dependencies'
1050 @echo ' <pkg>-configure - Build <pkg> up to the configure step'
1051 @echo ' <pkg>-build - Build <pkg> up to the build step'
Yann E. MORIN56cf5612016-10-23 17:28:51 +02001052 @echo ' <pkg>-show-depends - List packages on which <pkg> depends'
1053 @echo ' <pkg>-show-rdepends - List packages which have <pkg> as a dependency'
George Redivoca9b17a2018-03-31 18:35:43 +02001054 @echo ' <pkg>-show-recursive-depends'
1055 @echo ' - Recursively list packages on which <pkg> depends'
1056 @echo ' <pkg>-show-recursive-rdepends'
1057 @echo ' - Recursively list packages which have <pkg> as a dependency'
Arnout Vandecappelleb1e0b6d2015-03-21 20:49:47 +01001058 @echo ' <pkg>-graph-depends - Generate a graph of <pkg>'\''s dependencies'
Yann E. MORIN2a2eb552016-10-23 19:19:44 +02001059 @echo ' <pkg>-graph-rdepends - Generate a graph of <pkg>'\''s reverse dependencies'
Arnout Vandecappelleb1e0b6d2015-03-21 20:49:47 +01001060 @echo ' <pkg>-dirclean - Remove <pkg> build directory'
1061 @echo ' <pkg>-reconfigure - Restart the build from the configure step'
1062 @echo ' <pkg>-rebuild - Restart the build from the build step'
Yann E. MORIN66a5fc72016-06-04 18:30:48 +02001063 $(foreach p,$(HELP_PACKAGES), \
1064 @echo $(sep) \
1065 @echo '$($(p)_NAME):' $(sep) \
1066 $($(p)_HELP_CMDS)$(sep))
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001067 @echo
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001068 @echo 'Documentation:'
Thomas De Schampheleire55ecab12013-09-19 12:47:14 +02001069 @echo ' manual - build manual in all formats'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001070 @echo ' manual-html - build manual in HTML'
1071 @echo ' manual-split-html - build manual in split HTML'
1072 @echo ' manual-pdf - build manual in PDF'
Thomas De Schampheleire462e9912013-10-18 22:31:26 +02001073 @echo ' manual-text - build manual in text'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001074 @echo ' manual-epub - build manual in ePub'
Yann E. MORINe16bf922013-12-28 18:39:11 +01001075 @echo ' graph-build - generate graphs of the build times'
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +01001076 @echo ' graph-depends - generate graph of the dependency tree'
Thomas Petazzoni24c75fb2015-10-17 15:33:44 +02001077 @echo ' graph-size - generate stats of the filesystem size'
Yann E. MORINde6377e2015-04-23 23:04:06 +02001078 @echo ' list-defconfigs - list all defconfigs (pre-configured minimal systems)'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001079 @echo
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001080 @echo 'Miscellaneous:'
1081 @echo ' source - download all sources needed for offline-build'
Peter Korsgaard155971e2008-03-04 12:19:16 +00001082 @echo ' external-deps - list external packages used'
Luca Ceresoli7e76f902012-05-17 19:33:00 +02001083 @echo ' legal-info - generate info about license compliance'
Yann E. MORINba636032017-03-29 11:43:05 +02001084 @echo ' printvars - dump all the internal variables'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001085 @echo
Peter Korsgaard15f5bef2011-02-01 08:41:01 +01001086 @echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build'
1087 @echo ' make O=dir - Locate all output files in "dir", including .config'
1088 @echo
Arnout Vandecappellef42a5802015-03-21 20:49:46 +01001089 @echo 'For further details, see README, generate the Buildroot manual, or consult'
1090 @echo 'it on-line at http://buildroot.org/docs.html'
1091 @echo
1092
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001093# List the defconfig files
1094# $(1): base directory
1095# $(2): br2-external name, empty for bundled
1096define list-defconfigs
1097 @first=true; \
1098 for defconfig in $(1)/configs/*_defconfig; do \
1099 [ -f "$${defconfig}" ] || continue; \
1100 if $${first}; then \
1101 if [ "$(2)" ]; then \
Yann E. MORIN49117c12016-10-14 16:39:23 +02001102 printf 'External configs in "$(call qstrip,$(2))":\n'; \
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001103 else \
1104 printf "Built-in configs:\n"; \
1105 fi; \
1106 first=false; \
1107 fi; \
1108 defconfig="$${defconfig##*/}"; \
1109 printf " %-35s - Build for %s\n" "$${defconfig}" "$${defconfig%_defconfig}"; \
1110 done; \
1111 $${first} || printf "\n"
1112endef
1113
1114# We iterate over BR2_EXTERNAL_NAMES rather than BR2_EXTERNAL_DIRS,
1115# because we want to display the name of the br2-external tree.
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +02001116.PHONY: list-defconfigs
Arnout Vandecappellef42a5802015-03-21 20:49:46 +01001117list-defconfigs:
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001118 $(call list-defconfigs,$(TOPDIR))
1119 $(foreach name,$(BR2_EXTERNAL_NAMES),\
Yann E. MORIN49117c12016-10-14 16:39:23 +02001120 $(call list-defconfigs,$(BR2_EXTERNAL_$(name)_PATH),\
1121 $(BR2_EXTERNAL_$(name)_DESC))$(sep))
Bernhard Reutner-Fischerba2e7e02007-06-25 10:56:13 +00001122
Fabio Porceddac3e49d62014-04-23 10:39:23 +02001123release: OUT = buildroot-$(BR2_VERSION)
Peter Korsgaard0dca7062010-11-04 00:00:00 +01001124
Peter Korsgaard134ab1c2012-02-03 22:03:29 +01001125# Create release tarballs. We need to fiddle a bit to add the generated
1126# documentation to the git output
Peter Korsgaard0dca7062010-11-04 00:00:00 +01001127release:
Peter Korsgaardc6715b62013-09-17 13:42:07 +02001128 git archive --format=tar --prefix=$(OUT)/ HEAD > $(OUT).tar
Thomas De Schampheleire462e9912013-10-18 22:31:26 +02001129 $(MAKE) O=$(OUT) manual-html manual-text manual-pdf
Thomas De Schampheleire15cb9872015-07-17 12:20:35 +02001130 $(MAKE) O=$(OUT) manual-clean
Peter Korsgaard134ab1c2012-02-03 22:03:29 +01001131 tar rf $(OUT).tar $(OUT)
1132 gzip -9 -c < $(OUT).tar > $(OUT).tar.gz
1133 bzip2 -9 -c < $(OUT).tar > $(OUT).tar.bz2
1134 rm -rf $(OUT) $(OUT).tar
Peter Korsgaarde62d2ec2009-01-15 19:36:06 +00001135
Arnout Vandecappelle (Essensium/Mind)2b91ab72012-03-11 12:16:39 +01001136print-version:
1137 @echo $(BR2_VERSION_FULL)
1138
Thomas Petazzoni12902412018-08-11 12:44:23 +02001139check-package:
1140 find $(TOPDIR) -type f \( -name '*.mk' -o -name '*.hash' -o -name 'Config.*' \) \
1141 -exec ./utils/check-package {} +
1142
Thomas Petazzonib287ea62017-07-02 18:13:22 +02001143.PHONY: .gitlab-ci.yml
1144.gitlab-ci.yml: .gitlab-ci.yml.in
1145 cp $< $@
1146 (cd configs; LC_ALL=C ls -1 *_defconfig) | sed 's/$$/: *defconfig/' >> $@
1147 ./support/testing/run-tests -l 2>&1 | sed -r -e '/^test_run \((.*)\).*/!d; s//\1: *runtime_test/' | LC_ALL=C sort >> $@
Arnout Vandecappelle4f863d72017-02-14 00:23:03 +01001148
Thomas Petazzonib7285d02012-04-17 16:45:22 +02001149include docs/manual/manual.mk
Peter Seidererb9d2d4c2017-11-21 20:13:30 +01001150-include $(foreach dir,$(BR2_EXTERNAL_DIRS),$(sort $(wildcard $(dir)/docs/*/*.mk)))
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001151
Peter Korsgaard66527702009-10-04 21:57:12 +02001152.PHONY: $(noconfig_targets)
Guido Martínezbee57452014-11-21 13:19:00 -03001153
Samuel Martin173135d2016-10-17 23:05:43 +02001154endif #umask / $(CURDIR) / $(O)