blob: 3ba149050c59d6b88d525a25e2ad653cc6f74b47 [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>
Luca Ceresoli9af3d3f2016-02-01 15:52:20 +01005# Copyright (C) 2014-2016 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
Kurt Van Dijck3f4c72c2016-06-19 06:12:06 +020027# we want bash as shell
28SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
29 else if [ -x /bin/bash ]; then echo /bin/bash; \
30 else echo sh; fi; fi)
31
Samuel Martin916e6142016-10-17 23:05:42 +020032# Set O variable if not already done on the command line;
33# or avoid confusing packages that can use the O=<dir> syntax for out-of-tree
34# build by preventing it from being forwarded to sub-make calls.
35ifneq ("$(origin O)", "command line")
Samuel Martin173135d2016-10-17 23:05:43 +020036O := $(CURDIR)/output
Samuel Martin916e6142016-10-17 23:05:42 +020037else
38# Other packages might also support Linux-style out of tree builds
39# with the O=<dir> syntax (E.G. BusyBox does). As make automatically
40# forwards command line variable definitions those packages get very
41# confused. Fix this by telling make to not do so.
42MAKEOVERRIDES :=
43# Strangely enough O is still passed to submakes with MAKEOVERRIDES
44# (with make 3.81 atleast), the only thing that changes is the output
45# of the origin function (command line -> environment).
46# Unfortunately some packages don't look at origin (E.G. uClibc 0.9.31+)
47# To really make O go away, we have to override it.
48override O := $(O)
49endif
50
51# Check if the current Buildroot execution meets all the pre-requisites.
52# If they are not met, Buildroot will actually do its job in a sub-make meeting
Samuel Martin173135d2016-10-17 23:05:43 +020053# its pre-requisites, which are:
Samuel Martin916e6142016-10-17 23:05:42 +020054# 1- Permissive enough umask:
55# Wrong or too restrictive umask will prevent Buildroot and packages from
56# creating files and directories.
Samuel Martin173135d2016-10-17 23:05:43 +020057# 2- Absolute canonical CWD (i.e. $(CURDIR)):
58# Otherwise, some packages will use CWD as-is, others will compute its
59# absolute canonical path. This makes harder tracking and fixing host
60# machine path leaks.
61# 3- Absolute canonical output location (i.e. $(O)):
62# For the same reason as the one for CWD.
63
64# Remove the trailing '/.' from $(O) as it can be added by the makefile wrapper
65# installed in the $(O) directory.
66# Also remove the trailing '/' the user can set when on the command line.
67override O := $(patsubst %/,%,$(patsubst %.,%,$(O)))
68# Make sure $(O) actually exists before calling realpath on it; this is to
69# avoid empty CANONICAL_O in case on non-existing entry.
70CANONICAL_O := $(shell mkdir -p $(O) >/dev/null 2>&1)$(realpath $(O))
71
72CANONICAL_CURDIR = $(realpath $(CURDIR))
Samuel Martin916e6142016-10-17 23:05:42 +020073
74REQ_UMASK = 0022
75
Samuel Martin173135d2016-10-17 23:05:43 +020076# Make sure O= is passed (with its absolute canonical path) everywhere the
77# toplevel makefile is called back.
78EXTRAMAKEARGS := O=$(CANONICAL_O)
Samuel Martin916e6142016-10-17 23:05:42 +020079
80# Check Buildroot execution pre-requisites here.
Samuel Martin173135d2016-10-17 23:05:43 +020081ifneq ($(shell umask):$(CURDIR):$(O),$(REQ_UMASK):$(CANONICAL_CURDIR):$(CANONICAL_O))
Guido Martínez1e9f6042015-07-17 00:33:07 +020082.PHONY: _all $(MAKECMDGOALS)
Guido Martínezbee57452014-11-21 13:19:00 -030083
Guido Martínez1e9f6042015-07-17 00:33:07 +020084$(MAKECMDGOALS): _all
85 @:
Guido Martínezbee57452014-11-21 13:19:00 -030086
Guido Martínez1e9f6042015-07-17 00:33:07 +020087_all:
Samuel Martin173135d2016-10-17 23:05:43 +020088 @umask $(REQ_UMASK) && \
89 $(MAKE) -C $(CANONICAL_CURDIR) --no-print-directory \
90 $(MAKECMDGOALS) $(EXTRAMAKEARGS)
Guido Martínezbee57452014-11-21 13:19:00 -030091
Samuel Martin173135d2016-10-17 23:05:43 +020092else # umask / $(CURDIR) / $(O)
Guido Martínezbee57452014-11-21 13:19:00 -030093
Yann E. MORIN5309e2e2014-10-11 19:34:42 +020094# This is our default rule, so must come first
95all:
96
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010097# Set and export the version string
Peter Korsgaardcff53ce2016-09-01 14:23:11 +020098export BR2_VERSION := 2016.11-git
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010099
Gustavo Zacarias2ac7da02015-07-14 18:30:39 -0300100# Save running make version since it's clobbered by the make package
101RUNNING_MAKE_VERSION := $(MAKE_VERSION)
102
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +0100103# Check for minimal make version (note: this check will break at make 10.x)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200104MIN_MAKE_VERSION = 3.81
Gustavo Zacarias2ac7da02015-07-14 18:30:39 -0300105ifneq ($(firstword $(sort $(RUNNING_MAKE_VERSION) $(MIN_MAKE_VERSION))),$(MIN_MAKE_VERSION))
106$(error You have make '$(RUNNING_MAKE_VERSION)' installed. GNU make >= $(MIN_MAKE_VERSION) is required)
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +0100107endif
108
Fabio Porcedda2afb23a2014-02-14 10:55:08 +0100109# Parallel execution of this Makefile is disabled because it changes
110# the packages building order, that can be a problem for two reasons:
111# - If a package has an unspecified optional dependency and that
112# dependency is present when the package is built, it is used,
113# otherwise it isn't (but compilation happily proceeds) so the end
114# result will differ if the order is swapped due to parallel
115# building.
116# - Also changing the building order can be a problem if two packages
117# manipulate the same file in the target directory.
118#
119# Taking into account the above considerations, if you still want to execute
120# this top-level Makefile in parallel comment the ".NOTPARALLEL" line and
Fabio Porcedda1668e1d2015-07-01 10:10:46 +0200121# use the -j<jobs> option when building, e.g:
122# make -j$((`getconf _NPROCESSORS_ONLN`+1))
Yann E. MORIN2d239bb2010-10-31 17:35:09 +0100123.NOTPARALLEL:
124
Peter Korsgaard6b1dd452009-11-30 17:29:01 +0100125# absolute path
Samuel Martine0499942016-03-09 23:58:43 +0100126TOPDIR := $(CURDIR)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200127CONFIG_CONFIG_IN = Config.in
128CONFIG = support/kconfig
129DATE := $(shell date +%Y%m%d)
Eric Andersen2d523c22004-10-09 01:06:03 +0000130
Yann E. MORIN8258df22010-10-31 17:35:12 +0100131# Compute the full local version string so packages can use it as-is
132# Need to export it, so it can be got from environment in children (eg. mconf)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200133export BR2_VERSION_FULL := $(BR2_VERSION)$(shell $(TOPDIR)/support/scripts/setlocalversion)
Yann E. MORIN8258df22010-10-31 17:35:12 +0100134
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200135noconfig_targets := menuconfig nconfig gconfig xconfig config oldconfig randconfig \
Yann E. MORIN063f4ee2013-12-27 00:04:29 +0100136 defconfig %_defconfig allyesconfig allnoconfig silentoldconfig release \
Peter Korsgaard66527702009-10-04 21:57:12 +0200137 randpackageconfig allyespackageconfig allnopackageconfig \
Yann E. MORINe76b4fd2016-09-11 15:55:46 +0200138 print-version olddefconfig distclean
Bernhard Reutner-Fischer9e250352006-12-02 19:01:10 +0000139
Thomas Petazzoni256f1422015-04-26 11:51:14 +0200140# Some global targets do not trigger a build, but are used to collect
141# metadata, or do various checks. When such targets are triggered,
142# some packages should not do their configuration sanity
143# checks. Provide them a BR_BUILDING variable set to 'y' when we're
144# actually building and they should do their sanity checks.
145#
146# We're building in two situations: when MAKECMDGOALS is empty
147# (default target is to build), or when MAKECMDGOALS contains
148# something else than one of the nobuild_targets.
Thomas Petazzoni4feeb2d2015-04-26 11:51:16 +0200149nobuild_targets := source source-check \
150 legal-info external-deps _external-deps \
Ignacy Gawędzki093a1162016-02-26 17:48:05 +0100151 clean distclean help
Thomas Petazzoni256f1422015-04-26 11:51:14 +0200152ifeq ($(MAKECMDGOALS),)
153BR_BUILDING = y
154else ifneq ($(filter-out $(nobuild_targets),$(MAKECMDGOALS)),)
155BR_BUILDING = y
156endif
157
Yann E. MORIN242e0082016-07-17 12:34:21 +0200158# Include some helper macros and variables
159include support/misc/utils.mk
Peter Korsgaardf85f2de2009-01-25 20:19:01 +0000160
Samuel Martin0b1b2c42016-10-17 23:05:41 +0200161# Set variables related to in-tree or out-of-tree build.
Samuel Martin173135d2016-10-17 23:05:43 +0200162# Here, both $(O) and $(CURDIR) are absolute canonical paths.
163ifeq ($(O),$(CURDIR)/output)
164CONFIG_DIR := $(CURDIR)
Samuel Martin0b1b2c42016-10-17 23:05:41 +0200165NEED_WRAPPER =
166else
167CONFIG_DIR := $(O)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200168NEED_WRAPPER = y
Will Wagner39ca6d52010-01-11 12:28:50 +0000169endif
170
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200171# 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
173# line doesn't affect the environment of $(shell ..) calls, so
174# explictly throw away any output from 'cd' here.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200175export CDPATH :=
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200176BASE_DIR := $(shell mkdir -p $(O) && cd $(O) >/dev/null && pwd)
177$(if $(BASE_DIR),, $(error output directory "$(O)" does not exist))
178
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100179
180# Handling of BR2_EXTERNAL.
181#
182# The value of BR2_EXTERNAL is stored in .br-external in the output directory.
Yann E. MORIN20cd4972016-10-14 16:39:20 +0200183# The location of the external.mk makefile fragments is computed in that file.
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200184# 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.
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100187
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200188BR2_EXTERNAL_FILE = $(BASE_DIR)/.br-external.mk
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100189-include $(BR2_EXTERNAL_FILE)
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200190$(shell support/scripts/br2-external \
191 -m -o '$(BR2_EXTERNAL_FILE)' $(BR2_EXTERNAL))
192BR2_EXTERNAL_ERROR =
193include $(BR2_EXTERNAL_FILE)
194ifneq ($(BR2_EXTERNAL_ERROR),)
195$(error $(BR2_EXTERNAL_ERROR))
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100196endif
197
Masahiro Yamada5b686a02015-04-08 09:53:36 +0900198# To make sure that the environment variable overrides the .config option,
Arnout Vandecappelle67680212014-02-04 16:18:51 +0100199# set this before including .config.
200ifneq ($(BR2_DL_DIR),)
201DL_DIR := $(BR2_DL_DIR)
202endif
Gustavo Zacarias3901cb52015-10-15 10:24:39 -0300203ifneq ($(BR2_CCACHE_DIR),)
204BR_CACHE_DIR := $(BR2_CCACHE_DIR)
205endif
Arnout Vandecappelle67680212014-02-04 16:18:51 +0100206
Yann E. MORINf1fedbb2013-12-28 18:39:13 +0100207# Need that early, before we scan packages
208# Avoids doing the $(or...) everytime
Yann E. MORIN22d05902014-04-13 22:42:37 +0200209BR_GRAPH_OUT := $(or $(BR2_GRAPH_OUT),pdf)
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100210
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200211BUILD_DIR := $(BASE_DIR)/build
212BINARIES_DIR := $(BASE_DIR)/images
213TARGET_DIR := $(BASE_DIR)/target
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200214# initial definition so that 'make clean' works for most users, even without
215# .config. HOST_DIR will be overwritten later when .config is included.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200216HOST_DIR := $(BASE_DIR)/host
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100217GRAPHS_DIR := $(BASE_DIR)/graphs
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200218
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200219LEGAL_INFO_DIR = $(BASE_DIR)/legal-info
220REDIST_SOURCES_DIR_TARGET = $(LEGAL_INFO_DIR)/sources
221REDIST_SOURCES_DIR_HOST = $(LEGAL_INFO_DIR)/host-sources
222LICENSE_FILES_DIR_TARGET = $(LEGAL_INFO_DIR)/licenses
223LICENSE_FILES_DIR_HOST = $(LEGAL_INFO_DIR)/host-licenses
224LEGAL_MANIFEST_CSV_TARGET = $(LEGAL_INFO_DIR)/manifest.csv
225LEGAL_MANIFEST_CSV_HOST = $(LEGAL_INFO_DIR)/host-manifest.csv
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200226LEGAL_WARNINGS = $(LEGAL_INFO_DIR)/.warnings
227LEGAL_REPORT = $(LEGAL_INFO_DIR)/README
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200228
Yann E. MORINb1e079b2016-07-17 12:34:25 +0200229################################################################################
230#
231# staging and target directories do NOT list these as
232# dependencies anywhere else
233#
234################################################################################
235$(BUILD_DIR) $(TARGET_DIR) $(HOST_DIR) $(BINARIES_DIR) $(LEGAL_INFO_DIR) $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST):
236 @mkdir -p $@
237
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200238BR2_CONFIG = $(CONFIG_DIR)/.config
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000239
Ulf Samuelssona1b06512008-03-28 07:31:28 +0000240# Pull in the user's configuration file
241ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100242-include $(BR2_CONFIG)
Ulf Samuelsson7521f372007-09-12 04:34:16 +0000243endif
Eric Andersen2d523c22004-10-09 01:06:03 +0000244
Gilles Chanteperdrixa5f35132016-06-14 17:31:10 +0200245# timezone and locale may affect build output
246ifeq ($(BR2_REPRODUCIBLE),y)
247export TZ=UTC
248export LANG=C
249export LC_ALL=C
250endif
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)
Ulf Samuelsson54e93322008-07-06 07:34:41 +0000318
Masahiro Yamadaa9847d12015-04-09 20:28:55 +0900319export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTLD
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100320export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000321
Yann E. MORIN91ea9332015-11-09 20:00:21 +0100322# Determine the userland we are running on.
323#
324# Note that, despite its name, we are not interested in the actual
325# architecture name. This is mostly used to determine whether some
326# of the binary tools (e.g. pre-built external toolchains) can run
327# on the current host. So we need to know if the userland we're
328# running on can actually run those toolchains.
329#
330# For example, a 64-bit prebuilt toolchain will not run on a 64-bit
331# kernel if the userland is 32-bit (e.g. in a chroot for example).
332#
333# So, we extract the first part of the tuple the host gcc was
334# configured to generate code for; we assume this is our userland.
335#
Romain Naour86229d62016-01-20 22:53:19 +0100336export HOSTARCH := $(shell LC_ALL=C $(HOSTCC_NOCCACHE) -v 2>&1 | \
Yann E. MORIN91ea9332015-11-09 20:00:21 +0100337 sed -e '/^Target: \([^-]*\).*/!d' \
338 -e 's//\1/' \
339 -e 's/i.86/x86/' \
340 -e 's/sun4u/sparc64/' \
341 -e 's/arm.*/arm/' \
342 -e 's/sa110/arm/' \
343 -e 's/ppc64/powerpc64/' \
344 -e 's/ppc/powerpc/' \
345 -e 's/macppc/powerpc/' \
346 -e 's/sh.*/sh/' )
347
Arnout Vandecappelle12825f72015-12-31 01:34:13 +0100348HOSTCC_VERSION := $(shell $(HOSTCC_NOCCACHE) --version | \
349 sed -n -r 's/^.* ([0-9]*)\.([0-9]*)\.([0-9]*)[ ]*.*/\1 \2/p')
350
351# For gcc >= 5.x, we only need the major version.
352ifneq ($(firstword $(HOSTCC_VERSION)),4)
353HOSTCC_VERSION := $(firstword $(HOSTCC_VERSION))
354endif
355
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000356# Make sure pkg-config doesn't look outside the buildroot tree
Bjørn Forsman0515fe42015-01-03 00:58:47 +0100357HOST_PKG_CONFIG_PATH := $(PKG_CONFIG_PATH)
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000358unexport PKG_CONFIG_PATH
Charles Manning4f607ed2012-12-02 11:13:04 +0000359unexport PKG_CONFIG_SYSROOT_DIR
Peter Korsgaardbdf472d2013-09-11 14:15:15 +0200360unexport PKG_CONFIG_LIBDIR
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000361
Thomas Petazzoni91123a62012-07-02 04:21:14 +0000362# Having DESTDIR set in the environment confuses the installation
363# steps of some packages.
364unexport DESTDIR
365
Gustavo Zacariasbed61a72013-07-11 11:37:33 -0300366# Causes breakage with packages that needs host-ruby
367unexport RUBYOPT
368
Thomas De Schampheleire3ed0ead2014-08-15 15:40:34 +0200369include package/pkg-utils.mk
Yann E. MORINab6a6212014-10-03 19:01:52 +0200370include package/doc-asciidoc.mk
Thomas De Schampheleire3ed0ead2014-08-15 15:40:34 +0200371
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000372ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersenffde94b2001-12-22 00:56:11 +0000373
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200374################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000375#
376# Hide troublesome environment variables from sub processes
377#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200378################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000379unexport CROSS_COMPILE
380unexport ARCH
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100381unexport CC
Nicolas Dichtel376737d2016-04-14 16:58:32 +0200382unexport LD
383unexport AR
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100384unexport CXX
385unexport CPP
Tom Rini344c5a22015-11-17 14:04:04 -0500386unexport RANLIB
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100387unexport CFLAGS
388unexport CXXFLAGS
389unexport GREP_OPTIONS
Nixf5437a62014-01-26 22:58:02 +0000390unexport TAR_OPTIONS
Peter Korsgaard12c9f7d2011-12-12 10:25:50 +0100391unexport CONFIG_SITE
Stephan Hoffmann32314b42012-08-17 13:54:16 +0200392unexport QMAKESPEC
Nathan Lynch20ca0082012-07-10 07:37:22 +0000393unexport TERMINFO
Risto Avila6d3b9752014-09-24 04:37:13 +0000394unexport MACHINE
Guido Martínez2e323302015-07-25 16:07:39 -0300395unexport O
Bernhard Reutner-Fischer7dcbbfb2007-06-02 09:05:40 +0000396
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200397GNU_HOST_NAME := $(shell support/gnuconfig/config.guess)
Thomas Petazzoni60281cb2010-04-10 23:17:25 +0200398
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200399PACKAGES :=
Yann E. MORIN0ea851c2015-10-22 22:33:56 +0200400PACKAGES_ALL :=
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000401
Peter Korsgaard89464a92009-09-30 17:39:44 +0200402# silent mode requested?
Fabio Porceddafffb68a2015-01-01 21:03:50 +0100403QUIET := $(if $(findstring s,$(filter-out --%,$(MAKEFLAGS))),-q)
Peter Korsgaard89464a92009-09-30 17:39:44 +0200404
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200405# Strip off the annoying quoting
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200406ARCH := $(call qstrip,$(BR2_ARCH))
Thomas Petazzoni65e80a02010-04-28 23:40:57 +0200407
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200408KERNEL_ARCH := $(shell echo "$(ARCH)" | sed -e "s/-.*//" \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200409 -e s/i.86/i386/ -e s/sun4u/sparc64/ \
Maxime Ripardf59aeca2013-05-06 00:14:55 +0000410 -e s/arcle/arc/ \
Peter Korsgaard8332ffa2013-06-10 14:04:03 +0200411 -e s/arceb/arc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200412 -e s/arm.*/arm/ -e s/sa110/arm/ \
Bamvor Jian Zhang827ba462015-03-18 17:49:48 +0800413 -e s/aarch64.*/arm64/ \
Mike Frysinger871db072011-02-07 00:49:11 -0500414 -e s/bfin/blackfin/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200415 -e s/parisc64/parisc/ \
Jeff Baileya426a912014-05-24 23:59:22 -0700416 -e s/powerpc64.*/powerpc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200417 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
Jan Drazilc2205812014-03-19 13:01:05 +0100418 -e s/sh.*/sh/ \
419 -e s/microblazeel/microblaze/)
Peter Korsgaard891973f2010-10-17 23:32:37 +0200420
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200421ZCAT := $(call qstrip,$(BR2_ZCAT))
422BZCAT := $(call qstrip,$(BR2_BZCAT))
423XZCAT := $(call qstrip,$(BR2_XZCAT))
424TAR_OPTIONS = $(call qstrip,$(BR2_TAR_OPTIONS)) -xf
Bernhard Reutner-Fischer1dbe6e32007-08-21 17:56:47 +0000425
Gustavo Zacariasa2b4f7f2011-02-02 10:05:56 -0300426# packages compiled for the host go here
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200427HOST_DIR := $(call qstrip,$(BR2_HOST_DIR))
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200428
Samuel Martincaa329b2014-04-15 00:31:04 +0200429# Quotes are needed for spaces and all in the original PATH content.
Samuel Martinc7d660b2014-04-15 00:31:05 +0200430BR_PATH = "$(HOST_DIR)/bin:$(HOST_DIR)/sbin:$(HOST_DIR)/usr/bin:$(HOST_DIR)/usr/sbin:$(PATH)"
Samuel Martincaa329b2014-04-15 00:31:04 +0200431
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000432# Location of a file giving a big fat warning that output/target
433# should not be used as the root filesystem.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200434TARGET_DIR_WARNING_FILE = $(TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000435
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100436ifeq ($(BR2_CCACHE),y)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200437CCACHE := $(HOST_DIR)/usr/bin/ccache
Gustavo Zacarias3901cb52015-10-15 10:24:39 -0300438BR_CACHE_DIR ?= $(call qstrip,$(BR2_CCACHE_DIR))
Arnout Vandecappellee7ab4b42014-02-04 16:18:50 +0100439export BR_CACHE_DIR
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200440HOSTCC := $(CCACHE) $(HOSTCC)
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100441HOSTCXX := $(CCACHE) $(HOSTCXX)
Arnout Vandecappelle792f1272015-10-04 13:28:56 +0100442else
443export BR_NO_CCACHE
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100444endif
445
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000446# Scripts in support/ or post-build scripts may need to reference
447# these locations, so export them so it is easier to use
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100448export BR2_CONFIG
Gilles Chanteperdrixa5f35132016-06-14 17:31:10 +0200449export BR2_REPRODUCIBLE
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000450export TARGET_DIR
451export STAGING_DIR
452export HOST_DIR
453export BINARIES_DIR
Peter Korsgaard1300cb52013-01-14 10:02:29 +0100454export BASE_DIR
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000455
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200456################################################################################
Eric Andersen08782ae2002-04-26 11:45:55 +0000457#
Eric Andersenef407d32004-01-29 23:21:00 +0000458# You should probably leave this stuff alone unless you know
Eric Andersen08782ae2002-04-26 11:45:55 +0000459# what you are doing.
460#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200461################################################################################
Manuel Novoa III d632d422003-11-01 05:34:41 +0000462
Bernhard Reutner-Fischer6547bce2007-08-22 12:35:41 +0000463all: world
Eric Andersenffde94b2001-12-22 00:56:11 +0000464
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000465# Include legacy before the other things, because package .mk files
466# may rely on it.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000467include Makefile.legacy
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000468
Thomas Petazzoni486253d2012-04-17 16:45:23 +0200469include package/Makefile.in
Thomas De Schampheleirea7926682012-02-08 17:22:16 +0100470include support/dependencies/dependencies.mk
471
Yann E. MORIN11c10762014-07-27 21:28:32 +0200472include toolchain/*.mk
Thomas Petazzoni8b0905b2013-10-08 20:17:01 +0200473include toolchain/*/*.mk
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000474
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200475# Include the package override file if one has been provided in the
476# configuration.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200477PACKAGE_OVERRIDE_FILE = $(call qstrip,$(BR2_PACKAGE_OVERRIDE_FILE))
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200478ifneq ($(PACKAGE_OVERRIDE_FILE),)
479-include $(PACKAGE_OVERRIDE_FILE)
480endif
481
Jérôme Pouiller741cbcc2013-09-03 10:45:41 +0200482include $(sort $(wildcard package/*/*.mk))
Eric Andersend06645d2005-02-10 03:06:39 +0000483
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100484include boot/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100485include linux/linux.mk
Philippe Reynes00b1ff62014-05-05 09:52:13 +0200486include fs/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100487
Yann E. MORIN20cd4972016-10-14 16:39:20 +0200488# If using a br2-external tree, the BR2_EXTERNAL_$(NAME)_PATH variables
489# are also present in the .config file. Since .config is included after
490# we defined them in the Makefile, the values for those variables are
491# quoted. We just include the generated Makefile fragment .br2-external.mk
492# a third time, which will set those variables to the un-quoted values.
Yann E. MORINfc34cf72016-10-14 16:39:17 +0200493include $(BR2_EXTERNAL_FILE)
494
Yann E. MORIN64e12a32016-10-14 16:39:14 +0200495# Nothing to include if no BR2_EXTERNAL tree in use
Yann E. MORIN20cd4972016-10-14 16:39:20 +0200496include $(BR2_EXTERNAL_MKS)
Thomas Petazzoni8eb8aaf2013-12-05 20:11:11 +0100497
Thomas Petazzoni3e1b33a2016-01-01 01:01:23 +0100498# Now we are sure we have all the packages scanned and defined. We now
499# check for each package in the list of enabled packages, that all its
500# dependencies are indeed enabled.
501#
502# Only trigger the check for default builds. If the user forces building
503# a package, even if not enabled in the configuration, we want to accept
504# it.
505#
506ifeq ($(MAKECMDGOALS),)
507
508define CHECK_ONE_DEPENDENCY
509ifeq ($$($(2)_TYPE),target)
510ifeq ($$($(2)_IS_VIRTUAL),)
511ifneq ($$($$($(2)_KCONFIG_VAR)),y)
512$$(error $$($(2)_NAME) is in the dependency chain of $$($(1)_NAME) that \
513has added it to its _DEPENDENCIES variable without selecting it or \
514depending on it from Config.in)
515endif
516endif
517endif
518endef
519
520$(foreach pkg,$(call UPPERCASE,$(PACKAGES)),\
521 $(foreach dep,$(call UPPERCASE,$($(pkg)_FINAL_ALL_DEPENDENCIES)),\
522 $(eval $(call CHECK_ONE_DEPENDENCY,$(pkg),$(dep))$(sep))))
523
524endif
525
Thomas Petazzonid21a1762013-06-30 21:29:06 +0200526dirs: $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
Arnout Vandecappellee0c60672014-03-17 09:22:33 +0100527 $(HOST_DIR) $(BINARIES_DIR)
Ulf Samuelssonf958d892007-08-14 07:45:01 +0000528
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100529$(BUILD_DIR)/buildroot-config/auto.conf: $(BR2_CONFIG)
Peter Korsgaard879058a2013-12-16 13:49:28 +0100530 $(MAKE1) $(EXTRAMAKEARGS) HOSTCC="$(HOSTCC_NOCCACHE)" HOSTCXX="$(HOSTCXX_NOCCACHE)" silentoldconfig
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200531
532prepare: $(BUILD_DIR)/buildroot-config/auto.conf
533
Fabio Porceddaa2487752014-02-14 10:55:06 +0100534world: target-post-image
Fabio Porcedda2a786412013-01-14 22:02:00 +0000535
536.PHONY: all world toolchain dirs clean distclean source outputmakefile \
Arnout Vandecappelledf79e352015-03-21 20:49:45 +0100537 legal-info legal-info-prepare legal-info-clean printvars help \
Thomas Petazzoni7800b962015-04-26 11:51:03 +0200538 list-defconfigs target-finalize target-post-image source-check
Jon Nelsonc79e9982002-01-05 20:26:15 +0000539
Yann E. MORINcb34ea52015-11-26 23:13:41 +0100540# Populating the staging with the base directories is handled by the skeleton package
Eric Andersen08782ae2002-04-26 11:45:55 +0000541$(STAGING_DIR):
Yann E. MORINcb34ea52015-11-26 23:13:41 +0100542 @mkdir -p $(STAGING_DIR)
Gustavo Zacarias5ad139e2010-12-31 08:39:05 -0300543 @ln -snf $(STAGING_DIR) $(BASE_DIR)/staging
Eric Andersen08782ae2002-04-26 11:45:55 +0000544
Thomas De Schampheleire7ad28652013-11-07 11:41:22 +0100545RSYNC_VCS_EXCLUSIONS = \
546 --exclude .svn --exclude .git --exclude .hg --exclude .bzr \
547 --exclude CVS
548
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000549STRIP_FIND_CMD = find $(TARGET_DIR)
550ifneq (,$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS)))
551STRIP_FIND_CMD += \( $(call finddirclauses,$(TARGET_DIR),$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) \) -prune -o
552endif
Thomas Petazzoni12d15072014-02-04 16:36:18 +0100553STRIP_FIND_CMD += -type f \( -perm /111 -o -name '*.so*' \)
Thomas De Schampheleire06635912014-04-30 21:29:02 +0200554# file exclusions:
555# - libpthread.so: a non-stripped libpthread shared library is needed for
556# proper debugging of pthread programs using gdb.
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200557# - ld.so: a non-stripped dynamic linker library is needed for valgrind
Thomas De Schampheleire06635912014-04-30 21:29:02 +0200558# - kernel modules (*.ko): do not function properly when stripped like normal
559# applications and libraries. Normally kernel modules are already excluded
560# by the executable permission check above, so the explicit exclusion is only
561# done for kernel modules with incorrect permissions.
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200562STRIP_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 +0000563
Fabio Porcedda28685d52014-06-27 14:15:57 +0200564ifeq ($(BR2_ECLIPSE_REGISTER),y)
565define TOOLCHAIN_ECLIPSE_REGISTER
566 ./support/scripts/eclipse-register-toolchain `readlink -f $(O)` \
567 $(notdir $(TARGET_CROSS)) $(BR2_ARCH)
568endef
569TARGET_FINALIZE_HOOKS += TOOLCHAIN_ECLIPSE_REGISTER
570endif
571
Fabio Porcedda33de7402014-06-27 14:15:58 +0200572# Generate locale data. Basically, we call the localedef program
573# (built by the host-localedef package) for each locale. The input
574# data comes preferably from the toolchain, or if the toolchain does
575# not have them (Linaro toolchains), we use the ones available on the
576# host machine.
577ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y)
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100578GLIBC_GENERATE_LOCALES = $(call qstrip,$(BR2_GENERATE_LOCALE))
579ifneq ($(GLIBC_GENERATE_LOCALES),)
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200580PACKAGES += host-localedef
Fabio Porcedda33de7402014-06-27 14:15:58 +0200581
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100582define GENERATE_GLIBC_LOCALES
Fabio Porcedda33de7402014-06-27 14:15:58 +0200583 $(Q)mkdir -p $(TARGET_DIR)/usr/lib/locale/
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100584 $(Q)for locale in $(GLIBC_GENERATE_LOCALES) ; do \
Fabio Porcedda33de7402014-06-27 14:15:58 +0200585 inputfile=`echo $${locale} | cut -f1 -d'.'` ; \
586 charmap=`echo $${locale} | cut -f2 -d'.' -s` ; \
587 if test -z "$${charmap}" ; then \
588 charmap="UTF-8" ; \
589 fi ; \
590 echo "Generating locale $${inputfile}.$${charmap}" ; \
591 I18NPATH=$(STAGING_DIR)/usr/share/i18n:/usr/share/i18n \
592 $(HOST_DIR)/usr/bin/localedef \
593 --prefix=$(TARGET_DIR) \
594 --$(call LOWERCASE,$(BR2_ENDIAN))-endian \
595 -i $${inputfile} -f $${charmap} \
596 $${locale} ; \
597 done
598endef
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100599TARGET_FINALIZE_HOOKS += GENERATE_GLIBC_LOCALES
Fabio Porcedda33de7402014-06-27 14:15:58 +0200600endif
601endif
602
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200603ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
604LOCALE_WHITELIST = $(BUILD_DIR)/locales.nopurge
605LOCALE_NOPURGE = $(call qstrip,$(BR2_ENABLE_LOCALE_WHITELIST))
606
Valentine Barshakb7915712015-07-14 01:45:28 +0200607# This piece of junk does the following:
608# First collect the whitelist in a file.
609# Then go over all the locale dirs and for each subdir, check if it exists
610# in the whitelist file. If it doesn't, kill it.
611# Finally, specifically for X11, regenerate locale.dir from the whitelist.
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200612define PURGE_LOCALES
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200613 rm -f $(LOCALE_WHITELIST)
Sven Neumann201adef2014-06-18 11:23:30 +0200614 for i in $(LOCALE_NOPURGE) locale-archive; do echo $$i >> $(LOCALE_WHITELIST); done
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200615
Arnout Vandecappelle36480ea2015-07-13 23:00:34 +0200616 for dir in $(wildcard $(addprefix $(TARGET_DIR),/usr/share/locale /usr/share/X11/locale /usr/lib/locale)); \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200617 do \
Arnout Vandecappelle805240b2015-07-14 01:45:27 +0200618 for langdir in $$dir/*; \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200619 do \
Trent Piephobbe29b92016-03-08 21:02:15 +0000620 if [ -e "$${langdir}" ]; \
621 then \
622 grep -qx "$${langdir##*/}" $(LOCALE_WHITELIST) || rm -rf $$langdir; \
623 fi \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200624 done; \
625 done
Valentine Barshakb7915712015-07-14 01:45:28 +0200626 if [ -d $(TARGET_DIR)/usr/share/X11/locale ]; \
627 then \
628 for lang in $(LOCALE_NOPURGE); \
629 do \
630 if [ -f $(TARGET_DIR)/usr/share/X11/locale/$$lang/XLC_LOCALE ]; \
631 then \
632 echo "$$lang/XLC_LOCALE: $$lang"; \
633 fi \
634 done > $(TARGET_DIR)/usr/share/X11/locale/locale.dir; \
635 fi
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200636endef
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200637TARGET_FINALIZE_HOOKS += PURGE_LOCALES
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200638endif
639
Fabio Porceddad4c0c642014-02-20 15:26:18 +0100640$(TARGETS_ROOTFS): target-finalize
641
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200642target-finalize: $(PACKAGES)
Thomas De Schampheleire6f6a2cf2014-05-12 16:19:27 +0200643 @$(call MESSAGE,"Finalizing target directory")
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200644 $(foreach hook,$(TARGET_FINALIZE_HOOKS),$($(hook))$(sep))
Valentine Barshak94d3aa12012-10-02 08:52:15 +0000645 rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/share/aclocal \
Luca Ceresolidf99efb2013-03-06 07:14:26 +0000646 $(TARGET_DIR)/usr/lib/pkgconfig $(TARGET_DIR)/usr/share/pkgconfig \
647 $(TARGET_DIR)/usr/lib/cmake $(TARGET_DIR)/usr/share/cmake
648 find $(TARGET_DIR)/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f
Herve Codina87f3ede2015-09-15 15:27:06 +0200649 find $(TARGET_DIR)/lib $(TARGET_DIR)/usr/lib $(TARGET_DIR)/usr/libexec \
650 \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
Malte Starostike48a72e2010-07-24 21:29:56 +0200651ifneq ($(BR2_PACKAGE_GDB),y)
652 rm -rf $(TARGET_DIR)/usr/share/gdb
653endif
Maxime Hadjinlian76d1c722015-07-12 17:25:57 +0200654ifneq ($(BR2_PACKAGE_BASH),y)
655 rm -rf $(TARGET_DIR)/usr/share/bash-completion
656endif
657ifneq ($(BR2_PACKAGE_ZSH),y)
658 rm -rf $(TARGET_DIR)/usr/share/zsh
659endif
Peter Korsgaard32faf352009-04-07 21:04:31 +0000660 rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/man
Peter Korsgaard32faf352009-04-07 21:04:31 +0000661 rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info
Thomas Petazzoni87b06372010-04-10 22:42:45 +0200662 rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc
Paulius Zaleckasd701a822010-05-05 13:09:36 +0300663 rm -rf $(TARGET_DIR)/usr/share/gtk-doc
Mike Frysinger68ad6d42010-11-18 16:25:58 -0500664 -rmdir $(TARGET_DIR)/usr/share 2>/dev/null
Andrew Parlane26f215d2015-03-18 15:10:29 +0000665 $(STRIP_FIND_CMD) | xargs -0 $(STRIPCMD) 2>/dev/null || true
Mike Frysinger8101c9a2010-11-17 18:55:43 -0500666
Richard Braun6ae78862012-11-20 07:18:11 +0000667# See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads
668# besides the one in which crash occurred; or SIGTRAP kills my program when
669# I set a breakpoint"
670ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
671 find $(TARGET_DIR)/lib -type f -name 'libpthread*.so*' | \
Thomas Petazzoni52e70732013-08-20 13:03:03 +0200672 xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG)
Richard Braun6ae78862012-11-20 07:18:11 +0000673endif
674
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200675# Valgrind needs ld.so with enough information, so only strip
676# debugging symbols.
677 find $(TARGET_DIR)/lib -type f -name 'ld-*.so*' | \
678 xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG)
Thomas Petazzoni9c407232016-01-01 22:23:39 +0100679 test -f $(TARGET_DIR)/etc/ld.so.conf && \
680 { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true
681 test -d $(TARGET_DIR)/etc/ld.so.conf.d && \
682 { echo "ERROR: we shouldn't have a /etc/ld.so.conf.d directory"; exit 1; } || true
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200683 mkdir -p $(TARGET_DIR)/etc
Peter Korsgaard451a8872012-02-14 12:58:25 +0100684 ( \
685 echo "NAME=Buildroot"; \
686 echo "VERSION=$(BR2_VERSION_FULL)"; \
687 echo "ID=buildroot"; \
688 echo "VERSION_ID=$(BR2_VERSION)"; \
689 echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \
690 ) > $(TARGET_DIR)/etc/os-release
Peter Korsgaard912ea812009-09-30 17:40:24 +0200691
Luca Ceresolie9b77122013-04-08 06:50:16 +0000692 @$(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \
693 $(call MESSAGE,"Copying overlay $(d)"); \
Peter Seiderer0db34522016-04-23 21:18:29 +0200694 rsync -a --ignore-times --keep-dirlinks $(RSYNC_VCS_EXCLUSIONS) \
Guido Martínez361d3572014-11-21 13:19:01 -0300695 --chmod=u=rwX,go=rX --exclude .empty --exclude '*~' \
Luca Ceresolie9b77122013-04-08 06:50:16 +0000696 $(d)/ $(TARGET_DIR)$(sep))
Arnout Vandecappelle (Essensium/Mind)7f860892013-02-05 07:16:00 +0000697
Philippe Reynesdbf49782012-11-17 13:01:22 +0100698 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \
Luca Ceresoli1b9b1682013-04-08 06:50:14 +0000699 $(call MESSAGE,"Executing post-build script $(s)"); \
Yann E. MORIN9806bf52014-03-10 21:51:33 +0100700 $(EXTRA_ENV) $(s) $(TARGET_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Daniel Mackeed7d872009-07-08 22:46:58 +0200701
Thomas Petazzonifbb3b862014-02-28 21:05:27 +0100702target-post-image: $(TARGETS_ROOTFS) target-finalize
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000703 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_IMAGE_SCRIPT)), \
Luca Ceresoli6d90a692013-04-08 06:50:15 +0000704 $(call MESSAGE,"Executing post-image script $(s)"); \
Yann E. MORIN9806bf52014-03-10 21:51:33 +0100705 $(EXTRA_ENV) $(s) $(BINARIES_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000706
Thomas Petazzoni17dcad02015-04-26 11:51:12 +0200707source: $(foreach p,$(PACKAGES),$(p)-all-source)
Eric Andersenffde94b2001-12-22 00:56:11 +0000708
Thomas Petazzoni7e679cc2015-04-26 11:51:01 +0200709_external-deps: $(foreach p,$(PACKAGES),$(p)-all-external-deps)
Peter Korsgaard155971e2008-03-04 12:19:16 +0000710external-deps:
Thomas Petazzoni7e679cc2015-04-26 11:51:01 +0200711 @$(MAKE1) -Bs $(EXTRAMAKEARGS) _external-deps | sort -u
Peter Korsgaard155971e2008-03-04 12:19:16 +0000712
Thomas Petazzoni7800b962015-04-26 11:51:03 +0200713# check if download URLs are outdated
Thomas Petazzonif9b92822015-04-26 11:51:06 +0200714source-check: $(foreach p,$(PACKAGES),$(p)-all-source-check)
Thomas Petazzoni7800b962015-04-26 11:51:03 +0200715
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200716legal-info-clean:
717 @rm -fr $(LEGAL_INFO_DIR)
718
719legal-info-prepare: $(LEGAL_INFO_DIR)
720 @$(call MESSAGE,"Collecting legal info")
Thomas De Schampheleire366f17f2013-11-12 09:47:58 +0100721 @$(call legal-license-file,buildroot,COPYING,COPYING,HOST)
Clayton Shotwellaf629e42014-07-21 08:46:31 -0500722 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,TARGET)
723 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,HOST)
724 @$(call legal-manifest,buildroot,$(BR2_VERSION_FULL),GPLv2+,COPYING,not saved,not saved,HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200725 @$(call legal-warning,the Buildroot source code has not been saved)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100726 @cp $(BR2_CONFIG) $(LEGAL_INFO_DIR)/buildroot.config
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200727
Thomas Petazzoni5db22b32015-04-12 18:37:50 +0200728legal-info: dirs legal-info-clean legal-info-prepare $(foreach p,$(PACKAGES),$(p)-all-legal-info) \
Thomas De Schampheleire858334c2013-11-12 09:47:59 +0100729 $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200730 @cat support/legal-info/README.header >>$(LEGAL_REPORT)
731 @if [ -r $(LEGAL_WARNINGS) ]; then \
732 cat support/legal-info/README.warnings-header \
733 $(LEGAL_WARNINGS) >>$(LEGAL_REPORT); \
734 cat $(LEGAL_WARNINGS); fi
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200735 @rm -f $(LEGAL_WARNINGS)
Yann E. MORIN7bfce062016-05-07 18:14:36 +0200736 @(cd $(LEGAL_INFO_DIR); \
737 find * -type f -exec sha256sum {} + | LC_ALL=C sort -k2 \
738 >.legal-info.sha256; \
739 mv .legal-info.sha256 legal-info.sha256)
740 @echo "Legal info produced in $(LEGAL_INFO_DIR)"
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200741
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200742show-targets:
Thomas Petazzoniadc88b82015-04-12 18:37:51 +0200743 @echo $(PACKAGES) $(TARGETS_ROOTFS)
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200744
Yann E. MORINe16bf922013-12-28 18:39:11 +0100745graph-build: $(O)/build/build-time.log
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100746 @install -d $(GRAPHS_DIR)
Yann E. MORINe16bf922013-12-28 18:39:11 +0100747 $(foreach o,name build duration,./support/scripts/graph-build-time \
748 --type=histogram --order=$(o) --input=$(<) \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100749 --output=$(GRAPHS_DIR)/build.hist-$(o).$(BR_GRAPH_OUT) \
Yann E. MORIN8ae78382014-02-23 16:59:11 +0100750 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
Yann E. MORINe16bf922013-12-28 18:39:11 +0100751 $(foreach t,packages steps,./support/scripts/graph-build-time \
752 --type=pie-$(t) --input=$(<) \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100753 --output=$(GRAPHS_DIR)/build.pie-$(t).$(BR_GRAPH_OUT) \
Yann E. MORIN8ae78382014-02-23 16:59:11 +0100754 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
Yann E. MORINe16bf922013-12-28 18:39:11 +0100755
Fabio Porceddad3c1c642014-06-17 11:33:54 +0200756graph-depends-requirements:
Thomas Petazzoni664f2702014-06-13 14:17:19 +0200757 @dot -? >/dev/null 2>&1 || \
Fabio Porceddad3c1c642014-06-17 11:33:54 +0200758 { echo "ERROR: The 'dot' program from Graphviz is needed for graph-depends" >&2; exit 1; }
759
760graph-depends: graph-depends-requirements
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100761 @$(INSTALL) -d $(GRAPHS_DIR)
Yann E. MORIN56eb3942014-01-07 23:46:04 +0100762 @cd "$(CONFIG_DIR)"; \
Yann E. MORIN287a8822014-05-16 23:05:13 +0200763 $(TOPDIR)/support/scripts/graph-depends $(BR2_GRAPH_DEPS_OPTS) \
Yann E. MORIN5e7020e2016-02-07 22:34:26 +0100764 -o $(GRAPHS_DIR)/$(@).dot
765 dot $(BR2_GRAPH_DOT_OPTS) -T$(BR_GRAPH_OUT) \
766 -o $(GRAPHS_DIR)/$(@).$(BR_GRAPH_OUT) \
767 $(GRAPHS_DIR)/$(@).dot
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100768
Thomas Petazzoni24c75fb2015-10-17 15:33:44 +0200769graph-size:
770 $(Q)mkdir -p $(GRAPHS_DIR)
771 $(Q)$(TOPDIR)/support/scripts/size-stats --builddir $(BASE_DIR) \
772 --graph $(GRAPHS_DIR)/graph-size.$(BR_GRAPH_OUT) \
773 --file-size-csv $(GRAPHS_DIR)/file-size-stats.csv \
774 --package-size-csv $(GRAPHS_DIR)/package-size-stats.csv
775
Yann E. MORIN9dac9862016-02-07 22:34:29 +0100776check-dependencies:
777 @cd "$(CONFIG_DIR)"; \
778 $(TOPDIR)/support/scripts/graph-depends -C
779
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000780else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersen2d523c22004-10-09 01:06:03 +0000781
782all: menuconfig
783
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000784endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
785
Eric Andersen2d523c22004-10-09 01:06:03 +0000786# configuration
787# ---------------------------------------------------------------------------
788
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200789HOSTCFLAGS = $(CFLAGS_FOR_BUILD)
Bernhard Reutner-Fischerc0d7d4e2007-07-09 18:23:20 +0000790export HOSTCFLAGS
791
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200792.PHONY: prepare-kconfig
Yann E. MORIN4802db32016-07-17 12:34:26 +0200793prepare-kconfig: outputmakefile $(BUILD_DIR)/.br2-external.in
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200794
Peter Korsgaard2cc210c2010-06-20 23:05:32 +0200795$(BUILD_DIR)/buildroot-config/%onf:
796 mkdir -p $(@D)/lxdialog
Bjørn Forsman0515fe42015-01-03 00:58:47 +0100797 PKG_CONFIG_PATH="$(HOST_PKG_CONFIG_PATH)" $(MAKE) CC="$(HOSTCC_NOCCACHE)" HOSTCC="$(HOSTCC_NOCCACHE)" \
798 obj=$(@D) -C $(CONFIG) -f Makefile.br $(@F)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200799
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000800DEFCONFIG = $(call qstrip,$(BR2_DEFCONFIG))
801
802# We don't want to fully expand BR2_DEFCONFIG here, so Kconfig will
803# recognize that if it's still at its default $(CONFIG_DIR)/defconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200804COMMON_CONFIG_ENV = \
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000805 BR2_DEFCONFIG='$(call qstrip,$(value BR2_DEFCONFIG))' \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200806 KCONFIG_AUTOCONFIG=$(BUILD_DIR)/buildroot-config/auto.conf \
807 KCONFIG_AUTOHEADER=$(BUILD_DIR)/buildroot-config/autoconf.h \
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200808 KCONFIG_TRISTATE=$(BUILD_DIR)/buildroot-config/tristate.config \
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100809 BR2_CONFIG=$(BR2_CONFIG) \
Arnout Vandecappelle12825f72015-12-31 01:34:13 +0100810 HOST_GCC_VERSION="$(HOSTCC_VERSION)" \
Yann E. MORIN4802db32016-07-17 12:34:26 +0200811 BUILD_DIR=$(BUILD_DIR) \
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200812 SKIP_LEGACY=
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200813
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200814xconfig: $(BUILD_DIR)/buildroot-config/qconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100815 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200816
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200817gconfig: $(BUILD_DIR)/buildroot-config/gconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100818 @$(COMMON_CONFIG_ENV) srctree=$(TOPDIR) $< $(CONFIG_CONFIG_IN)
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200819
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200820menuconfig: $(BUILD_DIR)/buildroot-config/mconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100821 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000822
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200823nconfig: $(BUILD_DIR)/buildroot-config/nconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100824 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000825
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200826config: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200827 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000828
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200829# For the config targets that automatically select options, we pass
830# SKIP_LEGACY=y to disable the legacy options. However, in that case
831# no values are set for the legacy options so a subsequent oldconfig
832# will query them. Therefore, run an additional olddefconfig.
833
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200834oldconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200835 @$(COMMON_CONFIG_ENV) $< --oldconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000836
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200837randconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200838 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --randconfig $(CONFIG_CONFIG_IN)
839 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Eric Andersen2d523c22004-10-09 01:06:03 +0000840
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200841allyesconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200842 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --allyesconfig $(CONFIG_CONFIG_IN)
843 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Eric Andersen2d523c22004-10-09 01:06:03 +0000844
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200845allnoconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200846 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --allnoconfig $(CONFIG_CONFIG_IN)
847 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Eric Andersen2d523c22004-10-09 01:06:03 +0000848
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200849randpackageconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100850 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200851 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \
Will Wagner39ca6d52010-01-11 12:28:50 +0000852 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200853 $< --randconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000854 @rm -f $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200855 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Peter Korsgaard66527702009-10-04 21:57:12 +0200856
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200857allyespackageconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100858 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200859 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \
Will Wagner39ca6d52010-01-11 12:28:50 +0000860 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200861 $< --allyesconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000862 @rm -f $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200863 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Peter Korsgaard66527702009-10-04 21:57:12 +0200864
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200865allnopackageconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100866 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200867 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \
Will Wagner39ca6d52010-01-11 12:28:50 +0000868 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200869 $< --allnoconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000870 @rm -f $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200871 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Peter Korsgaard66527702009-10-04 21:57:12 +0200872
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200873silentoldconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200874 $(COMMON_CONFIG_ENV) $< --silentoldconfig $(CONFIG_CONFIG_IN)
875
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200876olddefconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000877 $(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN)
878
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200879defconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000880 @$(COMMON_CONFIG_ENV) $< --defconfig$(if $(DEFCONFIG),=$(DEFCONFIG)) $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000881
Yann E. MORIN666edc72016-07-17 12:34:22 +0200882define percent_defconfig
Arnout Vandecappelle32babbf2015-02-02 16:34:46 +0100883# Override the BR2_DEFCONFIG from COMMON_CONFIG_ENV with the new defconfig
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200884%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(1)/configs/%_defconfig prepare-kconfig
Yann E. MORIN666edc72016-07-17 12:34:22 +0200885 @$$(COMMON_CONFIG_ENV) BR2_DEFCONFIG=$(1)/configs/$$@ \
886 $$< --defconfig=$(1)/configs/$$@ $$(CONFIG_CONFIG_IN)
887endef
Yann E. MORIN339e1c92016-10-14 16:39:22 +0200888$(eval $(foreach d,$(call reverse,$(TOPDIR) $(BR2_EXTERNAL_DIRS)),$(call percent_defconfig,$(d))$(sep)))
Thomas Petazzoni6f381192010-08-11 20:01:23 +0200889
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200890savedefconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000891 @$(COMMON_CONFIG_ENV) $< \
892 --savedefconfig=$(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig) \
893 $(CONFIG_CONFIG_IN)
Herve Codinaf71a6212015-06-04 10:16:33 +0200894 @$(SED) '/BR2_DEFCONFIG=/d' $(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig)
Eric Andersen2d523c22004-10-09 01:06:03 +0000895
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000896.PHONY: defconfig savedefconfig
Peter Korsgaard406053d2009-11-20 14:05:48 +0100897
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200898################################################################################
Eric Andersen2d523c22004-10-09 01:06:03 +0000899#
900# Cleanup and misc junk
901#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200902################################################################################
Yann E. MORINaefad532010-09-26 10:56:12 +0200903
904# outputmakefile generates a Makefile in the output directory, if using a
905# separate output directory. This allows convenient use of make in the
906# output directory.
907outputmakefile:
908ifeq ($(NEED_WRAPPER),y)
Thomas Petazzonif082c7c2011-08-31 23:35:02 +0200909 $(Q)$(TOPDIR)/support/scripts/mkmakefile $(TOPDIR) $(O)
Yann E. MORINaefad532010-09-26 10:56:12 +0200910endif
911
Yann E. MORIN4802db32016-07-17 12:34:26 +0200912# Even though the target is a real file, we mark it as PHONY as we
913# want it to be re-generated each time make is invoked, in case the
914# value of BR2_EXTERNAL is changed.
915.PHONY: $(BUILD_DIR)/.br2-external.in
916$(BUILD_DIR)/.br2-external.in: $(BUILD_DIR)
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200917 $(Q)support/scripts/br2-external -k -o "$(@)" $(BR2_EXTERNAL)
Yann E. MORIN4802db32016-07-17 12:34:26 +0200918
Yann E. MORIN376fda82015-11-04 22:42:39 +0100919# printvars prints all the variables currently defined in our
920# Makefiles. Alternatively, if a non-empty VARS variable is passed,
921# only the variables matching the make pattern passed in VARS are
922# displayed.
Émeric Vigier98b616d2013-05-29 00:41:11 +0200923printvars:
924 @$(foreach V, \
Yann E. MORIN376fda82015-11-04 22:42:39 +0100925 $(sort $(if $(VARS),$(filter $(VARS),$(.VARIABLES)),$(.VARIABLES))), \
Émeric Vigier98b616d2013-05-29 00:41:11 +0200926 $(if $(filter-out environment% default automatic, \
927 $(origin $V)), \
928 $(info $V=$($V) ($(value $V)))))
929
Eric Andersen2d523c22004-10-09 01:06:03 +0000930clean:
Thomas De Schampheleire300eb6b2013-09-30 13:09:27 +0200931 rm -rf $(TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) \
Arnout Vandecappellee0c60672014-03-17 09:22:33 +0100932 $(BUILD_DIR) $(BASE_DIR)/staging \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100933 $(LEGAL_INFO_DIR) $(GRAPHS_DIR)
Eric Andersen2d523c22004-10-09 01:06:03 +0000934
935distclean: clean
Peter Korsgaard406053d2009-11-20 14:05:48 +0100936ifeq ($(O),output)
937 rm -rf $(O)
938endif
Yann E. MORINe76b4fd2016-09-11 15:55:46 +0200939 rm -rf $(TOPDIR)/dl $(BR2_CONFIG) $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/..config.tmp \
Yann E. MORINf8c0e452015-10-22 22:34:00 +0200940 $(CONFIG_DIR)/.auto.deps $(BR2_EXTERNAL_FILE)
Eric Andersen2d523c22004-10-09 01:06:03 +0000941
Yann E. MORINa49b81e2016-04-16 23:20:17 +0200942help:
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000943 @echo 'Cleaning:'
Peter Korsgaard406053d2009-11-20 14:05:48 +0100944 @echo ' clean - delete all files created by build'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000945 @echo ' distclean - delete all non-source files (including .config)'
946 @echo
947 @echo 'Build:'
948 @echo ' all - make world'
Fabio Porcedda2a786412013-01-14 22:02:00 +0000949 @echo ' toolchain - build toolchain'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000950 @echo
951 @echo 'Configuration:'
952 @echo ' menuconfig - interactive curses-based configurator'
Peter Korsgaard15f5bef2011-02-01 08:41:01 +0100953 @echo ' nconfig - interactive ncurses-based configurator'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200954 @echo ' xconfig - interactive Qt-based configurator'
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200955 @echo ' gconfig - interactive GTK-based configurator'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000956 @echo ' oldconfig - resolve any unresolved symbols in .config'
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000957 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
958 @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200959 @echo ' randconfig - New config with random answer to all options'
960 @echo ' defconfig - New config with default answer to all options'
Arnout Vandecappelle33f454b2012-04-28 07:14:50 +0000961 @echo ' BR2_DEFCONFIG, if set, is used as input'
Frank Hunleth5c1a75c2015-02-11 08:14:49 -0500962 @echo ' savedefconfig - Save current config to BR2_DEFCONFIG (minimal config)'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200963 @echo ' allyesconfig - New config where all options are accepted with yes'
964 @echo ' allnoconfig - New config where all options are answered with no'
Peter Korsgaard66527702009-10-04 21:57:12 +0200965 @echo ' randpackageconfig - New config with random answer to package options'
966 @echo ' allyespackageconfig - New config where pkg options are accepted with yes'
967 @echo ' allnopackageconfig - New config where package options are answered with no'
Arnout Vandecappelleb1e0b6d2015-03-21 20:49:47 +0100968 @echo
969 @echo 'Package-specific:'
970 @echo ' <pkg> - Build and install <pkg> and all its dependencies'
971 @echo ' <pkg>-source - Only download the source files for <pkg>'
972 @echo ' <pkg>-extract - Extract <pkg> sources'
973 @echo ' <pkg>-patch - Apply patches to <pkg>'
974 @echo ' <pkg>-depends - Build <pkg>'\''s dependencies'
975 @echo ' <pkg>-configure - Build <pkg> up to the configure step'
976 @echo ' <pkg>-build - Build <pkg> up to the build step'
977 @echo ' <pkg>-graph-depends - Generate a graph of <pkg>'\''s dependencies'
978 @echo ' <pkg>-dirclean - Remove <pkg> build directory'
979 @echo ' <pkg>-reconfigure - Restart the build from the configure step'
980 @echo ' <pkg>-rebuild - Restart the build from the build step'
Yann E. MORIN66a5fc72016-06-04 18:30:48 +0200981 $(foreach p,$(HELP_PACKAGES), \
982 @echo $(sep) \
983 @echo '$($(p)_NAME):' $(sep) \
984 $($(p)_HELP_CMDS)$(sep))
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000985 @echo
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200986 @echo 'Documentation:'
Thomas De Schampheleire55ecab12013-09-19 12:47:14 +0200987 @echo ' manual - build manual in all formats'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200988 @echo ' manual-html - build manual in HTML'
989 @echo ' manual-split-html - build manual in split HTML'
990 @echo ' manual-pdf - build manual in PDF'
Thomas De Schampheleire462e9912013-10-18 22:31:26 +0200991 @echo ' manual-text - build manual in text'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200992 @echo ' manual-epub - build manual in ePub'
Yann E. MORINe16bf922013-12-28 18:39:11 +0100993 @echo ' graph-build - generate graphs of the build times'
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100994 @echo ' graph-depends - generate graph of the dependency tree'
Thomas Petazzoni24c75fb2015-10-17 15:33:44 +0200995 @echo ' graph-size - generate stats of the filesystem size'
Yann E. MORINde6377e2015-04-23 23:04:06 +0200996 @echo ' list-defconfigs - list all defconfigs (pre-configured minimal systems)'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200997 @echo
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000998 @echo 'Miscellaneous:'
999 @echo ' source - download all sources needed for offline-build'
Thomas De Schampheleire07bae752012-06-21 19:38:42 +00001000 @echo ' source-check - check selected packages for valid download URLs'
Peter Korsgaard155971e2008-03-04 12:19:16 +00001001 @echo ' external-deps - list external packages used'
Luca Ceresoli7e76f902012-05-17 19:33:00 +02001002 @echo ' legal-info - generate info about license compliance'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001003 @echo
Peter Korsgaard15f5bef2011-02-01 08:41:01 +01001004 @echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build'
1005 @echo ' make O=dir - Locate all output files in "dir", including .config'
1006 @echo
Arnout Vandecappellef42a5802015-03-21 20:49:46 +01001007 @echo 'For further details, see README, generate the Buildroot manual, or consult'
1008 @echo 'it on-line at http://buildroot.org/docs.html'
1009 @echo
1010
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001011# List the defconfig files
1012# $(1): base directory
1013# $(2): br2-external name, empty for bundled
1014define list-defconfigs
1015 @first=true; \
1016 for defconfig in $(1)/configs/*_defconfig; do \
1017 [ -f "$${defconfig}" ] || continue; \
1018 if $${first}; then \
1019 if [ "$(2)" ]; then \
Yann E. MORIN49117c12016-10-14 16:39:23 +02001020 printf 'External configs in "$(call qstrip,$(2))":\n'; \
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001021 else \
1022 printf "Built-in configs:\n"; \
1023 fi; \
1024 first=false; \
1025 fi; \
1026 defconfig="$${defconfig##*/}"; \
1027 printf " %-35s - Build for %s\n" "$${defconfig}" "$${defconfig%_defconfig}"; \
1028 done; \
1029 $${first} || printf "\n"
1030endef
1031
1032# We iterate over BR2_EXTERNAL_NAMES rather than BR2_EXTERNAL_DIRS,
1033# because we want to display the name of the br2-external tree.
Arnout Vandecappellef42a5802015-03-21 20:49:46 +01001034list-defconfigs:
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001035 $(call list-defconfigs,$(TOPDIR))
1036 $(foreach name,$(BR2_EXTERNAL_NAMES),\
Yann E. MORIN49117c12016-10-14 16:39:23 +02001037 $(call list-defconfigs,$(BR2_EXTERNAL_$(name)_PATH),\
1038 $(BR2_EXTERNAL_$(name)_DESC))$(sep))
Bernhard Reutner-Fischerba2e7e02007-06-25 10:56:13 +00001039
Fabio Porceddac3e49d62014-04-23 10:39:23 +02001040release: OUT = buildroot-$(BR2_VERSION)
Peter Korsgaard0dca7062010-11-04 00:00:00 +01001041
Peter Korsgaard134ab1c2012-02-03 22:03:29 +01001042# Create release tarballs. We need to fiddle a bit to add the generated
1043# documentation to the git output
Peter Korsgaard0dca7062010-11-04 00:00:00 +01001044release:
Peter Korsgaardc6715b62013-09-17 13:42:07 +02001045 git archive --format=tar --prefix=$(OUT)/ HEAD > $(OUT).tar
Thomas De Schampheleire462e9912013-10-18 22:31:26 +02001046 $(MAKE) O=$(OUT) manual-html manual-text manual-pdf
Thomas De Schampheleire15cb9872015-07-17 12:20:35 +02001047 $(MAKE) O=$(OUT) manual-clean
Peter Korsgaard134ab1c2012-02-03 22:03:29 +01001048 tar rf $(OUT).tar $(OUT)
1049 gzip -9 -c < $(OUT).tar > $(OUT).tar.gz
1050 bzip2 -9 -c < $(OUT).tar > $(OUT).tar.bz2
1051 rm -rf $(OUT) $(OUT).tar
Peter Korsgaarde62d2ec2009-01-15 19:36:06 +00001052
Arnout Vandecappelle (Essensium/Mind)2b91ab72012-03-11 12:16:39 +01001053print-version:
1054 @echo $(BR2_VERSION_FULL)
1055
Thomas Petazzonib7285d02012-04-17 16:45:22 +02001056include docs/manual/manual.mk
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001057-include $(foreach dir,$(BR2_EXTERNAL_DIRS),$(dir)/docs/*/*.mk)
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001058
Peter Korsgaard66527702009-10-04 21:57:12 +02001059.PHONY: $(noconfig_targets)
Guido Martínezbee57452014-11-21 13:19:00 -03001060
Samuel Martin173135d2016-10-17 23:05:43 +02001061endif #umask / $(CURDIR) / $(O)