blob: 4f6269faa3abbf014bc6039dd829808edf8e8941 [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
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:
87
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010088# Set and export the version string
Thomas Petazzonia6ba7682016-11-03 21:54:07 +010089export BR2_VERSION := 2016.11-rc1
Gilles Chanteperdrix9befe942016-11-23 13:58:40 +010090# Actual time the release is cut (for reproducible builds)
91BR2_VERSION_EPOCH = 1478206447
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010092
Gustavo Zacarias2ac7da02015-07-14 18:30:39 -030093# Save running make version since it's clobbered by the make package
94RUNNING_MAKE_VERSION := $(MAKE_VERSION)
95
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +010096# Check for minimal make version (note: this check will break at make 10.x)
Fabio Porceddac3e49d62014-04-23 10:39:23 +020097MIN_MAKE_VERSION = 3.81
Gustavo Zacarias2ac7da02015-07-14 18:30:39 -030098ifneq ($(firstword $(sort $(RUNNING_MAKE_VERSION) $(MIN_MAKE_VERSION))),$(MIN_MAKE_VERSION))
99$(error You have make '$(RUNNING_MAKE_VERSION)' installed. GNU make >= $(MIN_MAKE_VERSION) is required)
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +0100100endif
101
Fabio Porcedda2afb23a2014-02-14 10:55:08 +0100102# Parallel execution of this Makefile is disabled because it changes
103# the packages building order, that can be a problem for two reasons:
104# - If a package has an unspecified optional dependency and that
105# dependency is present when the package is built, it is used,
106# otherwise it isn't (but compilation happily proceeds) so the end
107# result will differ if the order is swapped due to parallel
108# building.
109# - Also changing the building order can be a problem if two packages
110# manipulate the same file in the target directory.
111#
112# Taking into account the above considerations, if you still want to execute
113# this top-level Makefile in parallel comment the ".NOTPARALLEL" line and
Fabio Porcedda1668e1d2015-07-01 10:10:46 +0200114# use the -j<jobs> option when building, e.g:
115# make -j$((`getconf _NPROCESSORS_ONLN`+1))
Yann E. MORIN2d239bb2010-10-31 17:35:09 +0100116.NOTPARALLEL:
117
Peter Korsgaard6b1dd452009-11-30 17:29:01 +0100118# absolute path
Samuel Martine0499942016-03-09 23:58:43 +0100119TOPDIR := $(CURDIR)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200120CONFIG_CONFIG_IN = Config.in
121CONFIG = support/kconfig
122DATE := $(shell date +%Y%m%d)
Eric Andersen2d523c22004-10-09 01:06:03 +0000123
Yann E. MORIN8258df22010-10-31 17:35:12 +0100124# Compute the full local version string so packages can use it as-is
125# Need to export it, so it can be got from environment in children (eg. mconf)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200126export BR2_VERSION_FULL := $(BR2_VERSION)$(shell $(TOPDIR)/support/scripts/setlocalversion)
Yann E. MORIN8258df22010-10-31 17:35:12 +0100127
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200128noconfig_targets := menuconfig nconfig gconfig xconfig config oldconfig randconfig \
Yann E. MORIN063f4ee2013-12-27 00:04:29 +0100129 defconfig %_defconfig allyesconfig allnoconfig silentoldconfig release \
Peter Korsgaard66527702009-10-04 21:57:12 +0200130 randpackageconfig allyespackageconfig allnopackageconfig \
Rahul Jain472f0ae2016-11-15 16:33:20 +0530131 print-version olddefconfig distclean manual manual-html manual-split-html \
132 manual-pdf manual-text manual-epub
Bernhard Reutner-Fischer9e250352006-12-02 19:01:10 +0000133
Thomas Petazzoni256f1422015-04-26 11:51:14 +0200134# Some global targets do not trigger a build, but are used to collect
135# metadata, or do various checks. When such targets are triggered,
136# some packages should not do their configuration sanity
137# checks. Provide them a BR_BUILDING variable set to 'y' when we're
138# actually building and they should do their sanity checks.
139#
140# We're building in two situations: when MAKECMDGOALS is empty
141# (default target is to build), or when MAKECMDGOALS contains
142# something else than one of the nobuild_targets.
Rahul Jain472f0ae2016-11-15 16:33:20 +0530143nobuild_targets := source %-source source-check \
144 legal-info %-legal-info external-deps _external-deps \
145 clean distclean help show-targets graph-depends \
146 %-graph-depends %-show-depends %-show-version \
147 graph-build graph-size list-defconfigs \
148 savedefconfig printvars
Thomas Petazzoni256f1422015-04-26 11:51:14 +0200149ifeq ($(MAKECMDGOALS),)
150BR_BUILDING = y
151else ifneq ($(filter-out $(nobuild_targets),$(MAKECMDGOALS)),)
152BR_BUILDING = y
153endif
154
Arnout Vandecappelle5e3f8962016-11-03 02:55:16 +0100155# We call make recursively to build packages. The command-line overrides that
156# are passed to Buildroot don't apply to those package build systems. In
157# particular, we don't want to pass down the O=<dir> option for out-of-tree
158# builds, because the value specified on the command line will not be correct
159# for packages.
160MAKEOVERRIDES :=
161
Yann E. MORIN242e0082016-07-17 12:34:21 +0200162# Include some helper macros and variables
163include support/misc/utils.mk
Peter Korsgaardf85f2de2009-01-25 20:19:01 +0000164
Samuel Martin0b1b2c42016-10-17 23:05:41 +0200165# Set variables related to in-tree or out-of-tree build.
Samuel Martin173135d2016-10-17 23:05:43 +0200166# Here, both $(O) and $(CURDIR) are absolute canonical paths.
167ifeq ($(O),$(CURDIR)/output)
168CONFIG_DIR := $(CURDIR)
Samuel Martin0b1b2c42016-10-17 23:05:41 +0200169NEED_WRAPPER =
170else
171CONFIG_DIR := $(O)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200172NEED_WRAPPER = y
Will Wagner39ca6d52010-01-11 12:28:50 +0000173endif
174
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200175# bash prints the name of the directory on 'cd <dir>' if CDPATH is
176# set, so unset it here to not cause problems. Notice that the export
177# line doesn't affect the environment of $(shell ..) calls, so
178# explictly throw away any output from 'cd' here.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200179export CDPATH :=
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200180BASE_DIR := $(shell mkdir -p $(O) && cd $(O) >/dev/null && pwd)
181$(if $(BASE_DIR),, $(error output directory "$(O)" does not exist))
182
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100183
184# Handling of BR2_EXTERNAL.
185#
186# The value of BR2_EXTERNAL is stored in .br-external in the output directory.
Yann E. MORIN20cd4972016-10-14 16:39:20 +0200187# The location of the external.mk makefile fragments is computed in that file.
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200188# On subsequent invocations of make, this file is read in. BR2_EXTERNAL can
189# still be overridden on the command line, therefore the file is re-created
190# every time make is run.
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100191
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200192BR2_EXTERNAL_FILE = $(BASE_DIR)/.br-external.mk
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100193-include $(BR2_EXTERNAL_FILE)
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200194$(shell support/scripts/br2-external \
195 -m -o '$(BR2_EXTERNAL_FILE)' $(BR2_EXTERNAL))
196BR2_EXTERNAL_ERROR =
197include $(BR2_EXTERNAL_FILE)
198ifneq ($(BR2_EXTERNAL_ERROR),)
199$(error $(BR2_EXTERNAL_ERROR))
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100200endif
201
Masahiro Yamada5b686a02015-04-08 09:53:36 +0900202# To make sure that the environment variable overrides the .config option,
Arnout Vandecappelle67680212014-02-04 16:18:51 +0100203# set this before including .config.
204ifneq ($(BR2_DL_DIR),)
205DL_DIR := $(BR2_DL_DIR)
206endif
Gustavo Zacarias3901cb52015-10-15 10:24:39 -0300207ifneq ($(BR2_CCACHE_DIR),)
208BR_CACHE_DIR := $(BR2_CCACHE_DIR)
209endif
Arnout Vandecappelle67680212014-02-04 16:18:51 +0100210
Yann E. MORINf1fedbb2013-12-28 18:39:13 +0100211# Need that early, before we scan packages
212# Avoids doing the $(or...) everytime
Yann E. MORIN22d05902014-04-13 22:42:37 +0200213BR_GRAPH_OUT := $(or $(BR2_GRAPH_OUT),pdf)
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100214
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200215BUILD_DIR := $(BASE_DIR)/build
216BINARIES_DIR := $(BASE_DIR)/images
217TARGET_DIR := $(BASE_DIR)/target
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200218# initial definition so that 'make clean' works for most users, even without
219# .config. HOST_DIR will be overwritten later when .config is included.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200220HOST_DIR := $(BASE_DIR)/host
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100221GRAPHS_DIR := $(BASE_DIR)/graphs
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200222
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200223LEGAL_INFO_DIR = $(BASE_DIR)/legal-info
224REDIST_SOURCES_DIR_TARGET = $(LEGAL_INFO_DIR)/sources
225REDIST_SOURCES_DIR_HOST = $(LEGAL_INFO_DIR)/host-sources
226LICENSE_FILES_DIR_TARGET = $(LEGAL_INFO_DIR)/licenses
227LICENSE_FILES_DIR_HOST = $(LEGAL_INFO_DIR)/host-licenses
228LEGAL_MANIFEST_CSV_TARGET = $(LEGAL_INFO_DIR)/manifest.csv
229LEGAL_MANIFEST_CSV_HOST = $(LEGAL_INFO_DIR)/host-manifest.csv
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200230LEGAL_WARNINGS = $(LEGAL_INFO_DIR)/.warnings
231LEGAL_REPORT = $(LEGAL_INFO_DIR)/README
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200232
Yann E. MORINb1e079b2016-07-17 12:34:25 +0200233################################################################################
234#
235# staging and target directories do NOT list these as
236# dependencies anywhere else
237#
238################################################################################
239$(BUILD_DIR) $(TARGET_DIR) $(HOST_DIR) $(BINARIES_DIR) $(LEGAL_INFO_DIR) $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST):
240 @mkdir -p $@
241
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200242BR2_CONFIG = $(CONFIG_DIR)/.config
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000243
Ulf Samuelssona1b06512008-03-28 07:31:28 +0000244# Pull in the user's configuration file
245ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100246-include $(BR2_CONFIG)
Ulf Samuelsson7521f372007-09-12 04:34:16 +0000247endif
Eric Andersen2d523c22004-10-09 01:06:03 +0000248
Gilles Chanteperdrixa5f35132016-06-14 17:31:10 +0200249# timezone and locale may affect build output
250ifeq ($(BR2_REPRODUCIBLE),y)
Jérôme Pouiller3111f6a2016-11-23 13:58:57 +0100251export TZ = UTC
252export LANG = C
253export LC_ALL = C
Jérôme Pouiller9b91b212016-11-23 13:58:42 +0100254export GZIP = -n
Gilles Chanteperdrix9befe942016-11-23 13:58:40 +0100255BR2_VERSION_GIT_EPOCH = $(shell GIT_DIR=$(TOPDIR)/.git $(GIT) log -1 --format=%at)
256export SOURCE_DATE_EPOCH = $(if $(wildcard $(TOPDIR)/.git),$(BR2_VERSION_GIT_EPOCH),$(BR2_VERSION_EPOCH))
Gilles Chanteperdrixa5f35132016-06-14 17:31:10 +0200257endif
258
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000259# To put more focus on warnings, be less verbose as default
260# Use 'make V=1' to see the full commands
Masahiro Yamada6bf9e232015-04-07 14:09:09 +0900261ifeq ("$(origin V)", "command line")
262 KBUILD_VERBOSE = $(V)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000263endif
264ifndef KBUILD_VERBOSE
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200265 KBUILD_VERBOSE = 0
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000266endif
267
268ifeq ($(KBUILD_VERBOSE),1)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200269 Q =
Bernhard Reutner-Fischer1669b6e2007-09-22 14:19:22 +0000270ifndef VERBOSE
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200271 VERBOSE = 1
Bernhard Reutner-Fischer1669b6e2007-09-22 14:19:22 +0000272endif
Cédric Marie30702982015-06-23 23:36:06 +0200273export VERBOSE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000274else
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200275 Q = @
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000276endif
277
Peter Korsgaard69f85922009-01-01 21:20:35 +0000278# kconfig uses CONFIG_SHELL
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200279CONFIG_SHELL := $(SHELL)
Peter Korsgaard69f85922009-01-01 21:20:35 +0000280
Cédric Marie474d39a2015-10-08 22:03:37 +0200281export SHELL CONFIG_SHELL Q KBUILD_VERBOSE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000282
283ifndef HOSTAR
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200284HOSTAR := ar
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000285endif
286ifndef HOSTAS
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200287HOSTAS := as
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000288endif
289ifndef HOSTCC
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200290HOSTCC := gcc
291HOSTCC := $(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000292endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200293HOSTCC_NOCCACHE := $(HOSTCC)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000294ifndef HOSTCXX
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200295HOSTCXX := g++
296HOSTCXX := $(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000297endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200298HOSTCXX_NOCCACHE := $(HOSTCXX)
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000299ifndef HOSTCPP
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200300HOSTCPP := cpp
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000301endif
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000302ifndef HOSTLD
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200303HOSTLD := ld
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000304endif
Ulf Samuelsson0f9c5b12007-07-15 21:54:11 +0000305ifndef HOSTLN
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200306HOSTLN := ln
Ulf Samuelsson0f9c5b12007-07-15 21:54:11 +0000307endif
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000308ifndef HOSTNM
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200309HOSTNM := nm
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000310endif
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100311ifndef HOSTOBJCOPY
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200312HOSTOBJCOPY := objcopy
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100313endif
314ifndef HOSTRANLIB
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200315HOSTRANLIB := ranlib
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100316endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200317HOSTAR := $(shell which $(HOSTAR) || type -p $(HOSTAR) || echo ar)
318HOSTAS := $(shell which $(HOSTAS) || type -p $(HOSTAS) || echo as)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200319HOSTCPP := $(shell which $(HOSTCPP) || type -p $(HOSTCPP) || echo cpp)
320HOSTLD := $(shell which $(HOSTLD) || type -p $(HOSTLD) || echo ld)
321HOSTLN := $(shell which $(HOSTLN) || type -p $(HOSTLN) || echo ln)
322HOSTNM := $(shell which $(HOSTNM) || type -p $(HOSTNM) || echo nm)
323HOSTOBJCOPY := $(shell which $(HOSTOBJCOPY) || type -p $(HOSTOBJCOPY) || echo objcopy)
324HOSTRANLIB := $(shell which $(HOSTRANLIB) || type -p $(HOSTRANLIB) || echo ranlib)
Ulf Samuelsson54e93322008-07-06 07:34:41 +0000325
Masahiro Yamadaa9847d12015-04-09 20:28:55 +0900326export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTLD
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100327export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000328
Yann E. MORIN91ea9332015-11-09 20:00:21 +0100329# Determine the userland we are running on.
330#
331# Note that, despite its name, we are not interested in the actual
332# architecture name. This is mostly used to determine whether some
333# of the binary tools (e.g. pre-built external toolchains) can run
334# on the current host. So we need to know if the userland we're
335# running on can actually run those toolchains.
336#
337# For example, a 64-bit prebuilt toolchain will not run on a 64-bit
338# kernel if the userland is 32-bit (e.g. in a chroot for example).
339#
340# So, we extract the first part of the tuple the host gcc was
341# configured to generate code for; we assume this is our userland.
342#
Romain Naour86229d62016-01-20 22:53:19 +0100343export HOSTARCH := $(shell LC_ALL=C $(HOSTCC_NOCCACHE) -v 2>&1 | \
Yann E. MORIN91ea9332015-11-09 20:00:21 +0100344 sed -e '/^Target: \([^-]*\).*/!d' \
345 -e 's//\1/' \
346 -e 's/i.86/x86/' \
347 -e 's/sun4u/sparc64/' \
348 -e 's/arm.*/arm/' \
349 -e 's/sa110/arm/' \
350 -e 's/ppc64/powerpc64/' \
351 -e 's/ppc/powerpc/' \
352 -e 's/macppc/powerpc/' \
353 -e 's/sh.*/sh/' )
354
Arnout Vandecappelle12825f72015-12-31 01:34:13 +0100355HOSTCC_VERSION := $(shell $(HOSTCC_NOCCACHE) --version | \
356 sed -n -r 's/^.* ([0-9]*)\.([0-9]*)\.([0-9]*)[ ]*.*/\1 \2/p')
357
358# For gcc >= 5.x, we only need the major version.
359ifneq ($(firstword $(HOSTCC_VERSION)),4)
360HOSTCC_VERSION := $(firstword $(HOSTCC_VERSION))
361endif
362
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000363# Make sure pkg-config doesn't look outside the buildroot tree
Bjørn Forsman0515fe42015-01-03 00:58:47 +0100364HOST_PKG_CONFIG_PATH := $(PKG_CONFIG_PATH)
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000365unexport PKG_CONFIG_PATH
Charles Manning4f607ed2012-12-02 11:13:04 +0000366unexport PKG_CONFIG_SYSROOT_DIR
Peter Korsgaardbdf472d2013-09-11 14:15:15 +0200367unexport PKG_CONFIG_LIBDIR
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000368
Thomas Petazzoni91123a62012-07-02 04:21:14 +0000369# Having DESTDIR set in the environment confuses the installation
370# steps of some packages.
371unexport DESTDIR
372
Gustavo Zacariasbed61a72013-07-11 11:37:33 -0300373# Causes breakage with packages that needs host-ruby
374unexport RUBYOPT
375
Thomas De Schampheleire3ed0ead2014-08-15 15:40:34 +0200376include package/pkg-utils.mk
Yann E. MORINab6a6212014-10-03 19:01:52 +0200377include package/doc-asciidoc.mk
Thomas De Schampheleire3ed0ead2014-08-15 15:40:34 +0200378
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000379ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersenffde94b2001-12-22 00:56:11 +0000380
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200381################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000382#
383# Hide troublesome environment variables from sub processes
384#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200385################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000386unexport CROSS_COMPILE
387unexport ARCH
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100388unexport CC
Nicolas Dichtel376737d2016-04-14 16:58:32 +0200389unexport LD
390unexport AR
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100391unexport CXX
392unexport CPP
Tom Rini344c5a22015-11-17 14:04:04 -0500393unexport RANLIB
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100394unexport CFLAGS
395unexport CXXFLAGS
396unexport GREP_OPTIONS
Nixf5437a62014-01-26 22:58:02 +0000397unexport TAR_OPTIONS
Peter Korsgaard12c9f7d2011-12-12 10:25:50 +0100398unexport CONFIG_SITE
Stephan Hoffmann32314b42012-08-17 13:54:16 +0200399unexport QMAKESPEC
Nathan Lynch20ca0082012-07-10 07:37:22 +0000400unexport TERMINFO
Risto Avila6d3b9752014-09-24 04:37:13 +0000401unexport MACHINE
Guido Martínez2e323302015-07-25 16:07:39 -0300402unexport O
Bernhard Reutner-Fischer7dcbbfb2007-06-02 09:05:40 +0000403
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200404GNU_HOST_NAME := $(shell support/gnuconfig/config.guess)
Thomas Petazzoni60281cb2010-04-10 23:17:25 +0200405
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200406PACKAGES :=
Yann E. MORIN0ea851c2015-10-22 22:33:56 +0200407PACKAGES_ALL :=
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000408
Peter Korsgaard89464a92009-09-30 17:39:44 +0200409# silent mode requested?
Fabio Porceddafffb68a2015-01-01 21:03:50 +0100410QUIET := $(if $(findstring s,$(filter-out --%,$(MAKEFLAGS))),-q)
Peter Korsgaard89464a92009-09-30 17:39:44 +0200411
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200412# Strip off the annoying quoting
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200413ARCH := $(call qstrip,$(BR2_ARCH))
Thomas Petazzoni65e80a02010-04-28 23:40:57 +0200414
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200415KERNEL_ARCH := $(shell echo "$(ARCH)" | sed -e "s/-.*//" \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200416 -e s/i.86/i386/ -e s/sun4u/sparc64/ \
Maxime Ripardf59aeca2013-05-06 00:14:55 +0000417 -e s/arcle/arc/ \
Peter Korsgaard8332ffa2013-06-10 14:04:03 +0200418 -e s/arceb/arc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200419 -e s/arm.*/arm/ -e s/sa110/arm/ \
Bamvor Jian Zhang827ba462015-03-18 17:49:48 +0800420 -e s/aarch64.*/arm64/ \
Mike Frysinger871db072011-02-07 00:49:11 -0500421 -e s/bfin/blackfin/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200422 -e s/parisc64/parisc/ \
Jeff Baileya426a912014-05-24 23:59:22 -0700423 -e s/powerpc64.*/powerpc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200424 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
Jan Drazilc2205812014-03-19 13:01:05 +0100425 -e s/sh.*/sh/ \
426 -e s/microblazeel/microblaze/)
Peter Korsgaard891973f2010-10-17 23:32:37 +0200427
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200428ZCAT := $(call qstrip,$(BR2_ZCAT))
429BZCAT := $(call qstrip,$(BR2_BZCAT))
430XZCAT := $(call qstrip,$(BR2_XZCAT))
431TAR_OPTIONS = $(call qstrip,$(BR2_TAR_OPTIONS)) -xf
Bernhard Reutner-Fischer1dbe6e32007-08-21 17:56:47 +0000432
Gustavo Zacariasa2b4f7f2011-02-02 10:05:56 -0300433# packages compiled for the host go here
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200434HOST_DIR := $(call qstrip,$(BR2_HOST_DIR))
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200435
Samuel Martincaa329b2014-04-15 00:31:04 +0200436# Quotes are needed for spaces and all in the original PATH content.
Samuel Martinc7d660b2014-04-15 00:31:05 +0200437BR_PATH = "$(HOST_DIR)/bin:$(HOST_DIR)/sbin:$(HOST_DIR)/usr/bin:$(HOST_DIR)/usr/sbin:$(PATH)"
Samuel Martincaa329b2014-04-15 00:31:04 +0200438
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000439# Location of a file giving a big fat warning that output/target
440# should not be used as the root filesystem.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200441TARGET_DIR_WARNING_FILE = $(TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000442
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100443ifeq ($(BR2_CCACHE),y)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200444CCACHE := $(HOST_DIR)/usr/bin/ccache
Gustavo Zacarias3901cb52015-10-15 10:24:39 -0300445BR_CACHE_DIR ?= $(call qstrip,$(BR2_CCACHE_DIR))
Arnout Vandecappellee7ab4b42014-02-04 16:18:50 +0100446export BR_CACHE_DIR
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200447HOSTCC := $(CCACHE) $(HOSTCC)
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100448HOSTCXX := $(CCACHE) $(HOSTCXX)
Arnout Vandecappelle792f1272015-10-04 13:28:56 +0100449else
450export BR_NO_CCACHE
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100451endif
452
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000453# Scripts in support/ or post-build scripts may need to reference
454# these locations, so export them so it is easier to use
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100455export BR2_CONFIG
Gilles Chanteperdrixa5f35132016-06-14 17:31:10 +0200456export BR2_REPRODUCIBLE
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000457export TARGET_DIR
458export STAGING_DIR
459export HOST_DIR
460export BINARIES_DIR
Peter Korsgaard1300cb52013-01-14 10:02:29 +0100461export BASE_DIR
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000462
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200463################################################################################
Eric Andersen08782ae2002-04-26 11:45:55 +0000464#
Eric Andersenef407d32004-01-29 23:21:00 +0000465# You should probably leave this stuff alone unless you know
Eric Andersen08782ae2002-04-26 11:45:55 +0000466# what you are doing.
467#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200468################################################################################
Manuel Novoa III d632d422003-11-01 05:34:41 +0000469
Bernhard Reutner-Fischer6547bce2007-08-22 12:35:41 +0000470all: world
Eric Andersenffde94b2001-12-22 00:56:11 +0000471
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000472# Include legacy before the other things, because package .mk files
473# may rely on it.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000474include Makefile.legacy
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000475
Thomas Petazzoni486253d2012-04-17 16:45:23 +0200476include package/Makefile.in
Thomas De Schampheleirea7926682012-02-08 17:22:16 +0100477include support/dependencies/dependencies.mk
478
Yann E. MORIN11c10762014-07-27 21:28:32 +0200479include toolchain/*.mk
Thomas Petazzoni8b0905b2013-10-08 20:17:01 +0200480include toolchain/*/*.mk
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000481
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200482# Include the package override file if one has been provided in the
483# configuration.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200484PACKAGE_OVERRIDE_FILE = $(call qstrip,$(BR2_PACKAGE_OVERRIDE_FILE))
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200485ifneq ($(PACKAGE_OVERRIDE_FILE),)
486-include $(PACKAGE_OVERRIDE_FILE)
487endif
488
Jérôme Pouiller741cbcc2013-09-03 10:45:41 +0200489include $(sort $(wildcard package/*/*.mk))
Eric Andersend06645d2005-02-10 03:06:39 +0000490
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100491include boot/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100492include linux/linux.mk
Philippe Reynes00b1ff62014-05-05 09:52:13 +0200493include fs/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100494
Yann E. MORIN20cd4972016-10-14 16:39:20 +0200495# If using a br2-external tree, the BR2_EXTERNAL_$(NAME)_PATH variables
496# are also present in the .config file. Since .config is included after
497# we defined them in the Makefile, the values for those variables are
498# quoted. We just include the generated Makefile fragment .br2-external.mk
499# a third time, which will set those variables to the un-quoted values.
Yann E. MORINfc34cf72016-10-14 16:39:17 +0200500include $(BR2_EXTERNAL_FILE)
501
Yann E. MORIN64e12a32016-10-14 16:39:14 +0200502# Nothing to include if no BR2_EXTERNAL tree in use
Yann E. MORIN20cd4972016-10-14 16:39:20 +0200503include $(BR2_EXTERNAL_MKS)
Thomas Petazzoni8eb8aaf2013-12-05 20:11:11 +0100504
Thomas Petazzoni3e1b33a2016-01-01 01:01:23 +0100505# Now we are sure we have all the packages scanned and defined. We now
506# check for each package in the list of enabled packages, that all its
507# dependencies are indeed enabled.
508#
509# Only trigger the check for default builds. If the user forces building
510# a package, even if not enabled in the configuration, we want to accept
511# it.
512#
513ifeq ($(MAKECMDGOALS),)
514
515define CHECK_ONE_DEPENDENCY
516ifeq ($$($(2)_TYPE),target)
517ifeq ($$($(2)_IS_VIRTUAL),)
518ifneq ($$($$($(2)_KCONFIG_VAR)),y)
519$$(error $$($(2)_NAME) is in the dependency chain of $$($(1)_NAME) that \
520has added it to its _DEPENDENCIES variable without selecting it or \
521depending on it from Config.in)
522endif
523endif
524endif
525endef
526
527$(foreach pkg,$(call UPPERCASE,$(PACKAGES)),\
528 $(foreach dep,$(call UPPERCASE,$($(pkg)_FINAL_ALL_DEPENDENCIES)),\
529 $(eval $(call CHECK_ONE_DEPENDENCY,$(pkg),$(dep))$(sep))))
530
531endif
532
Thomas Petazzonid21a1762013-06-30 21:29:06 +0200533dirs: $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
Arnout Vandecappellee0c60672014-03-17 09:22:33 +0100534 $(HOST_DIR) $(BINARIES_DIR)
Ulf Samuelssonf958d892007-08-14 07:45:01 +0000535
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100536$(BUILD_DIR)/buildroot-config/auto.conf: $(BR2_CONFIG)
Peter Korsgaard879058a2013-12-16 13:49:28 +0100537 $(MAKE1) $(EXTRAMAKEARGS) HOSTCC="$(HOSTCC_NOCCACHE)" HOSTCXX="$(HOSTCXX_NOCCACHE)" silentoldconfig
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200538
539prepare: $(BUILD_DIR)/buildroot-config/auto.conf
540
Fabio Porceddaa2487752014-02-14 10:55:06 +0100541world: target-post-image
Fabio Porcedda2a786412013-01-14 22:02:00 +0000542
543.PHONY: all world toolchain dirs clean distclean source outputmakefile \
Arnout Vandecappelledf79e352015-03-21 20:49:45 +0100544 legal-info legal-info-prepare legal-info-clean printvars help \
Thomas Petazzoni7800b962015-04-26 11:51:03 +0200545 list-defconfigs target-finalize target-post-image source-check
Jon Nelsonc79e9982002-01-05 20:26:15 +0000546
Yann E. MORINcb34ea52015-11-26 23:13:41 +0100547# Populating the staging with the base directories is handled by the skeleton package
Eric Andersen08782ae2002-04-26 11:45:55 +0000548$(STAGING_DIR):
Yann E. MORINcb34ea52015-11-26 23:13:41 +0100549 @mkdir -p $(STAGING_DIR)
Gustavo Zacarias5ad139e2010-12-31 08:39:05 -0300550 @ln -snf $(STAGING_DIR) $(BASE_DIR)/staging
Eric Andersen08782ae2002-04-26 11:45:55 +0000551
Thomas De Schampheleire7ad28652013-11-07 11:41:22 +0100552RSYNC_VCS_EXCLUSIONS = \
553 --exclude .svn --exclude .git --exclude .hg --exclude .bzr \
554 --exclude CVS
555
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000556STRIP_FIND_CMD = find $(TARGET_DIR)
557ifneq (,$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS)))
558STRIP_FIND_CMD += \( $(call finddirclauses,$(TARGET_DIR),$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) \) -prune -o
559endif
Thomas Petazzoni12d15072014-02-04 16:36:18 +0100560STRIP_FIND_CMD += -type f \( -perm /111 -o -name '*.so*' \)
Thomas De Schampheleire06635912014-04-30 21:29:02 +0200561# file exclusions:
562# - libpthread.so: a non-stripped libpthread shared library is needed for
563# proper debugging of pthread programs using gdb.
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200564# - ld.so: a non-stripped dynamic linker library is needed for valgrind
Thomas De Schampheleire06635912014-04-30 21:29:02 +0200565# - kernel modules (*.ko): do not function properly when stripped like normal
566# applications and libraries. Normally kernel modules are already excluded
567# by the executable permission check above, so the explicit exclusion is only
568# done for kernel modules with incorrect permissions.
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200569STRIP_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 +0000570
Fabio Porcedda28685d52014-06-27 14:15:57 +0200571ifeq ($(BR2_ECLIPSE_REGISTER),y)
572define TOOLCHAIN_ECLIPSE_REGISTER
573 ./support/scripts/eclipse-register-toolchain `readlink -f $(O)` \
574 $(notdir $(TARGET_CROSS)) $(BR2_ARCH)
575endef
576TARGET_FINALIZE_HOOKS += TOOLCHAIN_ECLIPSE_REGISTER
577endif
578
Fabio Porcedda33de7402014-06-27 14:15:58 +0200579# Generate locale data. Basically, we call the localedef program
580# (built by the host-localedef package) for each locale. The input
581# data comes preferably from the toolchain, or if the toolchain does
582# not have them (Linaro toolchains), we use the ones available on the
583# host machine.
584ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y)
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100585GLIBC_GENERATE_LOCALES = $(call qstrip,$(BR2_GENERATE_LOCALE))
586ifneq ($(GLIBC_GENERATE_LOCALES),)
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200587PACKAGES += host-localedef
Fabio Porcedda33de7402014-06-27 14:15:58 +0200588
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100589define GENERATE_GLIBC_LOCALES
Fabio Porcedda33de7402014-06-27 14:15:58 +0200590 $(Q)mkdir -p $(TARGET_DIR)/usr/lib/locale/
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100591 $(Q)for locale in $(GLIBC_GENERATE_LOCALES) ; do \
Fabio Porcedda33de7402014-06-27 14:15:58 +0200592 inputfile=`echo $${locale} | cut -f1 -d'.'` ; \
593 charmap=`echo $${locale} | cut -f2 -d'.' -s` ; \
594 if test -z "$${charmap}" ; then \
595 charmap="UTF-8" ; \
596 fi ; \
597 echo "Generating locale $${inputfile}.$${charmap}" ; \
598 I18NPATH=$(STAGING_DIR)/usr/share/i18n:/usr/share/i18n \
599 $(HOST_DIR)/usr/bin/localedef \
600 --prefix=$(TARGET_DIR) \
601 --$(call LOWERCASE,$(BR2_ENDIAN))-endian \
602 -i $${inputfile} -f $${charmap} \
603 $${locale} ; \
604 done
605endef
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100606TARGET_FINALIZE_HOOKS += GENERATE_GLIBC_LOCALES
Fabio Porcedda33de7402014-06-27 14:15:58 +0200607endif
608endif
609
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200610ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
611LOCALE_WHITELIST = $(BUILD_DIR)/locales.nopurge
612LOCALE_NOPURGE = $(call qstrip,$(BR2_ENABLE_LOCALE_WHITELIST))
613
Valentine Barshakb7915712015-07-14 01:45:28 +0200614# This piece of junk does the following:
615# First collect the whitelist in a file.
616# Then go over all the locale dirs and for each subdir, check if it exists
617# in the whitelist file. If it doesn't, kill it.
618# Finally, specifically for X11, regenerate locale.dir from the whitelist.
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200619define PURGE_LOCALES
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200620 rm -f $(LOCALE_WHITELIST)
Sven Neumann201adef2014-06-18 11:23:30 +0200621 for i in $(LOCALE_NOPURGE) locale-archive; do echo $$i >> $(LOCALE_WHITELIST); done
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200622
Arnout Vandecappelle36480ea2015-07-13 23:00:34 +0200623 for dir in $(wildcard $(addprefix $(TARGET_DIR),/usr/share/locale /usr/share/X11/locale /usr/lib/locale)); \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200624 do \
Arnout Vandecappelle805240b2015-07-14 01:45:27 +0200625 for langdir in $$dir/*; \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200626 do \
Trent Piephobbe29b92016-03-08 21:02:15 +0000627 if [ -e "$${langdir}" ]; \
628 then \
629 grep -qx "$${langdir##*/}" $(LOCALE_WHITELIST) || rm -rf $$langdir; \
630 fi \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200631 done; \
632 done
Valentine Barshakb7915712015-07-14 01:45:28 +0200633 if [ -d $(TARGET_DIR)/usr/share/X11/locale ]; \
634 then \
635 for lang in $(LOCALE_NOPURGE); \
636 do \
637 if [ -f $(TARGET_DIR)/usr/share/X11/locale/$$lang/XLC_LOCALE ]; \
638 then \
639 echo "$$lang/XLC_LOCALE: $$lang"; \
640 fi \
641 done > $(TARGET_DIR)/usr/share/X11/locale/locale.dir; \
642 fi
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200643endef
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200644TARGET_FINALIZE_HOOKS += PURGE_LOCALES
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200645endif
646
Fabio Porceddad4c0c642014-02-20 15:26:18 +0100647$(TARGETS_ROOTFS): target-finalize
648
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200649target-finalize: $(PACKAGES)
Thomas De Schampheleire6f6a2cf2014-05-12 16:19:27 +0200650 @$(call MESSAGE,"Finalizing target directory")
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200651 $(foreach hook,$(TARGET_FINALIZE_HOOKS),$($(hook))$(sep))
Valentine Barshak94d3aa12012-10-02 08:52:15 +0000652 rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/share/aclocal \
Luca Ceresolidf99efb2013-03-06 07:14:26 +0000653 $(TARGET_DIR)/usr/lib/pkgconfig $(TARGET_DIR)/usr/share/pkgconfig \
654 $(TARGET_DIR)/usr/lib/cmake $(TARGET_DIR)/usr/share/cmake
655 find $(TARGET_DIR)/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f
Herve Codina87f3ede2015-09-15 15:27:06 +0200656 find $(TARGET_DIR)/lib $(TARGET_DIR)/usr/lib $(TARGET_DIR)/usr/libexec \
657 \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
Malte Starostike48a72e2010-07-24 21:29:56 +0200658ifneq ($(BR2_PACKAGE_GDB),y)
659 rm -rf $(TARGET_DIR)/usr/share/gdb
660endif
Maxime Hadjinlian76d1c722015-07-12 17:25:57 +0200661ifneq ($(BR2_PACKAGE_BASH),y)
662 rm -rf $(TARGET_DIR)/usr/share/bash-completion
663endif
664ifneq ($(BR2_PACKAGE_ZSH),y)
665 rm -rf $(TARGET_DIR)/usr/share/zsh
666endif
Peter Korsgaard32faf352009-04-07 21:04:31 +0000667 rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/man
Peter Korsgaard32faf352009-04-07 21:04:31 +0000668 rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info
Thomas Petazzoni87b06372010-04-10 22:42:45 +0200669 rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc
Paulius Zaleckasd701a822010-05-05 13:09:36 +0300670 rm -rf $(TARGET_DIR)/usr/share/gtk-doc
Gaël PORTAY5b7013c2016-11-22 15:53:33 -0500671 rmdir $(TARGET_DIR)/usr/share 2>/dev/null || true
Andrew Parlane26f215d2015-03-18 15:10:29 +0000672 $(STRIP_FIND_CMD) | xargs -0 $(STRIPCMD) 2>/dev/null || true
Mike Frysinger8101c9a2010-11-17 18:55:43 -0500673
Richard Braun6ae78862012-11-20 07:18:11 +0000674# See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads
675# besides the one in which crash occurred; or SIGTRAP kills my program when
676# I set a breakpoint"
677ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
678 find $(TARGET_DIR)/lib -type f -name 'libpthread*.so*' | \
Thomas Petazzoni52e70732013-08-20 13:03:03 +0200679 xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG)
Richard Braun6ae78862012-11-20 07:18:11 +0000680endif
681
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200682# Valgrind needs ld.so with enough information, so only strip
683# debugging symbols.
684 find $(TARGET_DIR)/lib -type f -name 'ld-*.so*' | \
685 xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG)
Thomas Petazzoni9c407232016-01-01 22:23:39 +0100686 test -f $(TARGET_DIR)/etc/ld.so.conf && \
687 { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true
688 test -d $(TARGET_DIR)/etc/ld.so.conf.d && \
689 { echo "ERROR: we shouldn't have a /etc/ld.so.conf.d directory"; exit 1; } || true
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200690 mkdir -p $(TARGET_DIR)/etc
Peter Korsgaard451a8872012-02-14 12:58:25 +0100691 ( \
692 echo "NAME=Buildroot"; \
693 echo "VERSION=$(BR2_VERSION_FULL)"; \
694 echo "ID=buildroot"; \
695 echo "VERSION_ID=$(BR2_VERSION)"; \
696 echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \
697 ) > $(TARGET_DIR)/etc/os-release
Peter Korsgaard912ea812009-09-30 17:40:24 +0200698
Luca Ceresolie9b77122013-04-08 06:50:16 +0000699 @$(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \
700 $(call MESSAGE,"Copying overlay $(d)"); \
Peter Seiderer0db34522016-04-23 21:18:29 +0200701 rsync -a --ignore-times --keep-dirlinks $(RSYNC_VCS_EXCLUSIONS) \
Guido Martínez361d3572014-11-21 13:19:01 -0300702 --chmod=u=rwX,go=rX --exclude .empty --exclude '*~' \
Luca Ceresolie9b77122013-04-08 06:50:16 +0000703 $(d)/ $(TARGET_DIR)$(sep))
Arnout Vandecappelle (Essensium/Mind)7f860892013-02-05 07:16:00 +0000704
Philippe Reynesdbf49782012-11-17 13:01:22 +0100705 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \
Luca Ceresoli1b9b1682013-04-08 06:50:14 +0000706 $(call MESSAGE,"Executing post-build script $(s)"); \
Yann E. MORIN9806bf52014-03-10 21:51:33 +0100707 $(EXTRA_ENV) $(s) $(TARGET_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Daniel Mackeed7d872009-07-08 22:46:58 +0200708
Thomas Petazzonifbb3b862014-02-28 21:05:27 +0100709target-post-image: $(TARGETS_ROOTFS) target-finalize
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000710 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_IMAGE_SCRIPT)), \
Luca Ceresoli6d90a692013-04-08 06:50:15 +0000711 $(call MESSAGE,"Executing post-image script $(s)"); \
Yann E. MORIN9806bf52014-03-10 21:51:33 +0100712 $(EXTRA_ENV) $(s) $(BINARIES_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000713
Thomas Petazzoni17dcad02015-04-26 11:51:12 +0200714source: $(foreach p,$(PACKAGES),$(p)-all-source)
Eric Andersenffde94b2001-12-22 00:56:11 +0000715
Thomas Petazzoni7e679cc2015-04-26 11:51:01 +0200716_external-deps: $(foreach p,$(PACKAGES),$(p)-all-external-deps)
Peter Korsgaard155971e2008-03-04 12:19:16 +0000717external-deps:
Thomas Petazzoni7e679cc2015-04-26 11:51:01 +0200718 @$(MAKE1) -Bs $(EXTRAMAKEARGS) _external-deps | sort -u
Peter Korsgaard155971e2008-03-04 12:19:16 +0000719
Thomas Petazzoni7800b962015-04-26 11:51:03 +0200720# check if download URLs are outdated
Thomas Petazzonif9b92822015-04-26 11:51:06 +0200721source-check: $(foreach p,$(PACKAGES),$(p)-all-source-check)
Thomas Petazzoni7800b962015-04-26 11:51:03 +0200722
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200723legal-info-clean:
724 @rm -fr $(LEGAL_INFO_DIR)
725
726legal-info-prepare: $(LEGAL_INFO_DIR)
727 @$(call MESSAGE,"Collecting legal info")
Thomas De Schampheleire366f17f2013-11-12 09:47:58 +0100728 @$(call legal-license-file,buildroot,COPYING,COPYING,HOST)
Clayton Shotwellaf629e42014-07-21 08:46:31 -0500729 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,TARGET)
730 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,HOST)
731 @$(call legal-manifest,buildroot,$(BR2_VERSION_FULL),GPLv2+,COPYING,not saved,not saved,HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200732 @$(call legal-warning,the Buildroot source code has not been saved)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100733 @cp $(BR2_CONFIG) $(LEGAL_INFO_DIR)/buildroot.config
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200734
Thomas Petazzoni5db22b32015-04-12 18:37:50 +0200735legal-info: dirs legal-info-clean legal-info-prepare $(foreach p,$(PACKAGES),$(p)-all-legal-info) \
Thomas De Schampheleire858334c2013-11-12 09:47:59 +0100736 $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200737 @cat support/legal-info/README.header >>$(LEGAL_REPORT)
738 @if [ -r $(LEGAL_WARNINGS) ]; then \
739 cat support/legal-info/README.warnings-header \
740 $(LEGAL_WARNINGS) >>$(LEGAL_REPORT); \
741 cat $(LEGAL_WARNINGS); fi
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200742 @rm -f $(LEGAL_WARNINGS)
Yann E. MORIN7bfce062016-05-07 18:14:36 +0200743 @(cd $(LEGAL_INFO_DIR); \
744 find * -type f -exec sha256sum {} + | LC_ALL=C sort -k2 \
745 >.legal-info.sha256; \
746 mv .legal-info.sha256 legal-info.sha256)
747 @echo "Legal info produced in $(LEGAL_INFO_DIR)"
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200748
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200749show-targets:
Thomas Petazzoniadc88b82015-04-12 18:37:51 +0200750 @echo $(PACKAGES) $(TARGETS_ROOTFS)
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200751
Yann E. MORINe16bf922013-12-28 18:39:11 +0100752graph-build: $(O)/build/build-time.log
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100753 @install -d $(GRAPHS_DIR)
Yann E. MORINe16bf922013-12-28 18:39:11 +0100754 $(foreach o,name build duration,./support/scripts/graph-build-time \
755 --type=histogram --order=$(o) --input=$(<) \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100756 --output=$(GRAPHS_DIR)/build.hist-$(o).$(BR_GRAPH_OUT) \
Yann E. MORIN8ae78382014-02-23 16:59:11 +0100757 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
Yann E. MORINe16bf922013-12-28 18:39:11 +0100758 $(foreach t,packages steps,./support/scripts/graph-build-time \
759 --type=pie-$(t) --input=$(<) \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100760 --output=$(GRAPHS_DIR)/build.pie-$(t).$(BR_GRAPH_OUT) \
Yann E. MORIN8ae78382014-02-23 16:59:11 +0100761 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
Yann E. MORINe16bf922013-12-28 18:39:11 +0100762
Fabio Porceddad3c1c642014-06-17 11:33:54 +0200763graph-depends-requirements:
Thomas Petazzoni664f2702014-06-13 14:17:19 +0200764 @dot -? >/dev/null 2>&1 || \
Fabio Porceddad3c1c642014-06-17 11:33:54 +0200765 { echo "ERROR: The 'dot' program from Graphviz is needed for graph-depends" >&2; exit 1; }
766
767graph-depends: graph-depends-requirements
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100768 @$(INSTALL) -d $(GRAPHS_DIR)
Yann E. MORIN56eb3942014-01-07 23:46:04 +0100769 @cd "$(CONFIG_DIR)"; \
Yann E. MORIN287a8822014-05-16 23:05:13 +0200770 $(TOPDIR)/support/scripts/graph-depends $(BR2_GRAPH_DEPS_OPTS) \
Yann E. MORIN2a2eb552016-10-23 19:19:44 +0200771 --direct -o $(GRAPHS_DIR)/$(@).dot
Yann E. MORIN5e7020e2016-02-07 22:34:26 +0100772 dot $(BR2_GRAPH_DOT_OPTS) -T$(BR_GRAPH_OUT) \
773 -o $(GRAPHS_DIR)/$(@).$(BR_GRAPH_OUT) \
774 $(GRAPHS_DIR)/$(@).dot
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100775
Thomas Petazzoni24c75fb2015-10-17 15:33:44 +0200776graph-size:
777 $(Q)mkdir -p $(GRAPHS_DIR)
778 $(Q)$(TOPDIR)/support/scripts/size-stats --builddir $(BASE_DIR) \
779 --graph $(GRAPHS_DIR)/graph-size.$(BR_GRAPH_OUT) \
780 --file-size-csv $(GRAPHS_DIR)/file-size-stats.csv \
781 --package-size-csv $(GRAPHS_DIR)/package-size-stats.csv
782
Yann E. MORIN9dac9862016-02-07 22:34:29 +0100783check-dependencies:
784 @cd "$(CONFIG_DIR)"; \
785 $(TOPDIR)/support/scripts/graph-depends -C
786
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000787else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersen2d523c22004-10-09 01:06:03 +0000788
789all: menuconfig
790
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000791endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
792
Eric Andersen2d523c22004-10-09 01:06:03 +0000793# configuration
794# ---------------------------------------------------------------------------
795
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200796HOSTCFLAGS = $(CFLAGS_FOR_BUILD)
Bernhard Reutner-Fischerc0d7d4e2007-07-09 18:23:20 +0000797export HOSTCFLAGS
798
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200799.PHONY: prepare-kconfig
Yann E. MORIN4802db32016-07-17 12:34:26 +0200800prepare-kconfig: outputmakefile $(BUILD_DIR)/.br2-external.in
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200801
Peter Korsgaard2cc210c2010-06-20 23:05:32 +0200802$(BUILD_DIR)/buildroot-config/%onf:
803 mkdir -p $(@D)/lxdialog
Bjørn Forsman0515fe42015-01-03 00:58:47 +0100804 PKG_CONFIG_PATH="$(HOST_PKG_CONFIG_PATH)" $(MAKE) CC="$(HOSTCC_NOCCACHE)" HOSTCC="$(HOSTCC_NOCCACHE)" \
805 obj=$(@D) -C $(CONFIG) -f Makefile.br $(@F)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200806
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000807DEFCONFIG = $(call qstrip,$(BR2_DEFCONFIG))
808
809# We don't want to fully expand BR2_DEFCONFIG here, so Kconfig will
810# recognize that if it's still at its default $(CONFIG_DIR)/defconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200811COMMON_CONFIG_ENV = \
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000812 BR2_DEFCONFIG='$(call qstrip,$(value BR2_DEFCONFIG))' \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200813 KCONFIG_AUTOCONFIG=$(BUILD_DIR)/buildroot-config/auto.conf \
814 KCONFIG_AUTOHEADER=$(BUILD_DIR)/buildroot-config/autoconf.h \
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200815 KCONFIG_TRISTATE=$(BUILD_DIR)/buildroot-config/tristate.config \
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100816 BR2_CONFIG=$(BR2_CONFIG) \
Arnout Vandecappelle12825f72015-12-31 01:34:13 +0100817 HOST_GCC_VERSION="$(HOSTCC_VERSION)" \
Yann E. MORIN4802db32016-07-17 12:34:26 +0200818 BUILD_DIR=$(BUILD_DIR) \
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200819 SKIP_LEGACY=
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200820
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200821xconfig: $(BUILD_DIR)/buildroot-config/qconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100822 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200823
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200824gconfig: $(BUILD_DIR)/buildroot-config/gconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100825 @$(COMMON_CONFIG_ENV) srctree=$(TOPDIR) $< $(CONFIG_CONFIG_IN)
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200826
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200827menuconfig: $(BUILD_DIR)/buildroot-config/mconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100828 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000829
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200830nconfig: $(BUILD_DIR)/buildroot-config/nconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100831 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000832
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200833config: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200834 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000835
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200836# For the config targets that automatically select options, we pass
837# SKIP_LEGACY=y to disable the legacy options. However, in that case
838# no values are set for the legacy options so a subsequent oldconfig
839# will query them. Therefore, run an additional olddefconfig.
840
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200841oldconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200842 @$(COMMON_CONFIG_ENV) $< --oldconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000843
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200844randconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200845 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --randconfig $(CONFIG_CONFIG_IN)
846 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Eric Andersen2d523c22004-10-09 01:06:03 +0000847
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200848allyesconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200849 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --allyesconfig $(CONFIG_CONFIG_IN)
850 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Eric Andersen2d523c22004-10-09 01:06:03 +0000851
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200852allnoconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200853 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --allnoconfig $(CONFIG_CONFIG_IN)
854 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Eric Andersen2d523c22004-10-09 01:06:03 +0000855
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200856randpackageconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100857 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200858 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \
Will Wagner39ca6d52010-01-11 12:28:50 +0000859 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200860 $< --randconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000861 @rm -f $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200862 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Peter Korsgaard66527702009-10-04 21:57:12 +0200863
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200864allyespackageconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100865 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200866 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \
Will Wagner39ca6d52010-01-11 12:28:50 +0000867 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200868 $< --allyesconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000869 @rm -f $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200870 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Peter Korsgaard66527702009-10-04 21:57:12 +0200871
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200872allnopackageconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100873 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200874 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \
Will Wagner39ca6d52010-01-11 12:28:50 +0000875 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200876 $< --allnoconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000877 @rm -f $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200878 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Peter Korsgaard66527702009-10-04 21:57:12 +0200879
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200880silentoldconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200881 $(COMMON_CONFIG_ENV) $< --silentoldconfig $(CONFIG_CONFIG_IN)
882
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200883olddefconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000884 $(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN)
885
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200886defconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000887 @$(COMMON_CONFIG_ENV) $< --defconfig$(if $(DEFCONFIG),=$(DEFCONFIG)) $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000888
Yann E. MORIN666edc72016-07-17 12:34:22 +0200889define percent_defconfig
Arnout Vandecappelle32babbf2015-02-02 16:34:46 +0100890# Override the BR2_DEFCONFIG from COMMON_CONFIG_ENV with the new defconfig
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200891%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(1)/configs/%_defconfig prepare-kconfig
Yann E. MORIN666edc72016-07-17 12:34:22 +0200892 @$$(COMMON_CONFIG_ENV) BR2_DEFCONFIG=$(1)/configs/$$@ \
893 $$< --defconfig=$(1)/configs/$$@ $$(CONFIG_CONFIG_IN)
894endef
Yann E. MORIN339e1c92016-10-14 16:39:22 +0200895$(eval $(foreach d,$(call reverse,$(TOPDIR) $(BR2_EXTERNAL_DIRS)),$(call percent_defconfig,$(d))$(sep)))
Thomas Petazzoni6f381192010-08-11 20:01:23 +0200896
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200897savedefconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000898 @$(COMMON_CONFIG_ENV) $< \
899 --savedefconfig=$(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig) \
900 $(CONFIG_CONFIG_IN)
Herve Codinaf71a6212015-06-04 10:16:33 +0200901 @$(SED) '/BR2_DEFCONFIG=/d' $(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig)
Eric Andersen2d523c22004-10-09 01:06:03 +0000902
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000903.PHONY: defconfig savedefconfig
Peter Korsgaard406053d2009-11-20 14:05:48 +0100904
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200905################################################################################
Eric Andersen2d523c22004-10-09 01:06:03 +0000906#
907# Cleanup and misc junk
908#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200909################################################################################
Yann E. MORINaefad532010-09-26 10:56:12 +0200910
911# outputmakefile generates a Makefile in the output directory, if using a
912# separate output directory. This allows convenient use of make in the
913# output directory.
914outputmakefile:
915ifeq ($(NEED_WRAPPER),y)
Thomas Petazzonif082c7c2011-08-31 23:35:02 +0200916 $(Q)$(TOPDIR)/support/scripts/mkmakefile $(TOPDIR) $(O)
Yann E. MORINaefad532010-09-26 10:56:12 +0200917endif
918
Yann E. MORIN4802db32016-07-17 12:34:26 +0200919# Even though the target is a real file, we mark it as PHONY as we
920# want it to be re-generated each time make is invoked, in case the
921# value of BR2_EXTERNAL is changed.
922.PHONY: $(BUILD_DIR)/.br2-external.in
923$(BUILD_DIR)/.br2-external.in: $(BUILD_DIR)
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200924 $(Q)support/scripts/br2-external -k -o "$(@)" $(BR2_EXTERNAL)
Yann E. MORIN4802db32016-07-17 12:34:26 +0200925
Yann E. MORIN376fda82015-11-04 22:42:39 +0100926# printvars prints all the variables currently defined in our
927# Makefiles. Alternatively, if a non-empty VARS variable is passed,
928# only the variables matching the make pattern passed in VARS are
929# displayed.
Émeric Vigier98b616d2013-05-29 00:41:11 +0200930printvars:
931 @$(foreach V, \
Yann E. MORIN376fda82015-11-04 22:42:39 +0100932 $(sort $(if $(VARS),$(filter $(VARS),$(.VARIABLES)),$(.VARIABLES))), \
Émeric Vigier98b616d2013-05-29 00:41:11 +0200933 $(if $(filter-out environment% default automatic, \
934 $(origin $V)), \
935 $(info $V=$($V) ($(value $V)))))
936
Eric Andersen2d523c22004-10-09 01:06:03 +0000937clean:
Thomas De Schampheleire300eb6b2013-09-30 13:09:27 +0200938 rm -rf $(TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) \
Arnout Vandecappellee0c60672014-03-17 09:22:33 +0100939 $(BUILD_DIR) $(BASE_DIR)/staging \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100940 $(LEGAL_INFO_DIR) $(GRAPHS_DIR)
Eric Andersen2d523c22004-10-09 01:06:03 +0000941
942distclean: clean
Peter Korsgaard406053d2009-11-20 14:05:48 +0100943ifeq ($(O),output)
944 rm -rf $(O)
945endif
Yann E. MORINe76b4fd2016-09-11 15:55:46 +0200946 rm -rf $(TOPDIR)/dl $(BR2_CONFIG) $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/..config.tmp \
Yann E. MORINf8c0e452015-10-22 22:34:00 +0200947 $(CONFIG_DIR)/.auto.deps $(BR2_EXTERNAL_FILE)
Eric Andersen2d523c22004-10-09 01:06:03 +0000948
Yann E. MORINa49b81e2016-04-16 23:20:17 +0200949help:
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000950 @echo 'Cleaning:'
Peter Korsgaard406053d2009-11-20 14:05:48 +0100951 @echo ' clean - delete all files created by build'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000952 @echo ' distclean - delete all non-source files (including .config)'
953 @echo
954 @echo 'Build:'
955 @echo ' all - make world'
Fabio Porcedda2a786412013-01-14 22:02:00 +0000956 @echo ' toolchain - build toolchain'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000957 @echo
958 @echo 'Configuration:'
959 @echo ' menuconfig - interactive curses-based configurator'
Peter Korsgaard15f5bef2011-02-01 08:41:01 +0100960 @echo ' nconfig - interactive ncurses-based configurator'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200961 @echo ' xconfig - interactive Qt-based configurator'
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200962 @echo ' gconfig - interactive GTK-based configurator'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000963 @echo ' oldconfig - resolve any unresolved symbols in .config'
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000964 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
965 @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200966 @echo ' randconfig - New config with random answer to all options'
967 @echo ' defconfig - New config with default answer to all options'
Arnout Vandecappelle33f454b2012-04-28 07:14:50 +0000968 @echo ' BR2_DEFCONFIG, if set, is used as input'
Frank Hunleth5c1a75c2015-02-11 08:14:49 -0500969 @echo ' savedefconfig - Save current config to BR2_DEFCONFIG (minimal config)'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200970 @echo ' allyesconfig - New config where all options are accepted with yes'
971 @echo ' allnoconfig - New config where all options are answered with no'
Peter Korsgaard66527702009-10-04 21:57:12 +0200972 @echo ' randpackageconfig - New config with random answer to package options'
973 @echo ' allyespackageconfig - New config where pkg options are accepted with yes'
974 @echo ' allnopackageconfig - New config where package options are answered with no'
Arnout Vandecappelleb1e0b6d2015-03-21 20:49:47 +0100975 @echo
976 @echo 'Package-specific:'
977 @echo ' <pkg> - Build and install <pkg> and all its dependencies'
978 @echo ' <pkg>-source - Only download the source files for <pkg>'
979 @echo ' <pkg>-extract - Extract <pkg> sources'
980 @echo ' <pkg>-patch - Apply patches to <pkg>'
981 @echo ' <pkg>-depends - Build <pkg>'\''s dependencies'
982 @echo ' <pkg>-configure - Build <pkg> up to the configure step'
983 @echo ' <pkg>-build - Build <pkg> up to the build step'
Yann E. MORIN56cf5612016-10-23 17:28:51 +0200984 @echo ' <pkg>-show-depends - List packages on which <pkg> depends'
985 @echo ' <pkg>-show-rdepends - List packages which have <pkg> as a dependency'
Arnout Vandecappelleb1e0b6d2015-03-21 20:49:47 +0100986 @echo ' <pkg>-graph-depends - Generate a graph of <pkg>'\''s dependencies'
Yann E. MORIN2a2eb552016-10-23 19:19:44 +0200987 @echo ' <pkg>-graph-rdepends - Generate a graph of <pkg>'\''s reverse dependencies'
Arnout Vandecappelleb1e0b6d2015-03-21 20:49:47 +0100988 @echo ' <pkg>-dirclean - Remove <pkg> build directory'
989 @echo ' <pkg>-reconfigure - Restart the build from the configure step'
990 @echo ' <pkg>-rebuild - Restart the build from the build step'
Yann E. MORIN66a5fc72016-06-04 18:30:48 +0200991 $(foreach p,$(HELP_PACKAGES), \
992 @echo $(sep) \
993 @echo '$($(p)_NAME):' $(sep) \
994 $($(p)_HELP_CMDS)$(sep))
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000995 @echo
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200996 @echo 'Documentation:'
Thomas De Schampheleire55ecab12013-09-19 12:47:14 +0200997 @echo ' manual - build manual in all formats'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200998 @echo ' manual-html - build manual in HTML'
999 @echo ' manual-split-html - build manual in split HTML'
1000 @echo ' manual-pdf - build manual in PDF'
Thomas De Schampheleire462e9912013-10-18 22:31:26 +02001001 @echo ' manual-text - build manual in text'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001002 @echo ' manual-epub - build manual in ePub'
Yann E. MORINe16bf922013-12-28 18:39:11 +01001003 @echo ' graph-build - generate graphs of the build times'
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +01001004 @echo ' graph-depends - generate graph of the dependency tree'
Thomas Petazzoni24c75fb2015-10-17 15:33:44 +02001005 @echo ' graph-size - generate stats of the filesystem size'
Yann E. MORINde6377e2015-04-23 23:04:06 +02001006 @echo ' list-defconfigs - list all defconfigs (pre-configured minimal systems)'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001007 @echo
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001008 @echo 'Miscellaneous:'
1009 @echo ' source - download all sources needed for offline-build'
Thomas De Schampheleire07bae752012-06-21 19:38:42 +00001010 @echo ' source-check - check selected packages for valid download URLs'
Peter Korsgaard155971e2008-03-04 12:19:16 +00001011 @echo ' external-deps - list external packages used'
Luca Ceresoli7e76f902012-05-17 19:33:00 +02001012 @echo ' legal-info - generate info about license compliance'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001013 @echo
Peter Korsgaard15f5bef2011-02-01 08:41:01 +01001014 @echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build'
1015 @echo ' make O=dir - Locate all output files in "dir", including .config'
1016 @echo
Arnout Vandecappellef42a5802015-03-21 20:49:46 +01001017 @echo 'For further details, see README, generate the Buildroot manual, or consult'
1018 @echo 'it on-line at http://buildroot.org/docs.html'
1019 @echo
1020
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001021# List the defconfig files
1022# $(1): base directory
1023# $(2): br2-external name, empty for bundled
1024define list-defconfigs
1025 @first=true; \
1026 for defconfig in $(1)/configs/*_defconfig; do \
1027 [ -f "$${defconfig}" ] || continue; \
1028 if $${first}; then \
1029 if [ "$(2)" ]; then \
Yann E. MORIN49117c12016-10-14 16:39:23 +02001030 printf 'External configs in "$(call qstrip,$(2))":\n'; \
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001031 else \
1032 printf "Built-in configs:\n"; \
1033 fi; \
1034 first=false; \
1035 fi; \
1036 defconfig="$${defconfig##*/}"; \
1037 printf " %-35s - Build for %s\n" "$${defconfig}" "$${defconfig%_defconfig}"; \
1038 done; \
1039 $${first} || printf "\n"
1040endef
1041
1042# We iterate over BR2_EXTERNAL_NAMES rather than BR2_EXTERNAL_DIRS,
1043# because we want to display the name of the br2-external tree.
Arnout Vandecappellef42a5802015-03-21 20:49:46 +01001044list-defconfigs:
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001045 $(call list-defconfigs,$(TOPDIR))
1046 $(foreach name,$(BR2_EXTERNAL_NAMES),\
Yann E. MORIN49117c12016-10-14 16:39:23 +02001047 $(call list-defconfigs,$(BR2_EXTERNAL_$(name)_PATH),\
1048 $(BR2_EXTERNAL_$(name)_DESC))$(sep))
Bernhard Reutner-Fischerba2e7e02007-06-25 10:56:13 +00001049
Fabio Porceddac3e49d62014-04-23 10:39:23 +02001050release: OUT = buildroot-$(BR2_VERSION)
Peter Korsgaard0dca7062010-11-04 00:00:00 +01001051
Peter Korsgaard134ab1c2012-02-03 22:03:29 +01001052# Create release tarballs. We need to fiddle a bit to add the generated
1053# documentation to the git output
Peter Korsgaard0dca7062010-11-04 00:00:00 +01001054release:
Peter Korsgaardc6715b62013-09-17 13:42:07 +02001055 git archive --format=tar --prefix=$(OUT)/ HEAD > $(OUT).tar
Thomas De Schampheleire462e9912013-10-18 22:31:26 +02001056 $(MAKE) O=$(OUT) manual-html manual-text manual-pdf
Thomas De Schampheleire15cb9872015-07-17 12:20:35 +02001057 $(MAKE) O=$(OUT) manual-clean
Peter Korsgaard134ab1c2012-02-03 22:03:29 +01001058 tar rf $(OUT).tar $(OUT)
1059 gzip -9 -c < $(OUT).tar > $(OUT).tar.gz
1060 bzip2 -9 -c < $(OUT).tar > $(OUT).tar.bz2
1061 rm -rf $(OUT) $(OUT).tar
Peter Korsgaarde62d2ec2009-01-15 19:36:06 +00001062
Arnout Vandecappelle (Essensium/Mind)2b91ab72012-03-11 12:16:39 +01001063print-version:
1064 @echo $(BR2_VERSION_FULL)
1065
Thomas Petazzonib7285d02012-04-17 16:45:22 +02001066include docs/manual/manual.mk
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001067-include $(foreach dir,$(BR2_EXTERNAL_DIRS),$(dir)/docs/*/*.mk)
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001068
Peter Korsgaard66527702009-10-04 21:57:12 +02001069.PHONY: $(noconfig_targets)
Guido Martínezbee57452014-11-21 13:19:00 -03001070
Samuel Martin173135d2016-10-17 23:05:43 +02001071endif #umask / $(CURDIR) / $(O)