blob: d52852153f20592505f5f0f3d2f42efdec39b359 [file] [log] [blame]
Thomas De Schampheleire6cbdfb62013-09-05 09:12:15 +02001# Makefile for buildroot
Eric Andersenffde94b2001-12-22 00:56:11 +00002#
Eric Andersen15b26ae2005-02-07 22:19:26 +00003# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
Peter Korsgaarde580ce82014-01-08 17:12:04 +01004# Copyright (C) 2006-2014 by the Buildroot developers <buildroot@uclibc.org>
Peter Korsgaardf46ac032017-01-27 13:26:32 +01005# Copyright (C) 2014-2017 by the Buildroot developers <buildroot@buildroot.org>
Eric Andersenffde94b2001-12-22 00:56:11 +00006#
Eric Andersen08782ae2002-04-26 11:45:55 +00007# This program is free software; you can redistribute it and/or modify
Eric Andersen2d523c22004-10-09 01:06:03 +00008# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
Eric Andersenffde94b2001-12-22 00:56:11 +000011#
Eric Andersen2d523c22004-10-09 01:06:03 +000012# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
Eric Andersen08782ae2002-04-26 11:45:55 +000014# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Eric Andersen2d523c22004-10-09 01:06:03 +000015# General Public License for more details.
Peter Korsgaardb30d6732009-01-26 19:42:47 +000016#
Eric Andersen2d523c22004-10-09 01:06:03 +000017# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20#
Eric Andersenffde94b2001-12-22 00:56:11 +000021
Eric Andersen2d523c22004-10-09 01:06:03 +000022#--------------------------------------------------------------
23# Just run 'make menuconfig', configure stuff, then run 'make'.
24# You shouldn't need to mess with anything beyond this point...
25#--------------------------------------------------------------
Yann E. MORIN2d239bb2010-10-31 17:35:09 +010026
Arnout Vandecappelle6bb74302016-11-05 22:05:08 +010027# Delete default rules. We don't use them. This saves a bit of time.
28.SUFFIXES:
29
Kurt Van Dijck3f4c72c2016-06-19 06:12:06 +020030# we want bash as shell
31SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
32 else if [ -x /bin/bash ]; then echo /bin/bash; \
33 else echo sh; fi; fi)
34
Samuel Martin916e6142016-10-17 23:05:42 +020035# Set O variable if not already done on the command line;
36# or avoid confusing packages that can use the O=<dir> syntax for out-of-tree
37# build by preventing it from being forwarded to sub-make calls.
38ifneq ("$(origin O)", "command line")
Samuel Martin173135d2016-10-17 23:05:43 +020039O := $(CURDIR)/output
Samuel Martin916e6142016-10-17 23:05:42 +020040endif
41
42# Check if the current Buildroot execution meets all the pre-requisites.
43# If they are not met, Buildroot will actually do its job in a sub-make meeting
Samuel Martin173135d2016-10-17 23:05:43 +020044# its pre-requisites, which are:
Samuel Martin916e6142016-10-17 23:05:42 +020045# 1- Permissive enough umask:
46# Wrong or too restrictive umask will prevent Buildroot and packages from
47# creating files and directories.
Samuel Martin173135d2016-10-17 23:05:43 +020048# 2- Absolute canonical CWD (i.e. $(CURDIR)):
49# Otherwise, some packages will use CWD as-is, others will compute its
50# absolute canonical path. This makes harder tracking and fixing host
51# machine path leaks.
52# 3- Absolute canonical output location (i.e. $(O)):
53# For the same reason as the one for CWD.
54
55# Remove the trailing '/.' from $(O) as it can be added by the makefile wrapper
56# installed in the $(O) directory.
57# Also remove the trailing '/' the user can set when on the command line.
58override O := $(patsubst %/,%,$(patsubst %.,%,$(O)))
59# Make sure $(O) actually exists before calling realpath on it; this is to
60# avoid empty CANONICAL_O in case on non-existing entry.
61CANONICAL_O := $(shell mkdir -p $(O) >/dev/null 2>&1)$(realpath $(O))
62
63CANONICAL_CURDIR = $(realpath $(CURDIR))
Samuel Martin916e6142016-10-17 23:05:42 +020064
65REQ_UMASK = 0022
66
Samuel Martin173135d2016-10-17 23:05:43 +020067# Make sure O= is passed (with its absolute canonical path) everywhere the
68# toplevel makefile is called back.
69EXTRAMAKEARGS := O=$(CANONICAL_O)
Samuel Martin916e6142016-10-17 23:05:42 +020070
71# Check Buildroot execution pre-requisites here.
Samuel Martin173135d2016-10-17 23:05:43 +020072ifneq ($(shell umask):$(CURDIR):$(O),$(REQ_UMASK):$(CANONICAL_CURDIR):$(CANONICAL_O))
Guido Martínez1e9f6042015-07-17 00:33:07 +020073.PHONY: _all $(MAKECMDGOALS)
Guido Martínezbee57452014-11-21 13:19:00 -030074
Guido Martínez1e9f6042015-07-17 00:33:07 +020075$(MAKECMDGOALS): _all
76 @:
Guido Martínezbee57452014-11-21 13:19:00 -030077
Guido Martínez1e9f6042015-07-17 00:33:07 +020078_all:
Samuel Martin173135d2016-10-17 23:05:43 +020079 @umask $(REQ_UMASK) && \
80 $(MAKE) -C $(CANONICAL_CURDIR) --no-print-directory \
81 $(MAKECMDGOALS) $(EXTRAMAKEARGS)
Guido Martínezbee57452014-11-21 13:19:00 -030082
Samuel Martin173135d2016-10-17 23:05:43 +020083else # umask / $(CURDIR) / $(O)
Guido Martínezbee57452014-11-21 13:19:00 -030084
Yann E. MORIN5309e2e2014-10-11 19:34:42 +020085# This is our default rule, so must come first
86all:
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +020087.PHONY: all
Yann E. MORIN5309e2e2014-10-11 19:34:42 +020088
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010089# Set and export the version string
Peter Korsgaard071cc432017-11-13 22:28:15 +010090export BR2_VERSION := 2017.11-rc2
Gilles Chanteperdrix9befe942016-11-23 13:58:40 +010091# Actual time the release is cut (for reproducible builds)
Peter Korsgaard071cc432017-11-13 22:28:15 +010092BR2_VERSION_EPOCH = 1510608000
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010093
Gustavo Zacarias2ac7da02015-07-14 18:30:39 -030094# Save running make version since it's clobbered by the make package
95RUNNING_MAKE_VERSION := $(MAKE_VERSION)
96
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +010097# Check for minimal make version (note: this check will break at make 10.x)
Fabio Porceddac3e49d62014-04-23 10:39:23 +020098MIN_MAKE_VERSION = 3.81
Gustavo Zacarias2ac7da02015-07-14 18:30:39 -030099ifneq ($(firstword $(sort $(RUNNING_MAKE_VERSION) $(MIN_MAKE_VERSION))),$(MIN_MAKE_VERSION))
100$(error You have make '$(RUNNING_MAKE_VERSION)' installed. GNU make >= $(MIN_MAKE_VERSION) is required)
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +0100101endif
102
Fabio Porcedda2afb23a2014-02-14 10:55:08 +0100103# Parallel execution of this Makefile is disabled because it changes
104# the packages building order, that can be a problem for two reasons:
105# - If a package has an unspecified optional dependency and that
106# dependency is present when the package is built, it is used,
107# otherwise it isn't (but compilation happily proceeds) so the end
108# result will differ if the order is swapped due to parallel
109# building.
110# - Also changing the building order can be a problem if two packages
111# manipulate the same file in the target directory.
112#
113# Taking into account the above considerations, if you still want to execute
114# this top-level Makefile in parallel comment the ".NOTPARALLEL" line and
Fabio Porcedda1668e1d2015-07-01 10:10:46 +0200115# use the -j<jobs> option when building, e.g:
116# make -j$((`getconf _NPROCESSORS_ONLN`+1))
Yann E. MORIN2d239bb2010-10-31 17:35:09 +0100117.NOTPARALLEL:
118
Peter Korsgaard6b1dd452009-11-30 17:29:01 +0100119# absolute path
Samuel Martine0499942016-03-09 23:58:43 +0100120TOPDIR := $(CURDIR)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200121CONFIG_CONFIG_IN = Config.in
122CONFIG = support/kconfig
123DATE := $(shell date +%Y%m%d)
Eric Andersen2d523c22004-10-09 01:06:03 +0000124
Yann E. MORIN8258df22010-10-31 17:35:12 +0100125# Compute the full local version string so packages can use it as-is
126# Need to export it, so it can be got from environment in children (eg. mconf)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200127export BR2_VERSION_FULL := $(BR2_VERSION)$(shell $(TOPDIR)/support/scripts/setlocalversion)
Yann E. MORIN8258df22010-10-31 17:35:12 +0100128
Arnout Vandecappelle106dc752017-06-15 00:11:29 +0200129# List of targets and target patterns for which .config doesn't need to be read in
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200130noconfig_targets := menuconfig nconfig gconfig xconfig config oldconfig randconfig \
Arnout Vandecappelledab80982017-07-21 03:05:29 +0200131 defconfig %_defconfig allyesconfig allnoconfig alldefconfig silentoldconfig release \
Peter Korsgaard66527702009-10-04 21:57:12 +0200132 randpackageconfig allyespackageconfig allnopackageconfig \
Arnout Vandecappelleb50b6922017-06-15 00:11:30 +0200133 print-version olddefconfig distclean manual manual-%
Bernhard Reutner-Fischer9e250352006-12-02 19:01:10 +0000134
Thomas Petazzoni256f1422015-04-26 11:51:14 +0200135# Some global targets do not trigger a build, but are used to collect
136# metadata, or do various checks. When such targets are triggered,
137# some packages should not do their configuration sanity
138# checks. Provide them a BR_BUILDING variable set to 'y' when we're
139# actually building and they should do their sanity checks.
140#
141# We're building in two situations: when MAKECMDGOALS is empty
142# (default target is to build), or when MAKECMDGOALS contains
143# something else than one of the nobuild_targets.
Rahul Jain472f0ae2016-11-15 16:33:20 +0530144nobuild_targets := source %-source source-check \
145 legal-info %-legal-info external-deps _external-deps \
146 clean distclean help show-targets graph-depends \
147 %-graph-depends %-show-depends %-show-version \
148 graph-build graph-size list-defconfigs \
149 savedefconfig printvars
Thomas Petazzoni256f1422015-04-26 11:51:14 +0200150ifeq ($(MAKECMDGOALS),)
151BR_BUILDING = y
152else ifneq ($(filter-out $(nobuild_targets),$(MAKECMDGOALS)),)
153BR_BUILDING = y
154endif
155
Arnout Vandecappelle5e3f8962016-11-03 02:55:16 +0100156# We call make recursively to build packages. The command-line overrides that
157# are passed to Buildroot don't apply to those package build systems. In
158# particular, we don't want to pass down the O=<dir> option for out-of-tree
159# builds, because the value specified on the command line will not be correct
160# for packages.
161MAKEOVERRIDES :=
162
Yann E. MORIN242e0082016-07-17 12:34:21 +0200163# Include some helper macros and variables
164include support/misc/utils.mk
Peter Korsgaardf85f2de2009-01-25 20:19:01 +0000165
Samuel Martin0b1b2c42016-10-17 23:05:41 +0200166# Set variables related to in-tree or out-of-tree build.
Samuel Martin173135d2016-10-17 23:05:43 +0200167# Here, both $(O) and $(CURDIR) are absolute canonical paths.
168ifeq ($(O),$(CURDIR)/output)
169CONFIG_DIR := $(CURDIR)
Samuel Martin0b1b2c42016-10-17 23:05:41 +0200170NEED_WRAPPER =
171else
172CONFIG_DIR := $(O)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200173NEED_WRAPPER = y
Will Wagner39ca6d52010-01-11 12:28:50 +0000174endif
175
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200176# bash prints the name of the directory on 'cd <dir>' if CDPATH is
177# set, so unset it here to not cause problems. Notice that the export
Danomi Manchego6caa76d2016-11-22 21:31:31 -0500178# line doesn't affect the environment of $(shell ..) calls.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200179export CDPATH :=
Danomi Manchego6caa76d2016-11-22 21:31:31 -0500180
181BASE_DIR := $(CANONICAL_O)
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200182$(if $(BASE_DIR),, $(error output directory "$(O)" does not exist))
183
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100184
185# Handling of BR2_EXTERNAL.
186#
187# The value of BR2_EXTERNAL is stored in .br-external in the output directory.
Yann E. MORIN20cd4972016-10-14 16:39:20 +0200188# The location of the external.mk makefile fragments is computed in that file.
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200189# On subsequent invocations of make, this file is read in. BR2_EXTERNAL can
190# still be overridden on the command line, therefore the file is re-created
191# every time make is run.
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100192
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200193BR2_EXTERNAL_FILE = $(BASE_DIR)/.br-external.mk
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100194-include $(BR2_EXTERNAL_FILE)
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200195$(shell support/scripts/br2-external \
196 -m -o '$(BR2_EXTERNAL_FILE)' $(BR2_EXTERNAL))
197BR2_EXTERNAL_ERROR =
198include $(BR2_EXTERNAL_FILE)
199ifneq ($(BR2_EXTERNAL_ERROR),)
200$(error $(BR2_EXTERNAL_ERROR))
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100201endif
202
Masahiro Yamada5b686a02015-04-08 09:53:36 +0900203# To make sure that the environment variable overrides the .config option,
Arnout Vandecappelle67680212014-02-04 16:18:51 +0100204# set this before including .config.
205ifneq ($(BR2_DL_DIR),)
206DL_DIR := $(BR2_DL_DIR)
207endif
Gustavo Zacarias3901cb52015-10-15 10:24:39 -0300208ifneq ($(BR2_CCACHE_DIR),)
209BR_CACHE_DIR := $(BR2_CCACHE_DIR)
210endif
Arnout Vandecappelle67680212014-02-04 16:18:51 +0100211
Yann E. MORINf1fedbb2013-12-28 18:39:13 +0100212# Need that early, before we scan packages
213# Avoids doing the $(or...) everytime
Yann E. MORIN22d05902014-04-13 22:42:37 +0200214BR_GRAPH_OUT := $(or $(BR2_GRAPH_OUT),pdf)
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100215
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200216BUILD_DIR := $(BASE_DIR)/build
217BINARIES_DIR := $(BASE_DIR)/images
218TARGET_DIR := $(BASE_DIR)/target
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200219# initial definition so that 'make clean' works for most users, even without
220# .config. HOST_DIR will be overwritten later when .config is included.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200221HOST_DIR := $(BASE_DIR)/host
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100222GRAPHS_DIR := $(BASE_DIR)/graphs
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200223
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200224LEGAL_INFO_DIR = $(BASE_DIR)/legal-info
225REDIST_SOURCES_DIR_TARGET = $(LEGAL_INFO_DIR)/sources
226REDIST_SOURCES_DIR_HOST = $(LEGAL_INFO_DIR)/host-sources
227LICENSE_FILES_DIR_TARGET = $(LEGAL_INFO_DIR)/licenses
228LICENSE_FILES_DIR_HOST = $(LEGAL_INFO_DIR)/host-licenses
229LEGAL_MANIFEST_CSV_TARGET = $(LEGAL_INFO_DIR)/manifest.csv
230LEGAL_MANIFEST_CSV_HOST = $(LEGAL_INFO_DIR)/host-manifest.csv
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200231LEGAL_WARNINGS = $(LEGAL_INFO_DIR)/.warnings
232LEGAL_REPORT = $(LEGAL_INFO_DIR)/README
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200233
Yann E. MORINb1e079b2016-07-17 12:34:25 +0200234################################################################################
235#
236# staging and target directories do NOT list these as
237# dependencies anywhere else
238#
239################################################################################
Arnout Vandecappellece58db72017-07-10 01:21:17 +0200240$(BUILD_DIR) $(TARGET_DIR) $(HOST_DIR) $(BINARIES_DIR) $(LEGAL_INFO_DIR) $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST):
Yann E. MORINb1e079b2016-07-17 12:34:25 +0200241 @mkdir -p $@
242
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200243BR2_CONFIG = $(CONFIG_DIR)/.config
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000244
Ulf Samuelssona1b06512008-03-28 07:31:28 +0000245# Pull in the user's configuration file
246ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100247-include $(BR2_CONFIG)
Ulf Samuelsson7521f372007-09-12 04:34:16 +0000248endif
Eric Andersen2d523c22004-10-09 01:06:03 +0000249
Gilles Chanteperdrixa5f35132016-06-14 17:31:10 +0200250# timezone and locale may affect build output
251ifeq ($(BR2_REPRODUCIBLE),y)
Jérôme Pouiller3111f6a2016-11-23 13:58:57 +0100252export TZ = UTC
253export LANG = C
254export LC_ALL = C
Jérôme Pouiller9b91b212016-11-23 13:58:42 +0100255export GZIP = -n
Gilles Chanteperdrix9befe942016-11-23 13:58:40 +0100256BR2_VERSION_GIT_EPOCH = $(shell GIT_DIR=$(TOPDIR)/.git $(GIT) log -1 --format=%at)
Yann E. MORIN0437d2f2017-11-05 10:14:56 +0100257export SOURCE_DATE_EPOCH ?= $(if $(wildcard $(TOPDIR)/.git),$(BR2_VERSION_GIT_EPOCH),$(BR2_VERSION_EPOCH))
Jérôme Pouiller9eba09a2016-12-20 14:46:21 +0100258DEPENDENCIES_HOST_PREREQ += host-fakedate
Gilles Chanteperdrixa5f35132016-06-14 17:31:10 +0200259endif
260
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000261# To put more focus on warnings, be less verbose as default
262# Use 'make V=1' to see the full commands
Masahiro Yamada6bf9e232015-04-07 14:09:09 +0900263ifeq ("$(origin V)", "command line")
264 KBUILD_VERBOSE = $(V)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000265endif
266ifndef KBUILD_VERBOSE
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200267 KBUILD_VERBOSE = 0
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000268endif
269
270ifeq ($(KBUILD_VERBOSE),1)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200271 Q =
Bernhard Reutner-Fischer1669b6e2007-09-22 14:19:22 +0000272ifndef VERBOSE
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200273 VERBOSE = 1
Bernhard Reutner-Fischer1669b6e2007-09-22 14:19:22 +0000274endif
Cédric Marie30702982015-06-23 23:36:06 +0200275export VERBOSE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000276else
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200277 Q = @
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000278endif
279
Peter Korsgaard69f85922009-01-01 21:20:35 +0000280# kconfig uses CONFIG_SHELL
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200281CONFIG_SHELL := $(SHELL)
Peter Korsgaard69f85922009-01-01 21:20:35 +0000282
Cédric Marie474d39a2015-10-08 22:03:37 +0200283export SHELL CONFIG_SHELL Q KBUILD_VERBOSE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000284
285ifndef HOSTAR
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200286HOSTAR := ar
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000287endif
288ifndef HOSTAS
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200289HOSTAS := as
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000290endif
291ifndef HOSTCC
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200292HOSTCC := gcc
293HOSTCC := $(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000294endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200295HOSTCC_NOCCACHE := $(HOSTCC)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000296ifndef HOSTCXX
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200297HOSTCXX := g++
298HOSTCXX := $(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000299endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200300HOSTCXX_NOCCACHE := $(HOSTCXX)
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000301ifndef HOSTCPP
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200302HOSTCPP := cpp
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000303endif
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000304ifndef HOSTLD
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200305HOSTLD := ld
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000306endif
Ulf Samuelsson0f9c5b12007-07-15 21:54:11 +0000307ifndef HOSTLN
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200308HOSTLN := ln
Ulf Samuelsson0f9c5b12007-07-15 21:54:11 +0000309endif
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000310ifndef HOSTNM
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200311HOSTNM := nm
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000312endif
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100313ifndef HOSTOBJCOPY
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200314HOSTOBJCOPY := objcopy
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100315endif
316ifndef HOSTRANLIB
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200317HOSTRANLIB := ranlib
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100318endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200319HOSTAR := $(shell which $(HOSTAR) || type -p $(HOSTAR) || echo ar)
320HOSTAS := $(shell which $(HOSTAS) || type -p $(HOSTAS) || echo as)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200321HOSTCPP := $(shell which $(HOSTCPP) || type -p $(HOSTCPP) || echo cpp)
322HOSTLD := $(shell which $(HOSTLD) || type -p $(HOSTLD) || echo ld)
323HOSTLN := $(shell which $(HOSTLN) || type -p $(HOSTLN) || echo ln)
324HOSTNM := $(shell which $(HOSTNM) || type -p $(HOSTNM) || echo nm)
325HOSTOBJCOPY := $(shell which $(HOSTOBJCOPY) || type -p $(HOSTOBJCOPY) || echo objcopy)
326HOSTRANLIB := $(shell which $(HOSTRANLIB) || type -p $(HOSTRANLIB) || echo ranlib)
Thomas Petazzoni90605b82016-12-04 22:37:24 +0100327SED := $(shell which sed || type -p sed) -i -e
Ulf Samuelsson54e93322008-07-06 07:34:41 +0000328
Masahiro Yamadaa9847d12015-04-09 20:28:55 +0900329export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTLD
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100330export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000331
Yann E. MORIN91ea9332015-11-09 20:00:21 +0100332# Determine the userland we are running on.
333#
334# Note that, despite its name, we are not interested in the actual
335# architecture name. This is mostly used to determine whether some
336# of the binary tools (e.g. pre-built external toolchains) can run
337# on the current host. So we need to know if the userland we're
338# running on can actually run those toolchains.
339#
340# For example, a 64-bit prebuilt toolchain will not run on a 64-bit
341# kernel if the userland is 32-bit (e.g. in a chroot for example).
342#
343# So, we extract the first part of the tuple the host gcc was
344# configured to generate code for; we assume this is our userland.
345#
Romain Naour86229d62016-01-20 22:53:19 +0100346export HOSTARCH := $(shell LC_ALL=C $(HOSTCC_NOCCACHE) -v 2>&1 | \
Yann E. MORIN91ea9332015-11-09 20:00:21 +0100347 sed -e '/^Target: \([^-]*\).*/!d' \
348 -e 's//\1/' \
349 -e 's/i.86/x86/' \
350 -e 's/sun4u/sparc64/' \
351 -e 's/arm.*/arm/' \
352 -e 's/sa110/arm/' \
353 -e 's/ppc64/powerpc64/' \
354 -e 's/ppc/powerpc/' \
355 -e 's/macppc/powerpc/' \
356 -e 's/sh.*/sh/' )
357
Arnout Vandecappelle12825f72015-12-31 01:34:13 +0100358HOSTCC_VERSION := $(shell $(HOSTCC_NOCCACHE) --version | \
359 sed -n -r 's/^.* ([0-9]*)\.([0-9]*)\.([0-9]*)[ ]*.*/\1 \2/p')
360
361# For gcc >= 5.x, we only need the major version.
362ifneq ($(firstword $(HOSTCC_VERSION)),4)
363HOSTCC_VERSION := $(firstword $(HOSTCC_VERSION))
364endif
365
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000366# Make sure pkg-config doesn't look outside the buildroot tree
Bjørn Forsman0515fe42015-01-03 00:58:47 +0100367HOST_PKG_CONFIG_PATH := $(PKG_CONFIG_PATH)
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000368unexport PKG_CONFIG_PATH
Charles Manning4f607ed2012-12-02 11:13:04 +0000369unexport PKG_CONFIG_SYSROOT_DIR
Peter Korsgaardbdf472d2013-09-11 14:15:15 +0200370unexport PKG_CONFIG_LIBDIR
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000371
Thomas Petazzoni91123a62012-07-02 04:21:14 +0000372# Having DESTDIR set in the environment confuses the installation
373# steps of some packages.
374unexport DESTDIR
375
Gustavo Zacariasbed61a72013-07-11 11:37:33 -0300376# Causes breakage with packages that needs host-ruby
377unexport RUBYOPT
378
Thomas De Schampheleire3ed0ead2014-08-15 15:40:34 +0200379include package/pkg-utils.mk
Yann E. MORINab6a6212014-10-03 19:01:52 +0200380include package/doc-asciidoc.mk
Thomas De Schampheleire3ed0ead2014-08-15 15:40:34 +0200381
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000382ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersenffde94b2001-12-22 00:56:11 +0000383
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200384################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000385#
386# Hide troublesome environment variables from sub processes
387#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200388################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000389unexport CROSS_COMPILE
390unexport ARCH
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100391unexport CC
Nicolas Dichtel376737d2016-04-14 16:58:32 +0200392unexport LD
393unexport AR
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100394unexport CXX
395unexport CPP
Tom Rini344c5a22015-11-17 14:04:04 -0500396unexport RANLIB
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100397unexport CFLAGS
398unexport CXXFLAGS
399unexport GREP_OPTIONS
Nixf5437a62014-01-26 22:58:02 +0000400unexport TAR_OPTIONS
Peter Korsgaard12c9f7d2011-12-12 10:25:50 +0100401unexport CONFIG_SITE
Stephan Hoffmann32314b42012-08-17 13:54:16 +0200402unexport QMAKESPEC
Nathan Lynch20ca0082012-07-10 07:37:22 +0000403unexport TERMINFO
Risto Avila6d3b9752014-09-24 04:37:13 +0000404unexport MACHINE
Guido Martínez2e323302015-07-25 16:07:39 -0300405unexport O
Yann E. MORIN6cff7412017-02-14 18:24:32 +0100406unexport GCC_COLORS
Bernhard Reutner-Fischer7dcbbfb2007-06-02 09:05:40 +0000407
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200408GNU_HOST_NAME := $(shell support/gnuconfig/config.guess)
Thomas Petazzoni60281cb2010-04-10 23:17:25 +0200409
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200410PACKAGES :=
Yann E. MORIN0ea851c2015-10-22 22:33:56 +0200411PACKAGES_ALL :=
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000412
Peter Korsgaard89464a92009-09-30 17:39:44 +0200413# silent mode requested?
Fabio Porceddafffb68a2015-01-01 21:03:50 +0100414QUIET := $(if $(findstring s,$(filter-out --%,$(MAKEFLAGS))),-q)
Peter Korsgaard89464a92009-09-30 17:39:44 +0200415
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200416# Strip off the annoying quoting
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200417ARCH := $(call qstrip,$(BR2_ARCH))
Thomas Petazzoni65e80a02010-04-28 23:40:57 +0200418
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200419KERNEL_ARCH := $(shell echo "$(ARCH)" | sed -e "s/-.*//" \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200420 -e s/i.86/i386/ -e s/sun4u/sparc64/ \
Maxime Ripardf59aeca2013-05-06 00:14:55 +0000421 -e s/arcle/arc/ \
Peter Korsgaard8332ffa2013-06-10 14:04:03 +0200422 -e s/arceb/arc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200423 -e s/arm.*/arm/ -e s/sa110/arm/ \
Bamvor Jian Zhang827ba462015-03-18 17:49:48 +0800424 -e s/aarch64.*/arm64/ \
Mike Frysinger871db072011-02-07 00:49:11 -0500425 -e s/bfin/blackfin/ \
Waldemar Brodkorba818e292017-01-25 07:35:07 +0100426 -e s/or1k/openrisc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200427 -e s/parisc64/parisc/ \
Jeff Baileya426a912014-05-24 23:59:22 -0700428 -e s/powerpc64.*/powerpc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200429 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
Jan Drazilc2205812014-03-19 13:01:05 +0100430 -e s/sh.*/sh/ \
431 -e s/microblazeel/microblaze/)
Peter Korsgaard891973f2010-10-17 23:32:37 +0200432
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200433ZCAT := $(call qstrip,$(BR2_ZCAT))
434BZCAT := $(call qstrip,$(BR2_BZCAT))
435XZCAT := $(call qstrip,$(BR2_XZCAT))
Baruch Siachf1650322017-02-12 22:15:39 +0200436LZCAT := $(call qstrip,$(BR2_LZCAT))
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200437TAR_OPTIONS = $(call qstrip,$(BR2_TAR_OPTIONS)) -xf
Bernhard Reutner-Fischer1dbe6e32007-08-21 17:56:47 +0000438
Gustavo Zacariasa2b4f7f2011-02-02 10:05:56 -0300439# packages compiled for the host go here
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200440HOST_DIR := $(call qstrip,$(BR2_HOST_DIR))
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200441
Samuel Martincaa329b2014-04-15 00:31:04 +0200442# Quotes are needed for spaces and all in the original PATH content.
Arnout Vandecappelle4c8872d2017-07-04 16:03:55 +0200443BR_PATH = "$(HOST_DIR)/bin:$(HOST_DIR)/sbin:$(PATH)"
Samuel Martincaa329b2014-04-15 00:31:04 +0200444
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000445# Location of a file giving a big fat warning that output/target
446# should not be used as the root filesystem.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200447TARGET_DIR_WARNING_FILE = $(TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000448
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100449ifeq ($(BR2_CCACHE),y)
Arnout Vandecappelle0f9c0bf2017-07-05 13:14:19 +0200450CCACHE := $(HOST_DIR)/bin/ccache
Gustavo Zacarias3901cb52015-10-15 10:24:39 -0300451BR_CACHE_DIR ?= $(call qstrip,$(BR2_CCACHE_DIR))
Arnout Vandecappellee7ab4b42014-02-04 16:18:50 +0100452export BR_CACHE_DIR
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200453HOSTCC := $(CCACHE) $(HOSTCC)
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100454HOSTCXX := $(CCACHE) $(HOSTCXX)
Arnout Vandecappelle792f1272015-10-04 13:28:56 +0100455else
456export BR_NO_CCACHE
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100457endif
458
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000459# Scripts in support/ or post-build scripts may need to reference
460# these locations, so export them so it is easier to use
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100461export BR2_CONFIG
Gilles Chanteperdrixa5f35132016-06-14 17:31:10 +0200462export BR2_REPRODUCIBLE
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000463export TARGET_DIR
464export STAGING_DIR
465export HOST_DIR
466export BINARIES_DIR
Peter Korsgaard1300cb52013-01-14 10:02:29 +0100467export BASE_DIR
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000468
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200469################################################################################
Eric Andersen08782ae2002-04-26 11:45:55 +0000470#
Eric Andersenef407d32004-01-29 23:21:00 +0000471# You should probably leave this stuff alone unless you know
Eric Andersen08782ae2002-04-26 11:45:55 +0000472# what you are doing.
473#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200474################################################################################
Manuel Novoa III d632d422003-11-01 05:34:41 +0000475
Bernhard Reutner-Fischer6547bce2007-08-22 12:35:41 +0000476all: world
Eric Andersenffde94b2001-12-22 00:56:11 +0000477
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000478# Include legacy before the other things, because package .mk files
479# may rely on it.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000480include Makefile.legacy
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000481
Yann E. MORIN2de968f2017-07-18 19:25:31 +0200482include system/system.mk
Thomas Petazzoni486253d2012-04-17 16:45:23 +0200483include package/Makefile.in
Yann E. MORIN8efa2d82017-03-14 11:30:30 -0700484# arch/arch.mk.* must be after package/Makefile.in because it may need to
485# complement variables defined therein, like BR_NO_CHECK_HASH_FOR.
486-include $(wildcard arch/arch.mk.*)
Thomas De Schampheleirea7926682012-02-08 17:22:16 +0100487include support/dependencies/dependencies.mk
488
Alfredo Alvarez Fernandez862b76c2017-04-28 11:35:21 +0200489PACKAGES += $(DEPENDENCIES_HOST_PREREQ)
490
Yann E. MORIN11c10762014-07-27 21:28:32 +0200491include toolchain/*.mk
Thomas Petazzoni8b0905b2013-10-08 20:17:01 +0200492include toolchain/*/*.mk
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000493
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200494# Include the package override file if one has been provided in the
495# configuration.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200496PACKAGE_OVERRIDE_FILE = $(call qstrip,$(BR2_PACKAGE_OVERRIDE_FILE))
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200497ifneq ($(PACKAGE_OVERRIDE_FILE),)
498-include $(PACKAGE_OVERRIDE_FILE)
499endif
500
Jérôme Pouiller741cbcc2013-09-03 10:45:41 +0200501include $(sort $(wildcard package/*/*.mk))
Eric Andersend06645d2005-02-10 03:06:39 +0000502
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100503include boot/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100504include linux/linux.mk
Philippe Reynes00b1ff62014-05-05 09:52:13 +0200505include fs/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100506
Yann E. MORIN20cd4972016-10-14 16:39:20 +0200507# If using a br2-external tree, the BR2_EXTERNAL_$(NAME)_PATH variables
508# are also present in the .config file. Since .config is included after
509# we defined them in the Makefile, the values for those variables are
510# quoted. We just include the generated Makefile fragment .br2-external.mk
511# a third time, which will set those variables to the un-quoted values.
Yann E. MORINfc34cf72016-10-14 16:39:17 +0200512include $(BR2_EXTERNAL_FILE)
513
Yann E. MORIN64e12a32016-10-14 16:39:14 +0200514# Nothing to include if no BR2_EXTERNAL tree in use
Yann E. MORIN20cd4972016-10-14 16:39:20 +0200515include $(BR2_EXTERNAL_MKS)
Thomas Petazzoni8eb8aaf2013-12-05 20:11:11 +0100516
Thomas Petazzoni3e1b33a2016-01-01 01:01:23 +0100517# Now we are sure we have all the packages scanned and defined. We now
518# check for each package in the list of enabled packages, that all its
519# dependencies are indeed enabled.
520#
521# Only trigger the check for default builds. If the user forces building
522# a package, even if not enabled in the configuration, we want to accept
523# it.
524#
525ifeq ($(MAKECMDGOALS),)
526
527define CHECK_ONE_DEPENDENCY
528ifeq ($$($(2)_TYPE),target)
529ifeq ($$($(2)_IS_VIRTUAL),)
530ifneq ($$($$($(2)_KCONFIG_VAR)),y)
531$$(error $$($(2)_NAME) is in the dependency chain of $$($(1)_NAME) that \
532has added it to its _DEPENDENCIES variable without selecting it or \
533depending on it from Config.in)
534endif
535endif
536endif
537endef
538
539$(foreach pkg,$(call UPPERCASE,$(PACKAGES)),\
540 $(foreach dep,$(call UPPERCASE,$($(pkg)_FINAL_ALL_DEPENDENCIES)),\
541 $(eval $(call CHECK_ONE_DEPENDENCY,$(pkg),$(dep))$(sep))))
542
543endif
544
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200545.PHONY: dirs
Thomas Petazzonid21a1762013-06-30 21:29:06 +0200546dirs: $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
Matt Weber5ad679c2017-10-04 16:33:19 -0500547 $(HOST_DIR) $(HOST_DIR)/usr $(HOST_DIR)/lib $(BINARIES_DIR)
Ulf Samuelssonf958d892007-08-14 07:45:01 +0000548
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100549$(BUILD_DIR)/buildroot-config/auto.conf: $(BR2_CONFIG)
Peter Korsgaard879058a2013-12-16 13:49:28 +0100550 $(MAKE1) $(EXTRAMAKEARGS) HOSTCC="$(HOSTCC_NOCCACHE)" HOSTCXX="$(HOSTCXX_NOCCACHE)" silentoldconfig
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200551
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200552.PHONY: prepare
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200553prepare: $(BUILD_DIR)/buildroot-config/auto.conf
554
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200555.PHONY: world
Fabio Porceddaa2487752014-02-14 10:55:06 +0100556world: target-post-image
Fabio Porcedda2a786412013-01-14 22:02:00 +0000557
Wolfgang Grandegger994301a2017-07-22 13:15:40 +0200558.PHONY: sdk
559sdk: world
560 @$(call MESSAGE,"Rendering the SDK relocatable")
561 $(TOPDIR)/support/scripts/fix-rpath host
562 $(TOPDIR)/support/scripts/fix-rpath staging
563 $(INSTALL) -m 755 $(TOPDIR)/support/misc/relocate-sdk.sh $(HOST_DIR)/relocate-sdk.sh
564 echo $(HOST_DIR) > $(HOST_DIR)/share/buildroot/sdk-location
565
Arnout Vandecappellece58db72017-07-10 01:21:17 +0200566# Compatibility symlink in case a post-build script still uses $(HOST_DIR)/usr
567$(HOST_DIR)/usr: $(HOST_DIR)
568 @ln -snf . $@
Arnout Vandecappelle4c790b82017-07-04 16:03:52 +0200569
Matt Weber5ad679c2017-10-04 16:33:19 -0500570$(HOST_DIR)/lib: $(HOST_DIR)
571 @mkdir -p $@
572 @case $(HOSTARCH) in \
573 (*64) ln -snf lib $(@D)/lib64;; \
574 (*) ln -snf lib $(@D)/lib32;; \
575 esac
576
Yann E. MORINcb34ea52015-11-26 23:13:41 +0100577# Populating the staging with the base directories is handled by the skeleton package
Arnout Vandecappellece58db72017-07-10 01:21:17 +0200578$(STAGING_DIR):
Yann E. MORINcb34ea52015-11-26 23:13:41 +0100579 @mkdir -p $(STAGING_DIR)
Gustavo Zacarias5ad139e2010-12-31 08:39:05 -0300580 @ln -snf $(STAGING_DIR) $(BASE_DIR)/staging
Eric Andersen08782ae2002-04-26 11:45:55 +0000581
Thomas De Schampheleire7ad28652013-11-07 11:41:22 +0100582RSYNC_VCS_EXCLUSIONS = \
583 --exclude .svn --exclude .git --exclude .hg --exclude .bzr \
584 --exclude CVS
585
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000586STRIP_FIND_CMD = find $(TARGET_DIR)
587ifneq (,$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS)))
588STRIP_FIND_CMD += \( $(call finddirclauses,$(TARGET_DIR),$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) \) -prune -o
589endif
Thomas Petazzoni12d15072014-02-04 16:36:18 +0100590STRIP_FIND_CMD += -type f \( -perm /111 -o -name '*.so*' \)
Thomas De Schampheleire06635912014-04-30 21:29:02 +0200591# file exclusions:
592# - libpthread.so: a non-stripped libpthread shared library is needed for
593# proper debugging of pthread programs using gdb.
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200594# - ld.so: a non-stripped dynamic linker library is needed for valgrind
Thomas De Schampheleire06635912014-04-30 21:29:02 +0200595# - kernel modules (*.ko): do not function properly when stripped like normal
596# applications and libraries. Normally kernel modules are already excluded
597# by the executable permission check above, so the explicit exclusion is only
598# done for kernel modules with incorrect permissions.
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200599STRIP_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 +0000600
Fabio Porcedda28685d52014-06-27 14:15:57 +0200601ifeq ($(BR2_ECLIPSE_REGISTER),y)
602define TOOLCHAIN_ECLIPSE_REGISTER
603 ./support/scripts/eclipse-register-toolchain `readlink -f $(O)` \
604 $(notdir $(TARGET_CROSS)) $(BR2_ARCH)
605endef
606TARGET_FINALIZE_HOOKS += TOOLCHAIN_ECLIPSE_REGISTER
607endif
608
Fabio Porcedda33de7402014-06-27 14:15:58 +0200609# Generate locale data. Basically, we call the localedef program
610# (built by the host-localedef package) for each locale. The input
611# data comes preferably from the toolchain, or if the toolchain does
612# not have them (Linaro toolchains), we use the ones available on the
613# host machine.
614ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y)
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100615GLIBC_GENERATE_LOCALES = $(call qstrip,$(BR2_GENERATE_LOCALE))
616ifneq ($(GLIBC_GENERATE_LOCALES),)
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200617PACKAGES += host-localedef
Fabio Porcedda33de7402014-06-27 14:15:58 +0200618
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100619define GENERATE_GLIBC_LOCALES
Fabio Porcedda33de7402014-06-27 14:15:58 +0200620 $(Q)mkdir -p $(TARGET_DIR)/usr/lib/locale/
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100621 $(Q)for locale in $(GLIBC_GENERATE_LOCALES) ; do \
Fabio Porcedda33de7402014-06-27 14:15:58 +0200622 inputfile=`echo $${locale} | cut -f1 -d'.'` ; \
623 charmap=`echo $${locale} | cut -f2 -d'.' -s` ; \
624 if test -z "$${charmap}" ; then \
625 charmap="UTF-8" ; \
626 fi ; \
627 echo "Generating locale $${inputfile}.$${charmap}" ; \
628 I18NPATH=$(STAGING_DIR)/usr/share/i18n:/usr/share/i18n \
Arnout Vandecappelle0f9c0bf2017-07-05 13:14:19 +0200629 $(HOST_DIR)/bin/localedef \
Fabio Porcedda33de7402014-06-27 14:15:58 +0200630 --prefix=$(TARGET_DIR) \
631 --$(call LOWERCASE,$(BR2_ENDIAN))-endian \
632 -i $${inputfile} -f $${charmap} \
633 $${locale} ; \
634 done
635endef
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100636TARGET_FINALIZE_HOOKS += GENERATE_GLIBC_LOCALES
Fabio Porcedda33de7402014-06-27 14:15:58 +0200637endif
638endif
639
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200640ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
641LOCALE_WHITELIST = $(BUILD_DIR)/locales.nopurge
642LOCALE_NOPURGE = $(call qstrip,$(BR2_ENABLE_LOCALE_WHITELIST))
643
Valentine Barshakb7915712015-07-14 01:45:28 +0200644# This piece of junk does the following:
645# First collect the whitelist in a file.
646# Then go over all the locale dirs and for each subdir, check if it exists
647# in the whitelist file. If it doesn't, kill it.
648# Finally, specifically for X11, regenerate locale.dir from the whitelist.
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200649define PURGE_LOCALES
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200650 rm -f $(LOCALE_WHITELIST)
Sven Neumann201adef2014-06-18 11:23:30 +0200651 for i in $(LOCALE_NOPURGE) locale-archive; do echo $$i >> $(LOCALE_WHITELIST); done
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200652
Arnout Vandecappelle36480ea2015-07-13 23:00:34 +0200653 for dir in $(wildcard $(addprefix $(TARGET_DIR),/usr/share/locale /usr/share/X11/locale /usr/lib/locale)); \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200654 do \
Arnout Vandecappelle805240b2015-07-14 01:45:27 +0200655 for langdir in $$dir/*; \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200656 do \
Trent Piephobbe29b92016-03-08 21:02:15 +0000657 if [ -e "$${langdir}" ]; \
658 then \
659 grep -qx "$${langdir##*/}" $(LOCALE_WHITELIST) || rm -rf $$langdir; \
660 fi \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200661 done; \
662 done
Valentine Barshakb7915712015-07-14 01:45:28 +0200663 if [ -d $(TARGET_DIR)/usr/share/X11/locale ]; \
664 then \
665 for lang in $(LOCALE_NOPURGE); \
666 do \
667 if [ -f $(TARGET_DIR)/usr/share/X11/locale/$$lang/XLC_LOCALE ]; \
668 then \
669 echo "$$lang/XLC_LOCALE: $$lang"; \
670 fi \
671 done > $(TARGET_DIR)/usr/share/X11/locale/locale.dir; \
672 fi
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200673endef
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200674TARGET_FINALIZE_HOOKS += PURGE_LOCALES
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200675endif
676
Fabio Porceddad4c0c642014-02-20 15:26:18 +0100677$(TARGETS_ROOTFS): target-finalize
678
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200679.PHONY: target-finalize
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200680target-finalize: $(PACKAGES)
Thomas De Schampheleire6f6a2cf2014-05-12 16:19:27 +0200681 @$(call MESSAGE,"Finalizing target directory")
Yann E. MORIN1b8ad2d2017-10-28 17:30:59 +0200682 # Check files that are touched by more than one package
683 ./support/scripts/check-uniq-files -t target $(BUILD_DIR)/packages-file-list.txt
684 ./support/scripts/check-uniq-files -t staging $(BUILD_DIR)/packages-file-list-staging.txt
685 ./support/scripts/check-uniq-files -t host $(BUILD_DIR)/packages-file-list-host.txt
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200686 $(foreach hook,$(TARGET_FINALIZE_HOOKS),$($(hook))$(sep))
Valentine Barshak94d3aa12012-10-02 08:52:15 +0000687 rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/share/aclocal \
Luca Ceresolidf99efb2013-03-06 07:14:26 +0000688 $(TARGET_DIR)/usr/lib/pkgconfig $(TARGET_DIR)/usr/share/pkgconfig \
689 $(TARGET_DIR)/usr/lib/cmake $(TARGET_DIR)/usr/share/cmake
690 find $(TARGET_DIR)/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f
Jérôme Pouiller179c5f12016-11-09 11:57:27 +0100691 find $(TARGET_DIR)/lib/ $(TARGET_DIR)/usr/lib/ $(TARGET_DIR)/usr/libexec/ \
Herve Codina87f3ede2015-09-15 15:27:06 +0200692 \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
Malte Starostike48a72e2010-07-24 21:29:56 +0200693ifneq ($(BR2_PACKAGE_GDB),y)
694 rm -rf $(TARGET_DIR)/usr/share/gdb
695endif
Maxime Hadjinlian76d1c722015-07-12 17:25:57 +0200696ifneq ($(BR2_PACKAGE_BASH),y)
697 rm -rf $(TARGET_DIR)/usr/share/bash-completion
698endif
699ifneq ($(BR2_PACKAGE_ZSH),y)
700 rm -rf $(TARGET_DIR)/usr/share/zsh
701endif
Peter Korsgaard32faf352009-04-07 21:04:31 +0000702 rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/man
Peter Korsgaard32faf352009-04-07 21:04:31 +0000703 rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info
Thomas Petazzoni87b06372010-04-10 22:42:45 +0200704 rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc
Paulius Zaleckasd701a822010-05-05 13:09:36 +0300705 rm -rf $(TARGET_DIR)/usr/share/gtk-doc
Gaël PORTAY5b7013c2016-11-22 15:53:33 -0500706 rmdir $(TARGET_DIR)/usr/share 2>/dev/null || true
Andrew Parlane26f215d2015-03-18 15:10:29 +0000707 $(STRIP_FIND_CMD) | xargs -0 $(STRIPCMD) 2>/dev/null || true
Mike Frysinger8101c9a2010-11-17 18:55:43 -0500708
Richard Braun6ae78862012-11-20 07:18:11 +0000709# See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads
710# besides the one in which crash occurred; or SIGTRAP kills my program when
711# I set a breakpoint"
712ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
Jérôme Pouiller179c5f12016-11-09 11:57:27 +0100713 find $(TARGET_DIR)/lib/ -type f -name 'libpthread*.so*' | \
Thomas Petazzoni52e70732013-08-20 13:03:03 +0200714 xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG)
Richard Braun6ae78862012-11-20 07:18:11 +0000715endif
716
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200717# Valgrind needs ld.so with enough information, so only strip
718# debugging symbols.
Jérôme Pouiller179c5f12016-11-09 11:57:27 +0100719 find $(TARGET_DIR)/lib/ -type f -name 'ld-*.so*' | \
Peter Seiderer1edb4c52015-10-06 21:51:36 +0200720 xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG)
Thomas Petazzoni9c407232016-01-01 22:23:39 +0100721 test -f $(TARGET_DIR)/etc/ld.so.conf && \
722 { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true
723 test -d $(TARGET_DIR)/etc/ld.so.conf.d && \
724 { echo "ERROR: we shouldn't have a /etc/ld.so.conf.d directory"; exit 1; } || true
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200725 mkdir -p $(TARGET_DIR)/etc
Peter Korsgaard451a8872012-02-14 12:58:25 +0100726 ( \
727 echo "NAME=Buildroot"; \
728 echo "VERSION=$(BR2_VERSION_FULL)"; \
729 echo "ID=buildroot"; \
730 echo "VERSION_ID=$(BR2_VERSION)"; \
731 echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \
732 ) > $(TARGET_DIR)/etc/os-release
Peter Korsgaard912ea812009-09-30 17:40:24 +0200733
Wolfgang Grandegger5f4ca512017-07-20 16:35:16 +0200734 @$(call MESSAGE,"Sanitizing RPATH in target tree")
735 $(TOPDIR)/support/scripts/fix-rpath target
736
Luca Ceresolie9b77122013-04-08 06:50:16 +0000737 @$(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \
738 $(call MESSAGE,"Copying overlay $(d)"); \
Peter Seiderer0db34522016-04-23 21:18:29 +0200739 rsync -a --ignore-times --keep-dirlinks $(RSYNC_VCS_EXCLUSIONS) \
Guido Martínez361d3572014-11-21 13:19:01 -0300740 --chmod=u=rwX,go=rX --exclude .empty --exclude '*~' \
Luca Ceresolie9b77122013-04-08 06:50:16 +0000741 $(d)/ $(TARGET_DIR)$(sep))
Arnout Vandecappelle (Essensium/Mind)7f860892013-02-05 07:16:00 +0000742
Philippe Reynesdbf49782012-11-17 13:01:22 +0100743 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \
Luca Ceresoli1b9b1682013-04-08 06:50:14 +0000744 $(call MESSAGE,"Executing post-build script $(s)"); \
Yann E. MORIN9806bf52014-03-10 21:51:33 +0100745 $(EXTRA_ENV) $(s) $(TARGET_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Daniel Mackeed7d872009-07-08 22:46:58 +0200746
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200747.PHONY: target-post-image
Thomas Petazzonifbb3b862014-02-28 21:05:27 +0100748target-post-image: $(TARGETS_ROOTFS) target-finalize
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000749 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_IMAGE_SCRIPT)), \
Luca Ceresoli6d90a692013-04-08 06:50:15 +0000750 $(call MESSAGE,"Executing post-image script $(s)"); \
Yann E. MORIN9806bf52014-03-10 21:51:33 +0100751 $(EXTRA_ENV) $(s) $(BINARIES_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000752
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200753.PHONY: source
Thomas Petazzoni17dcad02015-04-26 11:51:12 +0200754source: $(foreach p,$(PACKAGES),$(p)-all-source)
Eric Andersenffde94b2001-12-22 00:56:11 +0000755
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200756.PHONY: _external-deps external-deps
Thomas Petazzoni7e679cc2015-04-26 11:51:01 +0200757_external-deps: $(foreach p,$(PACKAGES),$(p)-all-external-deps)
Peter Korsgaard155971e2008-03-04 12:19:16 +0000758external-deps:
Thomas Petazzoni7e679cc2015-04-26 11:51:01 +0200759 @$(MAKE1) -Bs $(EXTRAMAKEARGS) _external-deps | sort -u
Peter Korsgaard155971e2008-03-04 12:19:16 +0000760
Thomas Petazzoni7800b962015-04-26 11:51:03 +0200761# check if download URLs are outdated
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200762.PHONY: source-check
Thomas Petazzonif9b92822015-04-26 11:51:06 +0200763source-check: $(foreach p,$(PACKAGES),$(p)-all-source-check)
Thomas Petazzoni7800b962015-04-26 11:51:03 +0200764
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200765.PHONY: legal-info-clean
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200766legal-info-clean:
767 @rm -fr $(LEGAL_INFO_DIR)
768
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200769.PHONY: legal-info-prepare
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200770legal-info-prepare: $(LEGAL_INFO_DIR)
Yann E. MORIN719726a2017-07-05 13:20:43 +0200771 @$(call MESSAGE,"Buildroot $(BR2_VERSION_FULL) Collecting legal info")
772 @$(call legal-license-file,buildroot,buildroot,support/legal-info,COPYING,COPYING,HOST)
Clayton Shotwellaf629e42014-07-21 08:46:31 -0500773 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,TARGET)
774 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,HOST)
Rahul Bedarkard116b432017-03-30 19:13:48 +0530775 @$(call legal-manifest,buildroot,$(BR2_VERSION_FULL),GPL-2.0+,COPYING,not saved,not saved,HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200776 @$(call legal-warning,the Buildroot source code has not been saved)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100777 @cp $(BR2_CONFIG) $(LEGAL_INFO_DIR)/buildroot.config
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200778
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200779.PHONY: legal-info
Thomas Petazzoni5db22b32015-04-12 18:37:50 +0200780legal-info: dirs legal-info-clean legal-info-prepare $(foreach p,$(PACKAGES),$(p)-all-legal-info) \
Thomas De Schampheleire858334c2013-11-12 09:47:59 +0100781 $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200782 @cat support/legal-info/README.header >>$(LEGAL_REPORT)
783 @if [ -r $(LEGAL_WARNINGS) ]; then \
784 cat support/legal-info/README.warnings-header \
785 $(LEGAL_WARNINGS) >>$(LEGAL_REPORT); \
786 cat $(LEGAL_WARNINGS); fi
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200787 @rm -f $(LEGAL_WARNINGS)
Yann E. MORIN7bfce062016-05-07 18:14:36 +0200788 @(cd $(LEGAL_INFO_DIR); \
789 find * -type f -exec sha256sum {} + | LC_ALL=C sort -k2 \
790 >.legal-info.sha256; \
791 mv .legal-info.sha256 legal-info.sha256)
792 @echo "Legal info produced in $(LEGAL_INFO_DIR)"
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200793
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200794.PHONY: show-targets
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200795show-targets:
Yann E. MORIN203219c2017-11-12 18:45:39 +0100796 @echo $(sort $(PACKAGES)) $(sort $(TARGETS_ROOTFS))
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200797
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200798.PHONY: show-build-order
Yann E. MORIN75fcebb2017-04-02 15:03:38 +0200799show-build-order: $(patsubst %,%-show-build-order,$(PACKAGES))
800
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200801.PHONY: graph-build
Yann E. MORINe16bf922013-12-28 18:39:11 +0100802graph-build: $(O)/build/build-time.log
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100803 @install -d $(GRAPHS_DIR)
Yann E. MORINe16bf922013-12-28 18:39:11 +0100804 $(foreach o,name build duration,./support/scripts/graph-build-time \
805 --type=histogram --order=$(o) --input=$(<) \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100806 --output=$(GRAPHS_DIR)/build.hist-$(o).$(BR_GRAPH_OUT) \
Yann E. MORIN8ae78382014-02-23 16:59:11 +0100807 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
Yann E. MORINe16bf922013-12-28 18:39:11 +0100808 $(foreach t,packages steps,./support/scripts/graph-build-time \
809 --type=pie-$(t) --input=$(<) \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100810 --output=$(GRAPHS_DIR)/build.pie-$(t).$(BR_GRAPH_OUT) \
Yann E. MORIN8ae78382014-02-23 16:59:11 +0100811 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
Yann E. MORINe16bf922013-12-28 18:39:11 +0100812
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200813.PHONY: graph-depends-requirements
Fabio Porceddad3c1c642014-06-17 11:33:54 +0200814graph-depends-requirements:
Thomas Petazzoni664f2702014-06-13 14:17:19 +0200815 @dot -? >/dev/null 2>&1 || \
Fabio Porceddad3c1c642014-06-17 11:33:54 +0200816 { echo "ERROR: The 'dot' program from Graphviz is needed for graph-depends" >&2; exit 1; }
817
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200818.PHONY: graph-depends
Fabio Porceddad3c1c642014-06-17 11:33:54 +0200819graph-depends: graph-depends-requirements
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100820 @$(INSTALL) -d $(GRAPHS_DIR)
Yann E. MORIN56eb3942014-01-07 23:46:04 +0100821 @cd "$(CONFIG_DIR)"; \
Yann E. MORIN287a8822014-05-16 23:05:13 +0200822 $(TOPDIR)/support/scripts/graph-depends $(BR2_GRAPH_DEPS_OPTS) \
Yann E. MORIN2a2eb552016-10-23 19:19:44 +0200823 --direct -o $(GRAPHS_DIR)/$(@).dot
Yann E. MORIN5e7020e2016-02-07 22:34:26 +0100824 dot $(BR2_GRAPH_DOT_OPTS) -T$(BR_GRAPH_OUT) \
825 -o $(GRAPHS_DIR)/$(@).$(BR_GRAPH_OUT) \
826 $(GRAPHS_DIR)/$(@).dot
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100827
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200828.PHONY: graph-size
Thomas Petazzoni24c75fb2015-10-17 15:33:44 +0200829graph-size:
830 $(Q)mkdir -p $(GRAPHS_DIR)
831 $(Q)$(TOPDIR)/support/scripts/size-stats --builddir $(BASE_DIR) \
832 --graph $(GRAPHS_DIR)/graph-size.$(BR_GRAPH_OUT) \
833 --file-size-csv $(GRAPHS_DIR)/file-size-stats.csv \
834 --package-size-csv $(GRAPHS_DIR)/package-size-stats.csv
835
Arnout Vandecappelle6ab14ff2017-06-15 00:11:32 +0200836.PHONY: check-dependencies
Yann E. MORIN9dac9862016-02-07 22:34:29 +0100837check-dependencies:
838 @cd "$(CONFIG_DIR)"; \
839 $(TOPDIR)/support/scripts/graph-depends -C
840
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000841else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersen2d523c22004-10-09 01:06:03 +0000842
Arnout Vandecappelle503439f2017-06-30 19:00:33 +0200843# Some subdirectories are also package names. To avoid that "make linux"
844# on an unconfigured tree produces "Nothing to be done", add an explicit
845# rule for it.
Arnout Vandecappellec3493062017-07-01 10:24:46 +0200846# Also for 'all' we error out and ask the user to configure first.
Arnout Vandecappelle503439f2017-06-30 19:00:33 +0200847.PHONY: linux toolchain
Peter Korsgaard51825df2017-07-03 12:24:05 +0200848linux toolchain all: outputmakefile
Arnout Vandecappelle503439f2017-06-30 19:00:33 +0200849 $(error Please configure Buildroot first (e.g. "make menuconfig"))
850 @exit 1
851
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000852endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
853
Eric Andersen2d523c22004-10-09 01:06:03 +0000854# configuration
855# ---------------------------------------------------------------------------
856
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200857HOSTCFLAGS = $(CFLAGS_FOR_BUILD)
Bernhard Reutner-Fischerc0d7d4e2007-07-09 18:23:20 +0000858export HOSTCFLAGS
859
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200860.PHONY: prepare-kconfig
Yann E. MORIN4802db32016-07-17 12:34:26 +0200861prepare-kconfig: outputmakefile $(BUILD_DIR)/.br2-external.in
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200862
Peter Korsgaard2cc210c2010-06-20 23:05:32 +0200863$(BUILD_DIR)/buildroot-config/%onf:
864 mkdir -p $(@D)/lxdialog
Bjørn Forsman0515fe42015-01-03 00:58:47 +0100865 PKG_CONFIG_PATH="$(HOST_PKG_CONFIG_PATH)" $(MAKE) CC="$(HOSTCC_NOCCACHE)" HOSTCC="$(HOSTCC_NOCCACHE)" \
866 obj=$(@D) -C $(CONFIG) -f Makefile.br $(@F)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200867
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000868DEFCONFIG = $(call qstrip,$(BR2_DEFCONFIG))
869
870# We don't want to fully expand BR2_DEFCONFIG here, so Kconfig will
871# recognize that if it's still at its default $(CONFIG_DIR)/defconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200872COMMON_CONFIG_ENV = \
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000873 BR2_DEFCONFIG='$(call qstrip,$(value BR2_DEFCONFIG))' \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200874 KCONFIG_AUTOCONFIG=$(BUILD_DIR)/buildroot-config/auto.conf \
875 KCONFIG_AUTOHEADER=$(BUILD_DIR)/buildroot-config/autoconf.h \
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200876 KCONFIG_TRISTATE=$(BUILD_DIR)/buildroot-config/tristate.config \
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100877 BR2_CONFIG=$(BR2_CONFIG) \
Arnout Vandecappelle12825f72015-12-31 01:34:13 +0100878 HOST_GCC_VERSION="$(HOSTCC_VERSION)" \
Yann E. MORIN4802db32016-07-17 12:34:26 +0200879 BUILD_DIR=$(BUILD_DIR) \
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200880 SKIP_LEGACY=
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200881
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200882xconfig: $(BUILD_DIR)/buildroot-config/qconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100883 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200884
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200885gconfig: $(BUILD_DIR)/buildroot-config/gconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100886 @$(COMMON_CONFIG_ENV) srctree=$(TOPDIR) $< $(CONFIG_CONFIG_IN)
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200887
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200888menuconfig: $(BUILD_DIR)/buildroot-config/mconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100889 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000890
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200891nconfig: $(BUILD_DIR)/buildroot-config/nconf prepare-kconfig
Peter Korsgaard610255e2010-11-24 15:30:54 +0100892 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000893
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200894config: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200895 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000896
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200897# For the config targets that automatically select options, we pass
898# SKIP_LEGACY=y to disable the legacy options. However, in that case
899# no values are set for the legacy options so a subsequent oldconfig
900# will query them. Therefore, run an additional olddefconfig.
901
Arnout Vandecappelledab80982017-07-21 03:05:29 +0200902randconfig allyesconfig alldefconfig allnoconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle26070512017-07-21 03:05:28 +0200903 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --$@ $(CONFIG_CONFIG_IN)
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200904 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Eric Andersen2d523c22004-10-09 01:06:03 +0000905
Arnout Vandecappelle26070512017-07-21 03:05:28 +0200906randpackageconfig allyespackageconfig allnopackageconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100907 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200908 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \
Will Wagner39ca6d52010-01-11 12:28:50 +0000909 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Arnout Vandecappelle26070512017-07-21 03:05:28 +0200910 $< --$(subst package,,$@) $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000911 @rm -f $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200912 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Peter Korsgaard66527702009-10-04 21:57:12 +0200913
Arnout Vandecappelle26070512017-07-21 03:05:28 +0200914oldconfig silentoldconfig olddefconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
915 @$(COMMON_CONFIG_ENV) $< --$@ $(CONFIG_CONFIG_IN)
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000916
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200917defconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000918 @$(COMMON_CONFIG_ENV) $< --defconfig$(if $(DEFCONFIG),=$(DEFCONFIG)) $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000919
Yann E. MORIN666edc72016-07-17 12:34:22 +0200920define percent_defconfig
Arnout Vandecappelle32babbf2015-02-02 16:34:46 +0100921# Override the BR2_DEFCONFIG from COMMON_CONFIG_ENV with the new defconfig
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200922%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(1)/configs/%_defconfig prepare-kconfig
Yann E. MORIN666edc72016-07-17 12:34:22 +0200923 @$$(COMMON_CONFIG_ENV) BR2_DEFCONFIG=$(1)/configs/$$@ \
924 $$< --defconfig=$(1)/configs/$$@ $$(CONFIG_CONFIG_IN)
925endef
Yann E. MORIN339e1c92016-10-14 16:39:22 +0200926$(eval $(foreach d,$(call reverse,$(TOPDIR) $(BR2_EXTERNAL_DIRS)),$(call percent_defconfig,$(d))$(sep)))
Thomas Petazzoni6f381192010-08-11 20:01:23 +0200927
Yann E. MORIN9429e7b2016-07-17 12:34:24 +0200928savedefconfig: $(BUILD_DIR)/buildroot-config/conf prepare-kconfig
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000929 @$(COMMON_CONFIG_ENV) $< \
930 --savedefconfig=$(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig) \
931 $(CONFIG_CONFIG_IN)
Herve Codinaf71a6212015-06-04 10:16:33 +0200932 @$(SED) '/BR2_DEFCONFIG=/d' $(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig)
Eric Andersen2d523c22004-10-09 01:06:03 +0000933
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000934.PHONY: defconfig savedefconfig
Peter Korsgaard406053d2009-11-20 14:05:48 +0100935
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200936################################################################################
Eric Andersen2d523c22004-10-09 01:06:03 +0000937#
938# Cleanup and misc junk
939#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200940################################################################################
Yann E. MORINaefad532010-09-26 10:56:12 +0200941
942# outputmakefile generates a Makefile in the output directory, if using a
943# separate output directory. This allows convenient use of make in the
944# output directory.
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200945.PHONY: outputmakefile
Yann E. MORINaefad532010-09-26 10:56:12 +0200946outputmakefile:
947ifeq ($(NEED_WRAPPER),y)
Thomas Petazzonif082c7c2011-08-31 23:35:02 +0200948 $(Q)$(TOPDIR)/support/scripts/mkmakefile $(TOPDIR) $(O)
Yann E. MORINaefad532010-09-26 10:56:12 +0200949endif
950
Yann E. MORIN4802db32016-07-17 12:34:26 +0200951# Even though the target is a real file, we mark it as PHONY as we
952# want it to be re-generated each time make is invoked, in case the
953# value of BR2_EXTERNAL is changed.
954.PHONY: $(BUILD_DIR)/.br2-external.in
955$(BUILD_DIR)/.br2-external.in: $(BUILD_DIR)
Yann E. MORIN6bd19cc2016-10-14 16:39:15 +0200956 $(Q)support/scripts/br2-external -k -o "$(@)" $(BR2_EXTERNAL)
Yann E. MORIN4802db32016-07-17 12:34:26 +0200957
Yann E. MORIN376fda82015-11-04 22:42:39 +0100958# printvars prints all the variables currently defined in our
959# Makefiles. Alternatively, if a non-empty VARS variable is passed,
960# only the variables matching the make pattern passed in VARS are
961# displayed.
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200962.PHONY: printvars
Émeric Vigier98b616d2013-05-29 00:41:11 +0200963printvars:
Arnout Vandecappellecd036c92017-06-15 00:11:34 +0200964 @:$(foreach V, \
Yann E. MORIN376fda82015-11-04 22:42:39 +0100965 $(sort $(if $(VARS),$(filter $(VARS),$(.VARIABLES)),$(.VARIABLES))), \
Émeric Vigier98b616d2013-05-29 00:41:11 +0200966 $(if $(filter-out environment% default automatic, \
967 $(origin $V)), \
Yann E. MORINba636032017-03-29 11:43:05 +0200968 $(if $(QUOTED_VARS),\
969 $(info $V='$(subst ','\'',$(if $(RAW_VARS),$(value $V),$($V)))'), \
970 $(info $V=$(if $(RAW_VARS),$(value $V),$($V))))))
971# ' Syntax colouring...
Émeric Vigier98b616d2013-05-29 00:41:11 +0200972
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200973.PHONY: clean
Eric Andersen2d523c22004-10-09 01:06:03 +0000974clean:
Thomas De Schampheleire300eb6b2013-09-30 13:09:27 +0200975 rm -rf $(TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) \
Arnout Vandecappellee0c60672014-03-17 09:22:33 +0100976 $(BUILD_DIR) $(BASE_DIR)/staging \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100977 $(LEGAL_INFO_DIR) $(GRAPHS_DIR)
Eric Andersen2d523c22004-10-09 01:06:03 +0000978
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200979.PHONY: distclean
Eric Andersen2d523c22004-10-09 01:06:03 +0000980distclean: clean
Danomi Manchego171d4102016-11-22 21:23:02 -0500981ifeq ($(O),$(CURDIR)/output)
Peter Korsgaard406053d2009-11-20 14:05:48 +0100982 rm -rf $(O)
983endif
Yann E. MORINe76b4fd2016-09-11 15:55:46 +0200984 rm -rf $(TOPDIR)/dl $(BR2_CONFIG) $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/..config.tmp \
Yann E. MORINf8c0e452015-10-22 22:34:00 +0200985 $(CONFIG_DIR)/.auto.deps $(BR2_EXTERNAL_FILE)
Eric Andersen2d523c22004-10-09 01:06:03 +0000986
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +0200987.PHONY: help
Yann E. MORINa49b81e2016-04-16 23:20:17 +0200988help:
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000989 @echo 'Cleaning:'
Peter Korsgaard406053d2009-11-20 14:05:48 +0100990 @echo ' clean - delete all files created by build'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000991 @echo ' distclean - delete all non-source files (including .config)'
992 @echo
993 @echo 'Build:'
994 @echo ' all - make world'
Fabio Porcedda2a786412013-01-14 22:02:00 +0000995 @echo ' toolchain - build toolchain'
Wolfgang Grandegger994301a2017-07-22 13:15:40 +0200996 @echo ' sdk - build relocatable SDK'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000997 @echo
998 @echo 'Configuration:'
999 @echo ' menuconfig - interactive curses-based configurator'
Peter Korsgaard15f5bef2011-02-01 08:41:01 +01001000 @echo ' nconfig - interactive ncurses-based configurator'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +02001001 @echo ' xconfig - interactive Qt-based configurator'
Peter Korsgaard2b42aae2010-06-05 21:09:05 +02001002 @echo ' gconfig - interactive GTK-based configurator'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001003 @echo ' oldconfig - resolve any unresolved symbols in .config'
Thomas Petazzoni9db3b472013-04-04 11:24:25 +00001004 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
1005 @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +02001006 @echo ' randconfig - New config with random answer to all options'
1007 @echo ' defconfig - New config with default answer to all options'
Arnout Vandecappelle33f454b2012-04-28 07:14:50 +00001008 @echo ' BR2_DEFCONFIG, if set, is used as input'
Frank Hunleth5c1a75c2015-02-11 08:14:49 -05001009 @echo ' savedefconfig - Save current config to BR2_DEFCONFIG (minimal config)'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +02001010 @echo ' allyesconfig - New config where all options are accepted with yes'
1011 @echo ' allnoconfig - New config where all options are answered with no'
Arnout Vandecappelledab80982017-07-21 03:05:29 +02001012 @echo ' alldefconfig - New config where all options are set to default'
Peter Korsgaard66527702009-10-04 21:57:12 +02001013 @echo ' randpackageconfig - New config with random answer to package options'
1014 @echo ' allyespackageconfig - New config where pkg options are accepted with yes'
1015 @echo ' allnopackageconfig - New config where package options are answered with no'
Arnout Vandecappelleb1e0b6d2015-03-21 20:49:47 +01001016 @echo
1017 @echo 'Package-specific:'
1018 @echo ' <pkg> - Build and install <pkg> and all its dependencies'
1019 @echo ' <pkg>-source - Only download the source files for <pkg>'
1020 @echo ' <pkg>-extract - Extract <pkg> sources'
1021 @echo ' <pkg>-patch - Apply patches to <pkg>'
1022 @echo ' <pkg>-depends - Build <pkg>'\''s dependencies'
1023 @echo ' <pkg>-configure - Build <pkg> up to the configure step'
1024 @echo ' <pkg>-build - Build <pkg> up to the build step'
Yann E. MORIN56cf5612016-10-23 17:28:51 +02001025 @echo ' <pkg>-show-depends - List packages on which <pkg> depends'
1026 @echo ' <pkg>-show-rdepends - List packages which have <pkg> as a dependency'
Arnout Vandecappelleb1e0b6d2015-03-21 20:49:47 +01001027 @echo ' <pkg>-graph-depends - Generate a graph of <pkg>'\''s dependencies'
Yann E. MORIN2a2eb552016-10-23 19:19:44 +02001028 @echo ' <pkg>-graph-rdepends - Generate a graph of <pkg>'\''s reverse dependencies'
Arnout Vandecappelleb1e0b6d2015-03-21 20:49:47 +01001029 @echo ' <pkg>-dirclean - Remove <pkg> build directory'
1030 @echo ' <pkg>-reconfigure - Restart the build from the configure step'
1031 @echo ' <pkg>-rebuild - Restart the build from the build step'
Yann E. MORIN66a5fc72016-06-04 18:30:48 +02001032 $(foreach p,$(HELP_PACKAGES), \
1033 @echo $(sep) \
1034 @echo '$($(p)_NAME):' $(sep) \
1035 $($(p)_HELP_CMDS)$(sep))
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001036 @echo
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001037 @echo 'Documentation:'
Thomas De Schampheleire55ecab12013-09-19 12:47:14 +02001038 @echo ' manual - build manual in all formats'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001039 @echo ' manual-html - build manual in HTML'
1040 @echo ' manual-split-html - build manual in split HTML'
1041 @echo ' manual-pdf - build manual in PDF'
Thomas De Schampheleire462e9912013-10-18 22:31:26 +02001042 @echo ' manual-text - build manual in text'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001043 @echo ' manual-epub - build manual in ePub'
Yann E. MORINe16bf922013-12-28 18:39:11 +01001044 @echo ' graph-build - generate graphs of the build times'
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +01001045 @echo ' graph-depends - generate graph of the dependency tree'
Thomas Petazzoni24c75fb2015-10-17 15:33:44 +02001046 @echo ' graph-size - generate stats of the filesystem size'
Yann E. MORINde6377e2015-04-23 23:04:06 +02001047 @echo ' list-defconfigs - list all defconfigs (pre-configured minimal systems)'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001048 @echo
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001049 @echo 'Miscellaneous:'
1050 @echo ' source - download all sources needed for offline-build'
Thomas De Schampheleire07bae752012-06-21 19:38:42 +00001051 @echo ' source-check - check selected packages for valid download URLs'
Peter Korsgaard155971e2008-03-04 12:19:16 +00001052 @echo ' external-deps - list external packages used'
Luca Ceresoli7e76f902012-05-17 19:33:00 +02001053 @echo ' legal-info - generate info about license compliance'
Yann E. MORINba636032017-03-29 11:43:05 +02001054 @echo ' printvars - dump all the internal variables'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +00001055 @echo
Peter Korsgaard15f5bef2011-02-01 08:41:01 +01001056 @echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build'
1057 @echo ' make O=dir - Locate all output files in "dir", including .config'
1058 @echo
Arnout Vandecappellef42a5802015-03-21 20:49:46 +01001059 @echo 'For further details, see README, generate the Buildroot manual, or consult'
1060 @echo 'it on-line at http://buildroot.org/docs.html'
1061 @echo
1062
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001063# List the defconfig files
1064# $(1): base directory
1065# $(2): br2-external name, empty for bundled
1066define list-defconfigs
1067 @first=true; \
1068 for defconfig in $(1)/configs/*_defconfig; do \
1069 [ -f "$${defconfig}" ] || continue; \
1070 if $${first}; then \
1071 if [ "$(2)" ]; then \
Yann E. MORIN49117c12016-10-14 16:39:23 +02001072 printf 'External configs in "$(call qstrip,$(2))":\n'; \
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001073 else \
1074 printf "Built-in configs:\n"; \
1075 fi; \
1076 first=false; \
1077 fi; \
1078 defconfig="$${defconfig##*/}"; \
1079 printf " %-35s - Build for %s\n" "$${defconfig}" "$${defconfig%_defconfig}"; \
1080 done; \
1081 $${first} || printf "\n"
1082endef
1083
1084# We iterate over BR2_EXTERNAL_NAMES rather than BR2_EXTERNAL_DIRS,
1085# because we want to display the name of the br2-external tree.
Arnout Vandecappelle5f94c972017-06-15 00:11:31 +02001086.PHONY: list-defconfigs
Arnout Vandecappellef42a5802015-03-21 20:49:46 +01001087list-defconfigs:
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001088 $(call list-defconfigs,$(TOPDIR))
1089 $(foreach name,$(BR2_EXTERNAL_NAMES),\
Yann E. MORIN49117c12016-10-14 16:39:23 +02001090 $(call list-defconfigs,$(BR2_EXTERNAL_$(name)_PATH),\
1091 $(BR2_EXTERNAL_$(name)_DESC))$(sep))
Bernhard Reutner-Fischerba2e7e02007-06-25 10:56:13 +00001092
Fabio Porceddac3e49d62014-04-23 10:39:23 +02001093release: OUT = buildroot-$(BR2_VERSION)
Peter Korsgaard0dca7062010-11-04 00:00:00 +01001094
Peter Korsgaard134ab1c2012-02-03 22:03:29 +01001095# Create release tarballs. We need to fiddle a bit to add the generated
1096# documentation to the git output
Peter Korsgaard0dca7062010-11-04 00:00:00 +01001097release:
Peter Korsgaardc6715b62013-09-17 13:42:07 +02001098 git archive --format=tar --prefix=$(OUT)/ HEAD > $(OUT).tar
Thomas De Schampheleire462e9912013-10-18 22:31:26 +02001099 $(MAKE) O=$(OUT) manual-html manual-text manual-pdf
Thomas De Schampheleire15cb9872015-07-17 12:20:35 +02001100 $(MAKE) O=$(OUT) manual-clean
Peter Korsgaard134ab1c2012-02-03 22:03:29 +01001101 tar rf $(OUT).tar $(OUT)
1102 gzip -9 -c < $(OUT).tar > $(OUT).tar.gz
1103 bzip2 -9 -c < $(OUT).tar > $(OUT).tar.bz2
1104 rm -rf $(OUT) $(OUT).tar
Peter Korsgaarde62d2ec2009-01-15 19:36:06 +00001105
Arnout Vandecappelle (Essensium/Mind)2b91ab72012-03-11 12:16:39 +01001106print-version:
1107 @echo $(BR2_VERSION_FULL)
1108
Thomas Petazzonib287ea62017-07-02 18:13:22 +02001109.PHONY: .gitlab-ci.yml
1110.gitlab-ci.yml: .gitlab-ci.yml.in
1111 cp $< $@
1112 (cd configs; LC_ALL=C ls -1 *_defconfig) | sed 's/$$/: *defconfig/' >> $@
1113 ./support/testing/run-tests -l 2>&1 | sed -r -e '/^test_run \((.*)\).*/!d; s//\1: *runtime_test/' | LC_ALL=C sort >> $@
Arnout Vandecappelle4f863d72017-02-14 00:23:03 +01001114
Thomas Petazzonib7285d02012-04-17 16:45:22 +02001115include docs/manual/manual.mk
Yann E. MORIN20cd4972016-10-14 16:39:20 +02001116-include $(foreach dir,$(BR2_EXTERNAL_DIRS),$(dir)/docs/*/*.mk)
Thomas Petazzoni8792cf92011-10-10 10:46:40 +02001117
Peter Korsgaard66527702009-10-04 21:57:12 +02001118.PHONY: $(noconfig_targets)
Guido Martínezbee57452014-11-21 13:19:00 -03001119
Samuel Martin173135d2016-10-17 23:05:43 +02001120endif #umask / $(CURDIR) / $(O)