blob: 26430de8afa20e66513e1758350f49795f1d738b [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>
Thomas De Schampheleire2f787672014-02-12 17:54:57 +01005# Copyright (C) 2014 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
Guido Martínezbee57452014-11-21 13:19:00 -030027# Trick for always running with a fixed umask
Guido Martínez1e9f6042015-07-17 00:33:07 +020028UMASK = 0022
Guido Martínezbee57452014-11-21 13:19:00 -030029ifneq ($(shell umask),$(UMASK))
Guido Martínez1e9f6042015-07-17 00:33:07 +020030.PHONY: _all $(MAKECMDGOALS)
Guido Martínezbee57452014-11-21 13:19:00 -030031
Guido Martínez1e9f6042015-07-17 00:33:07 +020032$(MAKECMDGOALS): _all
33 @:
Guido Martínezbee57452014-11-21 13:19:00 -030034
Guido Martínez1e9f6042015-07-17 00:33:07 +020035_all:
36 @umask $(UMASK) && $(MAKE) --no-print-directory $(MAKECMDGOALS)
Guido Martínezbee57452014-11-21 13:19:00 -030037
38else # umask
39
Yann E. MORIN5309e2e2014-10-11 19:34:42 +020040# This is our default rule, so must come first
41all:
42
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010043# Set and export the version string
Peter Korsgaard2318c292015-12-01 22:05:46 +010044export BR2_VERSION := 2016.02-git
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010045
Gustavo Zacarias2ac7da02015-07-14 18:30:39 -030046# Save running make version since it's clobbered by the make package
47RUNNING_MAKE_VERSION := $(MAKE_VERSION)
48
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +010049# Check for minimal make version (note: this check will break at make 10.x)
Fabio Porceddac3e49d62014-04-23 10:39:23 +020050MIN_MAKE_VERSION = 3.81
Gustavo Zacarias2ac7da02015-07-14 18:30:39 -030051ifneq ($(firstword $(sort $(RUNNING_MAKE_VERSION) $(MIN_MAKE_VERSION))),$(MIN_MAKE_VERSION))
52$(error You have make '$(RUNNING_MAKE_VERSION)' installed. GNU make >= $(MIN_MAKE_VERSION) is required)
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +010053endif
54
Francois Perrad1d4104f2012-07-18 15:59:09 +020055export HOSTARCH := $(shell uname -m | \
56 sed -e s/i.86/x86/ \
57 -e s/sun4u/sparc64/ \
58 -e s/arm.*/arm/ \
59 -e s/sa110/arm/ \
Cody P Schafer7e674df2014-05-12 22:28:21 -070060 -e s/ppc64/powerpc64/ \
Francois Perrad1d4104f2012-07-18 15:59:09 +020061 -e s/ppc/powerpc/ \
62 -e s/macppc/powerpc/\
63 -e s/sh.*/sh/)
64
Fabio Porcedda2afb23a2014-02-14 10:55:08 +010065# Parallel execution of this Makefile is disabled because it changes
66# the packages building order, that can be a problem for two reasons:
67# - If a package has an unspecified optional dependency and that
68# dependency is present when the package is built, it is used,
69# otherwise it isn't (but compilation happily proceeds) so the end
70# result will differ if the order is swapped due to parallel
71# building.
72# - Also changing the building order can be a problem if two packages
73# manipulate the same file in the target directory.
74#
75# Taking into account the above considerations, if you still want to execute
76# this top-level Makefile in parallel comment the ".NOTPARALLEL" line and
Fabio Porcedda1668e1d2015-07-01 10:10:46 +020077# use the -j<jobs> option when building, e.g:
78# make -j$((`getconf _NPROCESSORS_ONLN`+1))
Yann E. MORIN2d239bb2010-10-31 17:35:09 +010079.NOTPARALLEL:
80
Peter Korsgaard6b1dd452009-11-30 17:29:01 +010081# absolute path
Fabio Porceddac3e49d62014-04-23 10:39:23 +020082TOPDIR := $(shell pwd)
83CONFIG_CONFIG_IN = Config.in
84CONFIG = support/kconfig
85DATE := $(shell date +%Y%m%d)
Eric Andersen2d523c22004-10-09 01:06:03 +000086
Yann E. MORIN8258df22010-10-31 17:35:12 +010087# Compute the full local version string so packages can use it as-is
88# Need to export it, so it can be got from environment in children (eg. mconf)
Fabio Porceddac3e49d62014-04-23 10:39:23 +020089export BR2_VERSION_FULL := $(BR2_VERSION)$(shell $(TOPDIR)/support/scripts/setlocalversion)
Yann E. MORIN8258df22010-10-31 17:35:12 +010090
Fabio Porceddac3e49d62014-04-23 10:39:23 +020091noconfig_targets := menuconfig nconfig gconfig xconfig config oldconfig randconfig \
Yann E. MORIN063f4ee2013-12-27 00:04:29 +010092 defconfig %_defconfig allyesconfig allnoconfig silentoldconfig release \
Peter Korsgaard66527702009-10-04 21:57:12 +020093 randpackageconfig allyespackageconfig allnopackageconfig \
Thomas Petazzoni7800b962015-04-26 11:51:03 +020094 print-version olddefconfig
Bernhard Reutner-Fischer9e250352006-12-02 19:01:10 +000095
Thomas Petazzoni256f1422015-04-26 11:51:14 +020096# Some global targets do not trigger a build, but are used to collect
97# metadata, or do various checks. When such targets are triggered,
98# some packages should not do their configuration sanity
99# checks. Provide them a BR_BUILDING variable set to 'y' when we're
100# actually building and they should do their sanity checks.
101#
102# We're building in two situations: when MAKECMDGOALS is empty
103# (default target is to build), or when MAKECMDGOALS contains
104# something else than one of the nobuild_targets.
Thomas Petazzoni4feeb2d2015-04-26 11:51:16 +0200105nobuild_targets := source source-check \
106 legal-info external-deps _external-deps \
107 clean distclean
Thomas Petazzoni256f1422015-04-26 11:51:14 +0200108ifeq ($(MAKECMDGOALS),)
109BR_BUILDING = y
110else ifneq ($(filter-out $(nobuild_targets),$(MAKECMDGOALS)),)
111BR_BUILDING = y
112endif
113
Thomas Petazzoni580c6d92009-07-30 17:26:49 +0200114# Strip quotes and then whitespaces
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200115qstrip = $(strip $(subst ",,$(1)))
Thomas Petazzoni580c6d92009-07-30 17:26:49 +0200116#"))
117
Peter Korsgaardf85f2de2009-01-25 20:19:01 +0000118# Variables for use in Make constructs
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200119comma := ,
120empty :=
121space := $(empty) $(empty)
Peter Korsgaardf85f2de2009-01-25 20:19:01 +0000122
Will Wagner39ca6d52010-01-11 12:28:50 +0000123ifneq ("$(origin O)", "command line")
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200124O := output
125CONFIG_DIR := $(TOPDIR)
126NEED_WRAPPER =
Will Wagner39ca6d52010-01-11 12:28:50 +0000127else
128# other packages might also support Linux-style out of tree builds
Simon Dawson0be303c2014-05-31 08:55:35 +0100129# with the O=<dir> syntax (E.G. BusyBox does). As make automatically
Will Wagner39ca6d52010-01-11 12:28:50 +0000130# forwards command line variable definitions those packages get very
131# confused. Fix this by telling make to not do so
132MAKEOVERRIDES =
133# strangely enough O is still passed to submakes with MAKEOVERRIDES
134# (with make 3.81 atleast), the only thing that changes is the output
135# of the origin function (command line -> environment).
136# Unfortunately some packages don't look at origin (E.G. uClibc 0.9.31+)
137# To really make O go away, we have to override it.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200138override O := $(O)
139CONFIG_DIR := $(O)
Peter Korsgaardde846f62010-08-29 23:24:07 +0200140# we need to pass O= everywhere we call back into the toplevel makefile
141EXTRAMAKEARGS = O=$(O)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200142NEED_WRAPPER = y
Will Wagner39ca6d52010-01-11 12:28:50 +0000143endif
144
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200145# bash prints the name of the directory on 'cd <dir>' if CDPATH is
146# set, so unset it here to not cause problems. Notice that the export
147# line doesn't affect the environment of $(shell ..) calls, so
148# explictly throw away any output from 'cd' here.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200149export CDPATH :=
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200150BASE_DIR := $(shell mkdir -p $(O) && cd $(O) >/dev/null && pwd)
151$(if $(BASE_DIR),, $(error output directory "$(O)" does not exist))
152
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100153
154# Handling of BR2_EXTERNAL.
155#
156# The value of BR2_EXTERNAL is stored in .br-external in the output directory.
157# On subsequent invocations of make, it is read in. It can still be overridden
158# on the command line, therefore the file is re-created every time make is run.
159#
Baruch Siachf6e77102014-12-25 07:36:28 +0200160# When BR2_EXTERNAL is set to an empty value (e.g. explicitly in command
161# line), the .br-external file is removed and we point to
162# support/dummy-external. This makes sure we can unconditionally include the
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100163# Config.in and external.mk from the BR2_EXTERNAL directory. In this case,
164# override is necessary so the user can clear BR2_EXTERNAL from the command
165# line, but the dummy path is still used internally.
166
167BR2_EXTERNAL_FILE = $(BASE_DIR)/.br-external
168-include $(BR2_EXTERNAL_FILE)
169ifeq ($(BR2_EXTERNAL),)
170 override BR2_EXTERNAL = support/dummy-external
171 $(shell rm -f $(BR2_EXTERNAL_FILE))
172else
Yann E. MORIN5f5e5f22014-02-21 23:17:52 +0100173 _BR2_EXTERNAL = $(shell cd $(BR2_EXTERNAL) >/dev/null 2>&1 && pwd)
174 ifeq ($(_BR2_EXTERNAL),)
175 $(error BR2_EXTERNAL='$(BR2_EXTERNAL)' does not exist, relative to $(TOPDIR))
176 endif
177 override BR2_EXTERNAL := $(_BR2_EXTERNAL)
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100178 $(shell echo BR2_EXTERNAL ?= $(BR2_EXTERNAL) > $(BR2_EXTERNAL_FILE))
179endif
180
Masahiro Yamada5b686a02015-04-08 09:53:36 +0900181# To make sure that the environment variable overrides the .config option,
Arnout Vandecappelle67680212014-02-04 16:18:51 +0100182# set this before including .config.
183ifneq ($(BR2_DL_DIR),)
184DL_DIR := $(BR2_DL_DIR)
185endif
Gustavo Zacarias3901cb52015-10-15 10:24:39 -0300186ifneq ($(BR2_CCACHE_DIR),)
187BR_CACHE_DIR := $(BR2_CCACHE_DIR)
188endif
Arnout Vandecappelle67680212014-02-04 16:18:51 +0100189
Yann E. MORINf1fedbb2013-12-28 18:39:13 +0100190# Need that early, before we scan packages
191# Avoids doing the $(or...) everytime
Yann E. MORIN22d05902014-04-13 22:42:37 +0200192BR_GRAPH_OUT := $(or $(BR2_GRAPH_OUT),pdf)
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100193
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200194BUILD_DIR := $(BASE_DIR)/build
195BINARIES_DIR := $(BASE_DIR)/images
196TARGET_DIR := $(BASE_DIR)/target
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200197# initial definition so that 'make clean' works for most users, even without
198# .config. HOST_DIR will be overwritten later when .config is included.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200199HOST_DIR := $(BASE_DIR)/host
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100200GRAPHS_DIR := $(BASE_DIR)/graphs
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200201
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200202LEGAL_INFO_DIR = $(BASE_DIR)/legal-info
203REDIST_SOURCES_DIR_TARGET = $(LEGAL_INFO_DIR)/sources
204REDIST_SOURCES_DIR_HOST = $(LEGAL_INFO_DIR)/host-sources
205LICENSE_FILES_DIR_TARGET = $(LEGAL_INFO_DIR)/licenses
206LICENSE_FILES_DIR_HOST = $(LEGAL_INFO_DIR)/host-licenses
207LEGAL_MANIFEST_CSV_TARGET = $(LEGAL_INFO_DIR)/manifest.csv
208LEGAL_MANIFEST_CSV_HOST = $(LEGAL_INFO_DIR)/host-manifest.csv
209LEGAL_LICENSES_TXT_TARGET = $(LEGAL_INFO_DIR)/licenses.txt
210LEGAL_LICENSES_TXT_HOST = $(LEGAL_INFO_DIR)/host-licenses.txt
211LEGAL_WARNINGS = $(LEGAL_INFO_DIR)/.warnings
212LEGAL_REPORT = $(LEGAL_INFO_DIR)/README
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200213
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200214BR2_CONFIG = $(CONFIG_DIR)/.config
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000215
Ulf Samuelssona1b06512008-03-28 07:31:28 +0000216# Pull in the user's configuration file
217ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100218-include $(BR2_CONFIG)
Ulf Samuelsson7521f372007-09-12 04:34:16 +0000219endif
Eric Andersen2d523c22004-10-09 01:06:03 +0000220
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000221# To put more focus on warnings, be less verbose as default
222# Use 'make V=1' to see the full commands
Masahiro Yamada6bf9e232015-04-07 14:09:09 +0900223ifeq ("$(origin V)", "command line")
224 KBUILD_VERBOSE = $(V)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000225endif
226ifndef KBUILD_VERBOSE
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200227 KBUILD_VERBOSE = 0
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000228endif
229
230ifeq ($(KBUILD_VERBOSE),1)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200231 Q =
Bernhard Reutner-Fischer1669b6e2007-09-22 14:19:22 +0000232ifndef VERBOSE
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200233 VERBOSE = 1
Bernhard Reutner-Fischer1669b6e2007-09-22 14:19:22 +0000234endif
Cédric Marie30702982015-06-23 23:36:06 +0200235export VERBOSE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000236else
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200237 Q = @
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000238endif
239
Peter Korsgaard69f85922009-01-01 21:20:35 +0000240# we want bash as shell
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200241SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
242 else if [ -x /bin/bash ]; then echo /bin/bash; \
243 else echo sh; fi; fi)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000244
Peter Korsgaard69f85922009-01-01 21:20:35 +0000245# kconfig uses CONFIG_SHELL
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200246CONFIG_SHELL := $(SHELL)
Peter Korsgaard69f85922009-01-01 21:20:35 +0000247
Cédric Marie474d39a2015-10-08 22:03:37 +0200248export SHELL CONFIG_SHELL Q KBUILD_VERBOSE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000249
250ifndef HOSTAR
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200251HOSTAR := ar
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000252endif
253ifndef HOSTAS
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200254HOSTAS := as
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000255endif
256ifndef HOSTCC
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200257HOSTCC := gcc
258HOSTCC := $(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000259endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200260HOSTCC_NOCCACHE := $(HOSTCC)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000261ifndef HOSTCXX
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200262HOSTCXX := g++
263HOSTCXX := $(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000264endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200265HOSTCXX_NOCCACHE := $(HOSTCXX)
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000266ifndef HOSTCPP
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200267HOSTCPP := cpp
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000268endif
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000269ifndef HOSTLD
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200270HOSTLD := ld
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000271endif
Ulf Samuelsson0f9c5b12007-07-15 21:54:11 +0000272ifndef HOSTLN
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200273HOSTLN := ln
Ulf Samuelsson0f9c5b12007-07-15 21:54:11 +0000274endif
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000275ifndef HOSTNM
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200276HOSTNM := nm
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000277endif
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100278ifndef HOSTOBJCOPY
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200279HOSTOBJCOPY := objcopy
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100280endif
281ifndef HOSTRANLIB
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200282HOSTRANLIB := ranlib
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100283endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200284HOSTAR := $(shell which $(HOSTAR) || type -p $(HOSTAR) || echo ar)
285HOSTAS := $(shell which $(HOSTAS) || type -p $(HOSTAS) || echo as)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200286HOSTCPP := $(shell which $(HOSTCPP) || type -p $(HOSTCPP) || echo cpp)
287HOSTLD := $(shell which $(HOSTLD) || type -p $(HOSTLD) || echo ld)
288HOSTLN := $(shell which $(HOSTLN) || type -p $(HOSTLN) || echo ln)
289HOSTNM := $(shell which $(HOSTNM) || type -p $(HOSTNM) || echo nm)
290HOSTOBJCOPY := $(shell which $(HOSTOBJCOPY) || type -p $(HOSTOBJCOPY) || echo objcopy)
291HOSTRANLIB := $(shell which $(HOSTRANLIB) || type -p $(HOSTRANLIB) || echo ranlib)
Ulf Samuelsson54e93322008-07-06 07:34:41 +0000292
Masahiro Yamadaa9847d12015-04-09 20:28:55 +0900293export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTLD
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100294export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000295
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000296# Make sure pkg-config doesn't look outside the buildroot tree
Bjørn Forsman0515fe42015-01-03 00:58:47 +0100297HOST_PKG_CONFIG_PATH := $(PKG_CONFIG_PATH)
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000298unexport PKG_CONFIG_PATH
Charles Manning4f607ed2012-12-02 11:13:04 +0000299unexport PKG_CONFIG_SYSROOT_DIR
Peter Korsgaardbdf472d2013-09-11 14:15:15 +0200300unexport PKG_CONFIG_LIBDIR
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000301
Thomas Petazzoni91123a62012-07-02 04:21:14 +0000302# Having DESTDIR set in the environment confuses the installation
303# steps of some packages.
304unexport DESTDIR
305
Gustavo Zacariasbed61a72013-07-11 11:37:33 -0300306# Causes breakage with packages that needs host-ruby
307unexport RUBYOPT
308
Thomas De Schampheleire3ed0ead2014-08-15 15:40:34 +0200309include package/pkg-utils.mk
Yann E. MORINab6a6212014-10-03 19:01:52 +0200310include package/doc-asciidoc.mk
Thomas De Schampheleire3ed0ead2014-08-15 15:40:34 +0200311
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000312ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersenffde94b2001-12-22 00:56:11 +0000313
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200314################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000315#
316# Hide troublesome environment variables from sub processes
317#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200318################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000319unexport CROSS_COMPILE
320unexport ARCH
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100321unexport CC
322unexport CXX
323unexport CPP
324unexport CFLAGS
325unexport CXXFLAGS
326unexport GREP_OPTIONS
Nixf5437a62014-01-26 22:58:02 +0000327unexport TAR_OPTIONS
Peter Korsgaard12c9f7d2011-12-12 10:25:50 +0100328unexport CONFIG_SITE
Stephan Hoffmann32314b42012-08-17 13:54:16 +0200329unexport QMAKESPEC
Nathan Lynch20ca0082012-07-10 07:37:22 +0000330unexport TERMINFO
Risto Avila6d3b9752014-09-24 04:37:13 +0000331unexport MACHINE
Guido Martínez2e323302015-07-25 16:07:39 -0300332unexport O
Bernhard Reutner-Fischer7dcbbfb2007-06-02 09:05:40 +0000333
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200334GNU_HOST_NAME := $(shell support/gnuconfig/config.guess)
Thomas Petazzoni60281cb2010-04-10 23:17:25 +0200335
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200336PACKAGES :=
Yann E. MORIN0ea851c2015-10-22 22:33:56 +0200337PACKAGES_ALL :=
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000338
Peter Korsgaard89464a92009-09-30 17:39:44 +0200339# silent mode requested?
Fabio Porceddafffb68a2015-01-01 21:03:50 +0100340QUIET := $(if $(findstring s,$(filter-out --%,$(MAKEFLAGS))),-q)
Peter Korsgaard89464a92009-09-30 17:39:44 +0200341
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200342# Strip off the annoying quoting
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200343ARCH := $(call qstrip,$(BR2_ARCH))
Thomas Petazzoni65e80a02010-04-28 23:40:57 +0200344
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200345KERNEL_ARCH := $(shell echo "$(ARCH)" | sed -e "s/-.*//" \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200346 -e s/i.86/i386/ -e s/sun4u/sparc64/ \
Maxime Ripardf59aeca2013-05-06 00:14:55 +0000347 -e s/arcle/arc/ \
Peter Korsgaard8332ffa2013-06-10 14:04:03 +0200348 -e s/arceb/arc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200349 -e s/arm.*/arm/ -e s/sa110/arm/ \
Bamvor Jian Zhang827ba462015-03-18 17:49:48 +0800350 -e s/aarch64.*/arm64/ \
Mike Frysinger871db072011-02-07 00:49:11 -0500351 -e s/bfin/blackfin/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200352 -e s/parisc64/parisc/ \
Jeff Baileya426a912014-05-24 23:59:22 -0700353 -e s/powerpc64.*/powerpc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200354 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
Jan Drazilc2205812014-03-19 13:01:05 +0100355 -e s/sh.*/sh/ \
356 -e s/microblazeel/microblaze/)
Peter Korsgaard891973f2010-10-17 23:32:37 +0200357
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200358ZCAT := $(call qstrip,$(BR2_ZCAT))
359BZCAT := $(call qstrip,$(BR2_BZCAT))
360XZCAT := $(call qstrip,$(BR2_XZCAT))
361TAR_OPTIONS = $(call qstrip,$(BR2_TAR_OPTIONS)) -xf
Bernhard Reutner-Fischer1dbe6e32007-08-21 17:56:47 +0000362
Gustavo Zacariasa2b4f7f2011-02-02 10:05:56 -0300363# packages compiled for the host go here
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200364HOST_DIR := $(call qstrip,$(BR2_HOST_DIR))
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200365
Samuel Martincaa329b2014-04-15 00:31:04 +0200366# Quotes are needed for spaces and all in the original PATH content.
Samuel Martinc7d660b2014-04-15 00:31:05 +0200367BR_PATH = "$(HOST_DIR)/bin:$(HOST_DIR)/sbin:$(HOST_DIR)/usr/bin:$(HOST_DIR)/usr/sbin:$(PATH)"
Samuel Martincaa329b2014-04-15 00:31:04 +0200368
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000369# Location of a file giving a big fat warning that output/target
370# should not be used as the root filesystem.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200371TARGET_DIR_WARNING_FILE = $(TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000372
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100373ifeq ($(BR2_CCACHE),y)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200374CCACHE := $(HOST_DIR)/usr/bin/ccache
Gustavo Zacarias3901cb52015-10-15 10:24:39 -0300375BR_CACHE_DIR ?= $(call qstrip,$(BR2_CCACHE_DIR))
Arnout Vandecappellee7ab4b42014-02-04 16:18:50 +0100376export BR_CACHE_DIR
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200377HOSTCC := $(CCACHE) $(HOSTCC)
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100378HOSTCXX := $(CCACHE) $(HOSTCXX)
Arnout Vandecappelle792f1272015-10-04 13:28:56 +0100379else
380export BR_NO_CCACHE
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100381endif
382
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000383# Scripts in support/ or post-build scripts may need to reference
384# these locations, so export them so it is easier to use
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100385export BR2_CONFIG
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000386export TARGET_DIR
387export STAGING_DIR
388export HOST_DIR
389export BINARIES_DIR
Peter Korsgaard1300cb52013-01-14 10:02:29 +0100390export BASE_DIR
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000391
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200392################################################################################
Eric Andersen08782ae2002-04-26 11:45:55 +0000393#
Eric Andersenef407d32004-01-29 23:21:00 +0000394# You should probably leave this stuff alone unless you know
Eric Andersen08782ae2002-04-26 11:45:55 +0000395# what you are doing.
396#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200397################################################################################
Manuel Novoa III d632d422003-11-01 05:34:41 +0000398
Bernhard Reutner-Fischer6547bce2007-08-22 12:35:41 +0000399all: world
Eric Andersenffde94b2001-12-22 00:56:11 +0000400
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000401# Include legacy before the other things, because package .mk files
402# may rely on it.
403ifneq ($(BR2_DEPRECATED),y)
404include Makefile.legacy
405endif
406
Thomas Petazzoni486253d2012-04-17 16:45:23 +0200407include package/Makefile.in
Thomas De Schampheleirea7926682012-02-08 17:22:16 +0100408include support/dependencies/dependencies.mk
409
Yann E. MORIN11c10762014-07-27 21:28:32 +0200410include toolchain/*.mk
Thomas Petazzoni8b0905b2013-10-08 20:17:01 +0200411include toolchain/*/*.mk
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000412
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200413# Include the package override file if one has been provided in the
414# configuration.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200415PACKAGE_OVERRIDE_FILE = $(call qstrip,$(BR2_PACKAGE_OVERRIDE_FILE))
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200416ifneq ($(PACKAGE_OVERRIDE_FILE),)
417-include $(PACKAGE_OVERRIDE_FILE)
418endif
419
Jérôme Pouiller741cbcc2013-09-03 10:45:41 +0200420include $(sort $(wildcard package/*/*.mk))
Eric Andersend06645d2005-02-10 03:06:39 +0000421
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100422include boot/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100423include linux/linux.mk
Philippe Reynes00b1ff62014-05-05 09:52:13 +0200424include fs/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100425
Thomas Petazzoni8eb8aaf2013-12-05 20:11:11 +0100426include $(BR2_EXTERNAL)/external.mk
427
Thomas Petazzonid21a1762013-06-30 21:29:06 +0200428dirs: $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
Arnout Vandecappellee0c60672014-03-17 09:22:33 +0100429 $(HOST_DIR) $(BINARIES_DIR)
Ulf Samuelssonf958d892007-08-14 07:45:01 +0000430
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100431$(BUILD_DIR)/buildroot-config/auto.conf: $(BR2_CONFIG)
Peter Korsgaard879058a2013-12-16 13:49:28 +0100432 $(MAKE1) $(EXTRAMAKEARGS) HOSTCC="$(HOSTCC_NOCCACHE)" HOSTCXX="$(HOSTCXX_NOCCACHE)" silentoldconfig
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200433
434prepare: $(BUILD_DIR)/buildroot-config/auto.conf
435
Fabio Porceddaa2487752014-02-14 10:55:06 +0100436world: target-post-image
Fabio Porcedda2a786412013-01-14 22:02:00 +0000437
438.PHONY: all world toolchain dirs clean distclean source outputmakefile \
Arnout Vandecappelledf79e352015-03-21 20:49:45 +0100439 legal-info legal-info-prepare legal-info-clean printvars help \
Thomas Petazzoni7800b962015-04-26 11:51:03 +0200440 list-defconfigs target-finalize target-post-image source-check
Jon Nelsonc79e9982002-01-05 20:26:15 +0000441
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200442################################################################################
Eric Andersen08782ae2002-04-26 11:45:55 +0000443#
Eric Andersenef407d32004-01-29 23:21:00 +0000444# staging and target directories do NOT list these as
Mike Frysingerd99c31c2006-05-26 01:18:09 +0000445# dependencies anywhere else
Eric Andersen08782ae2002-04-26 11:45:55 +0000446#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200447################################################################################
Maxime Hadjinlian7a6b83a2015-07-14 13:36:25 +0200448$(BUILD_DIR) $(TARGET_DIR) $(HOST_DIR) $(BINARIES_DIR) $(LEGAL_INFO_DIR) $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST):
Bernhard Reutner-Fischer8d583fc2007-01-30 00:58:18 +0000449 @mkdir -p $@
Manuel Novoa III 3ad3d8a2004-09-03 00:49:43 +0000450
Samuel Martin56287762013-08-23 00:59:35 +0200451# We make a symlink lib32->lib or lib64->lib as appropriate
452# MIPS64/n32 requires lib32 even though it's a 64-bit arch.
453ifeq ($(BR2_ARCH_IS_64)$(BR2_MIPS_NABI32),y)
454LIB_SYMLINK = lib64
455else
456LIB_SYMLINK = lib32
457endif
458
Yann E. MORINcb34ea52015-11-26 23:13:41 +0100459# Populating the staging with the base directories is handled by the skeleton package
Eric Andersen08782ae2002-04-26 11:45:55 +0000460$(STAGING_DIR):
Yann E. MORINcb34ea52015-11-26 23:13:41 +0100461 @mkdir -p $(STAGING_DIR)
Gustavo Zacarias5ad139e2010-12-31 08:39:05 -0300462 @ln -snf $(STAGING_DIR) $(BASE_DIR)/staging
Eric Andersen08782ae2002-04-26 11:45:55 +0000463
Thomas De Schampheleire7ad28652013-11-07 11:41:22 +0100464RSYNC_VCS_EXCLUSIONS = \
465 --exclude .svn --exclude .git --exclude .hg --exclude .bzr \
466 --exclude CVS
467
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000468STRIP_FIND_CMD = find $(TARGET_DIR)
469ifneq (,$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS)))
470STRIP_FIND_CMD += \( $(call finddirclauses,$(TARGET_DIR),$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) \) -prune -o
471endif
Thomas Petazzoni12d15072014-02-04 16:36:18 +0100472STRIP_FIND_CMD += -type f \( -perm /111 -o -name '*.so*' \)
Thomas De Schampheleire06635912014-04-30 21:29:02 +0200473# file exclusions:
474# - libpthread.so: a non-stripped libpthread shared library is needed for
475# proper debugging of pthread programs using gdb.
476# - kernel modules (*.ko): do not function properly when stripped like normal
477# applications and libraries. Normally kernel modules are already excluded
478# by the executable permission check above, so the explicit exclusion is only
479# done for kernel modules with incorrect permissions.
Andrew Parlane26f215d2015-03-18 15:10:29 +0000480STRIP_FIND_CMD += -not \( $(call findfileclauses,libpthread*.so* *.ko $(call qstrip,$(BR2_STRIP_EXCLUDE_FILES))) \) -print0
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000481
Fabio Porcedda28685d52014-06-27 14:15:57 +0200482ifeq ($(BR2_ECLIPSE_REGISTER),y)
483define TOOLCHAIN_ECLIPSE_REGISTER
484 ./support/scripts/eclipse-register-toolchain `readlink -f $(O)` \
485 $(notdir $(TARGET_CROSS)) $(BR2_ARCH)
486endef
487TARGET_FINALIZE_HOOKS += TOOLCHAIN_ECLIPSE_REGISTER
488endif
489
Fabio Porcedda33de7402014-06-27 14:15:58 +0200490# Generate locale data. Basically, we call the localedef program
491# (built by the host-localedef package) for each locale. The input
492# data comes preferably from the toolchain, or if the toolchain does
493# not have them (Linaro toolchains), we use the ones available on the
494# host machine.
495ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y)
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100496GLIBC_GENERATE_LOCALES = $(call qstrip,$(BR2_GENERATE_LOCALE))
497ifneq ($(GLIBC_GENERATE_LOCALES),)
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200498PACKAGES += host-localedef
Fabio Porcedda33de7402014-06-27 14:15:58 +0200499
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100500define GENERATE_GLIBC_LOCALES
Fabio Porcedda33de7402014-06-27 14:15:58 +0200501 $(Q)mkdir -p $(TARGET_DIR)/usr/lib/locale/
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100502 $(Q)for locale in $(GLIBC_GENERATE_LOCALES) ; do \
Fabio Porcedda33de7402014-06-27 14:15:58 +0200503 inputfile=`echo $${locale} | cut -f1 -d'.'` ; \
504 charmap=`echo $${locale} | cut -f2 -d'.' -s` ; \
505 if test -z "$${charmap}" ; then \
506 charmap="UTF-8" ; \
507 fi ; \
508 echo "Generating locale $${inputfile}.$${charmap}" ; \
509 I18NPATH=$(STAGING_DIR)/usr/share/i18n:/usr/share/i18n \
510 $(HOST_DIR)/usr/bin/localedef \
511 --prefix=$(TARGET_DIR) \
512 --$(call LOWERCASE,$(BR2_ENDIAN))-endian \
513 -i $${inputfile} -f $${charmap} \
514 $${locale} ; \
515 done
516endef
Thomas Petazzoni404f4932014-11-13 23:17:23 +0100517TARGET_FINALIZE_HOOKS += GENERATE_GLIBC_LOCALES
Fabio Porcedda33de7402014-06-27 14:15:58 +0200518endif
519endif
520
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200521ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
522LOCALE_WHITELIST = $(BUILD_DIR)/locales.nopurge
523LOCALE_NOPURGE = $(call qstrip,$(BR2_ENABLE_LOCALE_WHITELIST))
524
Valentine Barshakb7915712015-07-14 01:45:28 +0200525# This piece of junk does the following:
526# First collect the whitelist in a file.
527# Then go over all the locale dirs and for each subdir, check if it exists
528# in the whitelist file. If it doesn't, kill it.
529# Finally, specifically for X11, regenerate locale.dir from the whitelist.
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200530define PURGE_LOCALES
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200531 rm -f $(LOCALE_WHITELIST)
Sven Neumann201adef2014-06-18 11:23:30 +0200532 for i in $(LOCALE_NOPURGE) locale-archive; do echo $$i >> $(LOCALE_WHITELIST); done
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200533
Arnout Vandecappelle36480ea2015-07-13 23:00:34 +0200534 for dir in $(wildcard $(addprefix $(TARGET_DIR),/usr/share/locale /usr/share/X11/locale /usr/lib/locale)); \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200535 do \
Arnout Vandecappelle805240b2015-07-14 01:45:27 +0200536 for langdir in $$dir/*; \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200537 do \
Arnout Vandecappelle805240b2015-07-14 01:45:27 +0200538 grep -qx $${langdir##*/} $(LOCALE_WHITELIST) || rm -rf $$langdir; \
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200539 done; \
540 done
Valentine Barshakb7915712015-07-14 01:45:28 +0200541 if [ -d $(TARGET_DIR)/usr/share/X11/locale ]; \
542 then \
543 for lang in $(LOCALE_NOPURGE); \
544 do \
545 if [ -f $(TARGET_DIR)/usr/share/X11/locale/$$lang/XLC_LOCALE ]; \
546 then \
547 echo "$$lang/XLC_LOCALE: $$lang"; \
548 fi \
549 done > $(TARGET_DIR)/usr/share/X11/locale/locale.dir; \
550 fi
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200551endef
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200552TARGET_FINALIZE_HOOKS += PURGE_LOCALES
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200553endif
554
Fabio Porceddad4c0c642014-02-20 15:26:18 +0100555$(TARGETS_ROOTFS): target-finalize
556
Thomas Petazzoni8a58e022015-04-12 18:37:48 +0200557target-finalize: $(PACKAGES)
Thomas De Schampheleire6f6a2cf2014-05-12 16:19:27 +0200558 @$(call MESSAGE,"Finalizing target directory")
Fabio Porcedda8d384fa2014-06-27 14:15:55 +0200559 $(foreach hook,$(TARGET_FINALIZE_HOOKS),$($(hook))$(sep))
Valentine Barshak94d3aa12012-10-02 08:52:15 +0000560 rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/share/aclocal \
Luca Ceresolidf99efb2013-03-06 07:14:26 +0000561 $(TARGET_DIR)/usr/lib/pkgconfig $(TARGET_DIR)/usr/share/pkgconfig \
562 $(TARGET_DIR)/usr/lib/cmake $(TARGET_DIR)/usr/share/cmake
563 find $(TARGET_DIR)/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f
Herve Codina87f3ede2015-09-15 15:27:06 +0200564 find $(TARGET_DIR)/lib $(TARGET_DIR)/usr/lib $(TARGET_DIR)/usr/libexec \
565 \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
Malte Starostike48a72e2010-07-24 21:29:56 +0200566ifneq ($(BR2_PACKAGE_GDB),y)
567 rm -rf $(TARGET_DIR)/usr/share/gdb
568endif
Maxime Hadjinlian76d1c722015-07-12 17:25:57 +0200569ifneq ($(BR2_PACKAGE_BASH),y)
570 rm -rf $(TARGET_DIR)/usr/share/bash-completion
571endif
572ifneq ($(BR2_PACKAGE_ZSH),y)
573 rm -rf $(TARGET_DIR)/usr/share/zsh
574endif
Peter Korsgaard32faf352009-04-07 21:04:31 +0000575 rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/man
Peter Korsgaard32faf352009-04-07 21:04:31 +0000576 rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info
Thomas Petazzoni87b06372010-04-10 22:42:45 +0200577 rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc
Paulius Zaleckasd701a822010-05-05 13:09:36 +0300578 rm -rf $(TARGET_DIR)/usr/share/gtk-doc
Mike Frysinger68ad6d42010-11-18 16:25:58 -0500579 -rmdir $(TARGET_DIR)/usr/share 2>/dev/null
Andrew Parlane26f215d2015-03-18 15:10:29 +0000580 $(STRIP_FIND_CMD) | xargs -0 $(STRIPCMD) 2>/dev/null || true
Peter Korsgaardf627ebe2013-08-26 00:34:45 +0200581 if test -d $(TARGET_DIR)/lib/modules; then \
erico.nunese4dde252015-05-09 17:25:33 -0300582 find $(TARGET_DIR)/lib/modules -type f -name '*.ko' -print0 | \
583 xargs -0 -r $(KSTRIPCMD); fi
Mike Frysinger8101c9a2010-11-17 18:55:43 -0500584
Richard Braun6ae78862012-11-20 07:18:11 +0000585# See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads
586# besides the one in which crash occurred; or SIGTRAP kills my program when
587# I set a breakpoint"
588ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
589 find $(TARGET_DIR)/lib -type f -name 'libpthread*.so*' | \
Thomas Petazzoni52e70732013-08-20 13:03:03 +0200590 xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG)
Richard Braun6ae78862012-11-20 07:18:11 +0000591endif
592
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200593 mkdir -p $(TARGET_DIR)/etc
Luca Ceresoli60e9a792015-04-22 10:03:52 +0200594 # Mandatory configuration file and auxiliary cache directory
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200595 # for recent versions of ldconfig
596 touch $(TARGET_DIR)/etc/ld.so.conf
597 mkdir -p $(TARGET_DIR)/var/cache/ldconfig
Peter Korsgaarde49e2fe2010-07-26 23:53:37 +0200598 if [ -x "$(TARGET_CROSS)ldconfig" ]; \
599 then \
Yann E. MORIN1c4d3552015-04-17 18:10:33 +0200600 $(TARGET_CROSS)ldconfig -r $(TARGET_DIR) \
601 -f $(TARGET_DIR)/etc/ld.so.conf; \
Peter Korsgaarde49e2fe2010-07-26 23:53:37 +0200602 else \
Yann E. MORIN1c4d3552015-04-17 18:10:33 +0200603 /sbin/ldconfig -r $(TARGET_DIR) \
604 -f $(TARGET_DIR)/etc/ld.so.conf; \
Peter Korsgaarde49e2fe2010-07-26 23:53:37 +0200605 fi
Peter Korsgaard451a8872012-02-14 12:58:25 +0100606 ( \
607 echo "NAME=Buildroot"; \
608 echo "VERSION=$(BR2_VERSION_FULL)"; \
609 echo "ID=buildroot"; \
610 echo "VERSION_ID=$(BR2_VERSION)"; \
611 echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \
612 ) > $(TARGET_DIR)/etc/os-release
Peter Korsgaard912ea812009-09-30 17:40:24 +0200613
Luca Ceresolie9b77122013-04-08 06:50:16 +0000614 @$(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \
615 $(call MESSAGE,"Copying overlay $(d)"); \
Peter Korsgaard99e82b02014-02-04 17:55:33 +0100616 rsync -a --ignore-times $(RSYNC_VCS_EXCLUSIONS) \
Guido Martínez361d3572014-11-21 13:19:01 -0300617 --chmod=u=rwX,go=rX --exclude .empty --exclude '*~' \
Luca Ceresolie9b77122013-04-08 06:50:16 +0000618 $(d)/ $(TARGET_DIR)$(sep))
Arnout Vandecappelle (Essensium/Mind)7f860892013-02-05 07:16:00 +0000619
Philippe Reynesdbf49782012-11-17 13:01:22 +0100620 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \
Luca Ceresoli1b9b1682013-04-08 06:50:14 +0000621 $(call MESSAGE,"Executing post-build script $(s)"); \
Yann E. MORIN9806bf52014-03-10 21:51:33 +0100622 $(EXTRA_ENV) $(s) $(TARGET_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Daniel Mackeed7d872009-07-08 22:46:58 +0200623
Thomas Petazzonifbb3b862014-02-28 21:05:27 +0100624target-post-image: $(TARGETS_ROOTFS) target-finalize
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000625 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_IMAGE_SCRIPT)), \
Luca Ceresoli6d90a692013-04-08 06:50:15 +0000626 $(call MESSAGE,"Executing post-image script $(s)"); \
Yann E. MORIN9806bf52014-03-10 21:51:33 +0100627 $(EXTRA_ENV) $(s) $(BINARIES_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000628
Thomas Petazzoni17dcad02015-04-26 11:51:12 +0200629source: $(foreach p,$(PACKAGES),$(p)-all-source)
Eric Andersenffde94b2001-12-22 00:56:11 +0000630
Thomas Petazzoni7e679cc2015-04-26 11:51:01 +0200631_external-deps: $(foreach p,$(PACKAGES),$(p)-all-external-deps)
Peter Korsgaard155971e2008-03-04 12:19:16 +0000632external-deps:
Thomas Petazzoni7e679cc2015-04-26 11:51:01 +0200633 @$(MAKE1) -Bs $(EXTRAMAKEARGS) _external-deps | sort -u
Peter Korsgaard155971e2008-03-04 12:19:16 +0000634
Thomas Petazzoni7800b962015-04-26 11:51:03 +0200635# check if download URLs are outdated
Thomas Petazzonif9b92822015-04-26 11:51:06 +0200636source-check: $(foreach p,$(PACKAGES),$(p)-all-source-check)
Thomas Petazzoni7800b962015-04-26 11:51:03 +0200637
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200638legal-info-clean:
639 @rm -fr $(LEGAL_INFO_DIR)
640
641legal-info-prepare: $(LEGAL_INFO_DIR)
642 @$(call MESSAGE,"Collecting legal info")
Thomas De Schampheleire366f17f2013-11-12 09:47:58 +0100643 @$(call legal-license-file,buildroot,COPYING,COPYING,HOST)
Clayton Shotwellaf629e42014-07-21 08:46:31 -0500644 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,TARGET)
645 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,SOURCE SITE,HOST)
646 @$(call legal-manifest,buildroot,$(BR2_VERSION_FULL),GPLv2+,COPYING,not saved,not saved,HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200647 @$(call legal-warning,the Buildroot source code has not been saved)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100648 @cp $(BR2_CONFIG) $(LEGAL_INFO_DIR)/buildroot.config
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200649
Thomas Petazzoni5db22b32015-04-12 18:37:50 +0200650legal-info: dirs legal-info-clean legal-info-prepare $(foreach p,$(PACKAGES),$(p)-all-legal-info) \
Thomas De Schampheleire858334c2013-11-12 09:47:59 +0100651 $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200652 @cat support/legal-info/README.header >>$(LEGAL_REPORT)
653 @if [ -r $(LEGAL_WARNINGS) ]; then \
654 cat support/legal-info/README.warnings-header \
655 $(LEGAL_WARNINGS) >>$(LEGAL_REPORT); \
656 cat $(LEGAL_WARNINGS); fi
657 @echo "Legal info produced in $(LEGAL_INFO_DIR)"
658 @rm -f $(LEGAL_WARNINGS)
659
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200660show-targets:
Thomas Petazzoniadc88b82015-04-12 18:37:51 +0200661 @echo $(PACKAGES) $(TARGETS_ROOTFS)
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200662
Yann E. MORINe16bf922013-12-28 18:39:11 +0100663graph-build: $(O)/build/build-time.log
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100664 @install -d $(GRAPHS_DIR)
Yann E. MORINe16bf922013-12-28 18:39:11 +0100665 $(foreach o,name build duration,./support/scripts/graph-build-time \
666 --type=histogram --order=$(o) --input=$(<) \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100667 --output=$(GRAPHS_DIR)/build.hist-$(o).$(BR_GRAPH_OUT) \
Yann E. MORIN8ae78382014-02-23 16:59:11 +0100668 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
Yann E. MORINe16bf922013-12-28 18:39:11 +0100669 $(foreach t,packages steps,./support/scripts/graph-build-time \
670 --type=pie-$(t) --input=$(<) \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100671 --output=$(GRAPHS_DIR)/build.pie-$(t).$(BR_GRAPH_OUT) \
Yann E. MORIN8ae78382014-02-23 16:59:11 +0100672 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
Yann E. MORINe16bf922013-12-28 18:39:11 +0100673
Fabio Porceddad3c1c642014-06-17 11:33:54 +0200674graph-depends-requirements:
Thomas Petazzoni664f2702014-06-13 14:17:19 +0200675 @dot -? >/dev/null 2>&1 || \
Fabio Porceddad3c1c642014-06-17 11:33:54 +0200676 { echo "ERROR: The 'dot' program from Graphviz is needed for graph-depends" >&2; exit 1; }
677
678graph-depends: graph-depends-requirements
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100679 @$(INSTALL) -d $(GRAPHS_DIR)
Yann E. MORIN56eb3942014-01-07 23:46:04 +0100680 @cd "$(CONFIG_DIR)"; \
Yann E. MORIN287a8822014-05-16 23:05:13 +0200681 $(TOPDIR)/support/scripts/graph-depends $(BR2_GRAPH_DEPS_OPTS) \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100682 |tee $(GRAPHS_DIR)/$(@).dot \
683 |dot $(BR2_GRAPH_DOT_OPTS) -T$(BR_GRAPH_OUT) -o $(GRAPHS_DIR)/$(@).$(BR_GRAPH_OUT)
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100684
Thomas Petazzoni24c75fb2015-10-17 15:33:44 +0200685graph-size:
686 $(Q)mkdir -p $(GRAPHS_DIR)
687 $(Q)$(TOPDIR)/support/scripts/size-stats --builddir $(BASE_DIR) \
688 --graph $(GRAPHS_DIR)/graph-size.$(BR_GRAPH_OUT) \
689 --file-size-csv $(GRAPHS_DIR)/file-size-stats.csv \
690 --package-size-csv $(GRAPHS_DIR)/package-size-stats.csv
691
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000692else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersen2d523c22004-10-09 01:06:03 +0000693
694all: menuconfig
695
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000696endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
697
Eric Andersen2d523c22004-10-09 01:06:03 +0000698# configuration
699# ---------------------------------------------------------------------------
700
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200701HOSTCFLAGS = $(CFLAGS_FOR_BUILD)
Bernhard Reutner-Fischerc0d7d4e2007-07-09 18:23:20 +0000702export HOSTCFLAGS
703
Peter Korsgaard2cc210c2010-06-20 23:05:32 +0200704$(BUILD_DIR)/buildroot-config/%onf:
705 mkdir -p $(@D)/lxdialog
Bjørn Forsman0515fe42015-01-03 00:58:47 +0100706 PKG_CONFIG_PATH="$(HOST_PKG_CONFIG_PATH)" $(MAKE) CC="$(HOSTCC_NOCCACHE)" HOSTCC="$(HOSTCC_NOCCACHE)" \
707 obj=$(@D) -C $(CONFIG) -f Makefile.br $(@F)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200708
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000709DEFCONFIG = $(call qstrip,$(BR2_DEFCONFIG))
710
711# We don't want to fully expand BR2_DEFCONFIG here, so Kconfig will
712# recognize that if it's still at its default $(CONFIG_DIR)/defconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200713COMMON_CONFIG_ENV = \
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000714 BR2_DEFCONFIG='$(call qstrip,$(value BR2_DEFCONFIG))' \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200715 KCONFIG_AUTOCONFIG=$(BUILD_DIR)/buildroot-config/auto.conf \
716 KCONFIG_AUTOHEADER=$(BUILD_DIR)/buildroot-config/autoconf.h \
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200717 KCONFIG_TRISTATE=$(BUILD_DIR)/buildroot-config/tristate.config \
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100718 BR2_CONFIG=$(BR2_CONFIG) \
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200719 BR2_EXTERNAL=$(BR2_EXTERNAL) \
720 SKIP_LEGACY=
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200721
Yann E. MORINaefad532010-09-26 10:56:12 +0200722xconfig: $(BUILD_DIR)/buildroot-config/qconf outputmakefile
Peter Korsgaard610255e2010-11-24 15:30:54 +0100723 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200724
Yann E. MORINaefad532010-09-26 10:56:12 +0200725gconfig: $(BUILD_DIR)/buildroot-config/gconf outputmakefile
Peter Korsgaard610255e2010-11-24 15:30:54 +0100726 @$(COMMON_CONFIG_ENV) srctree=$(TOPDIR) $< $(CONFIG_CONFIG_IN)
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200727
Yann E. MORINaefad532010-09-26 10:56:12 +0200728menuconfig: $(BUILD_DIR)/buildroot-config/mconf outputmakefile
Peter Korsgaard610255e2010-11-24 15:30:54 +0100729 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000730
Yann E. MORINaefad532010-09-26 10:56:12 +0200731nconfig: $(BUILD_DIR)/buildroot-config/nconf outputmakefile
Peter Korsgaard610255e2010-11-24 15:30:54 +0100732 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000733
Yann E. MORINaefad532010-09-26 10:56:12 +0200734config: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200735 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000736
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200737# For the config targets that automatically select options, we pass
738# SKIP_LEGACY=y to disable the legacy options. However, in that case
739# no values are set for the legacy options so a subsequent oldconfig
740# will query them. Therefore, run an additional olddefconfig.
741
Yann E. MORINaefad532010-09-26 10:56:12 +0200742oldconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200743 @$(COMMON_CONFIG_ENV) $< --oldconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000744
Yann E. MORINaefad532010-09-26 10:56:12 +0200745randconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200746 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --randconfig $(CONFIG_CONFIG_IN)
747 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Eric Andersen2d523c22004-10-09 01:06:03 +0000748
Yann E. MORINaefad532010-09-26 10:56:12 +0200749allyesconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200750 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --allyesconfig $(CONFIG_CONFIG_IN)
751 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Eric Andersen2d523c22004-10-09 01:06:03 +0000752
Yann E. MORINaefad532010-09-26 10:56:12 +0200753allnoconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200754 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y $< --allnoconfig $(CONFIG_CONFIG_IN)
755 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Eric Andersen2d523c22004-10-09 01:06:03 +0000756
Yann E. MORINaefad532010-09-26 10:56:12 +0200757randpackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100758 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200759 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \
Will Wagner39ca6d52010-01-11 12:28:50 +0000760 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200761 $< --randconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000762 @rm -f $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200763 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Peter Korsgaard66527702009-10-04 21:57:12 +0200764
Yann E. MORINaefad532010-09-26 10:56:12 +0200765allyespackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100766 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200767 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \
Will Wagner39ca6d52010-01-11 12:28:50 +0000768 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200769 $< --allyesconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000770 @rm -f $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200771 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Peter Korsgaard66527702009-10-04 21:57:12 +0200772
Yann E. MORINaefad532010-09-26 10:56:12 +0200773allnopackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100774 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200775 @$(COMMON_CONFIG_ENV) SKIP_LEGACY=y \
Will Wagner39ca6d52010-01-11 12:28:50 +0000776 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200777 $< --allnoconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000778 @rm -f $(CONFIG_DIR)/.config.nopkg
Arnout Vandecappelle53903a12015-04-11 01:49:02 +0200779 @$(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN) >/dev/null
Peter Korsgaard66527702009-10-04 21:57:12 +0200780
Yann E. MORINaefad532010-09-26 10:56:12 +0200781silentoldconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200782 $(COMMON_CONFIG_ENV) $< --silentoldconfig $(CONFIG_CONFIG_IN)
783
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000784olddefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000785 $(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN)
786
Yann E. MORINaefad532010-09-26 10:56:12 +0200787defconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000788 @$(COMMON_CONFIG_ENV) $< --defconfig$(if $(DEFCONFIG),=$(DEFCONFIG)) $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000789
Arnout Vandecappelle32babbf2015-02-02 16:34:46 +0100790# Override the BR2_DEFCONFIG from COMMON_CONFIG_ENV with the new defconfig
Yann E. MORINaefad532010-09-26 10:56:12 +0200791%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(TOPDIR)/configs/%_defconfig outputmakefile
Arnout Vandecappelle32babbf2015-02-02 16:34:46 +0100792 @$(COMMON_CONFIG_ENV) BR2_DEFCONFIG=$(TOPDIR)/configs/$@ \
793 $< --defconfig=$(TOPDIR)/configs/$@ $(CONFIG_CONFIG_IN)
Thomas Petazzoni6f381192010-08-11 20:01:23 +0200794
Thomas Petazzoniff9d6e32013-12-05 20:11:12 +0100795%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(BR2_EXTERNAL)/configs/%_defconfig outputmakefile
Arnout Vandecappelle32babbf2015-02-02 16:34:46 +0100796 @$(COMMON_CONFIG_ENV) BR2_DEFCONFIG=$(BR2_EXTERNAL)/configs/$@ \
797 $< --defconfig=$(BR2_EXTERNAL)/configs/$@ $(CONFIG_CONFIG_IN)
Thomas Petazzoniff9d6e32013-12-05 20:11:12 +0100798
Yann E. MORINaefad532010-09-26 10:56:12 +0200799savedefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000800 @$(COMMON_CONFIG_ENV) $< \
801 --savedefconfig=$(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig) \
802 $(CONFIG_CONFIG_IN)
Herve Codinaf71a6212015-06-04 10:16:33 +0200803 @$(SED) '/BR2_DEFCONFIG=/d' $(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig)
Eric Andersen2d523c22004-10-09 01:06:03 +0000804
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000805.PHONY: defconfig savedefconfig
Peter Korsgaard406053d2009-11-20 14:05:48 +0100806
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200807################################################################################
Eric Andersen2d523c22004-10-09 01:06:03 +0000808#
809# Cleanup and misc junk
810#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200811################################################################################
Yann E. MORINaefad532010-09-26 10:56:12 +0200812
813# outputmakefile generates a Makefile in the output directory, if using a
814# separate output directory. This allows convenient use of make in the
815# output directory.
816outputmakefile:
817ifeq ($(NEED_WRAPPER),y)
Thomas Petazzonif082c7c2011-08-31 23:35:02 +0200818 $(Q)$(TOPDIR)/support/scripts/mkmakefile $(TOPDIR) $(O)
Yann E. MORINaefad532010-09-26 10:56:12 +0200819endif
820
Émeric Vigier98b616d2013-05-29 00:41:11 +0200821# printvars prints all the variables currently defined in our Makefiles
822printvars:
823 @$(foreach V, \
824 $(sort $(.VARIABLES)), \
825 $(if $(filter-out environment% default automatic, \
826 $(origin $V)), \
827 $(info $V=$($V) ($(value $V)))))
828
Eric Andersen2d523c22004-10-09 01:06:03 +0000829clean:
Thomas De Schampheleire300eb6b2013-09-30 13:09:27 +0200830 rm -rf $(TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) \
Arnout Vandecappellee0c60672014-03-17 09:22:33 +0100831 $(BUILD_DIR) $(BASE_DIR)/staging \
Thomas Petazzoni4a9a21b2015-02-05 22:19:56 +0100832 $(LEGAL_INFO_DIR) $(GRAPHS_DIR)
Eric Andersen2d523c22004-10-09 01:06:03 +0000833
834distclean: clean
Peter Korsgaard406053d2009-11-20 14:05:48 +0100835ifeq ($(DL_DIR),$(TOPDIR)/dl)
836 rm -rf $(DL_DIR)
837endif
838ifeq ($(O),output)
839 rm -rf $(O)
840endif
Yann E. MORINad24d832015-03-29 11:56:21 +0200841 rm -rf $(BR2_CONFIG) $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/..config.tmp \
Yann E. MORINf8c0e452015-10-22 22:34:00 +0200842 $(CONFIG_DIR)/.auto.deps $(BR2_EXTERNAL_FILE)
Eric Andersen2d523c22004-10-09 01:06:03 +0000843
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000844help:
845 @echo 'Cleaning:'
Peter Korsgaard406053d2009-11-20 14:05:48 +0100846 @echo ' clean - delete all files created by build'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000847 @echo ' distclean - delete all non-source files (including .config)'
848 @echo
849 @echo 'Build:'
850 @echo ' all - make world'
Fabio Porcedda2a786412013-01-14 22:02:00 +0000851 @echo ' toolchain - build toolchain'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000852 @echo
853 @echo 'Configuration:'
854 @echo ' menuconfig - interactive curses-based configurator'
Peter Korsgaard15f5bef2011-02-01 08:41:01 +0100855 @echo ' nconfig - interactive ncurses-based configurator'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200856 @echo ' xconfig - interactive Qt-based configurator'
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200857 @echo ' gconfig - interactive GTK-based configurator'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000858 @echo ' oldconfig - resolve any unresolved symbols in .config'
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000859 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
860 @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200861 @echo ' randconfig - New config with random answer to all options'
862 @echo ' defconfig - New config with default answer to all options'
Arnout Vandecappelle33f454b2012-04-28 07:14:50 +0000863 @echo ' BR2_DEFCONFIG, if set, is used as input'
Frank Hunleth5c1a75c2015-02-11 08:14:49 -0500864 @echo ' savedefconfig - Save current config to BR2_DEFCONFIG (minimal config)'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200865 @echo ' allyesconfig - New config where all options are accepted with yes'
866 @echo ' allnoconfig - New config where all options are answered with no'
Peter Korsgaard66527702009-10-04 21:57:12 +0200867 @echo ' randpackageconfig - New config with random answer to package options'
868 @echo ' allyespackageconfig - New config where pkg options are accepted with yes'
869 @echo ' allnopackageconfig - New config where package options are answered with no'
Arnout Vandecappelleb1e0b6d2015-03-21 20:49:47 +0100870 @echo
871 @echo 'Package-specific:'
872 @echo ' <pkg> - Build and install <pkg> and all its dependencies'
873 @echo ' <pkg>-source - Only download the source files for <pkg>'
874 @echo ' <pkg>-extract - Extract <pkg> sources'
875 @echo ' <pkg>-patch - Apply patches to <pkg>'
876 @echo ' <pkg>-depends - Build <pkg>'\''s dependencies'
877 @echo ' <pkg>-configure - Build <pkg> up to the configure step'
878 @echo ' <pkg>-build - Build <pkg> up to the build step'
879 @echo ' <pkg>-graph-depends - Generate a graph of <pkg>'\''s dependencies'
880 @echo ' <pkg>-dirclean - Remove <pkg> build directory'
881 @echo ' <pkg>-reconfigure - Restart the build from the configure step'
882 @echo ' <pkg>-rebuild - Restart the build from the build step'
Peter Korsgaard4bb33dc2011-04-25 00:10:45 +0200883ifeq ($(BR2_PACKAGE_BUSYBOX),y)
884 @echo ' busybox-menuconfig - Run BusyBox menuconfig'
885endif
886ifeq ($(BR2_LINUX_KERNEL),y)
887 @echo ' linux-menuconfig - Run Linux kernel menuconfig'
Jean-Christophe PLAGNIOL-VILLARDf5777ce2011-08-22 21:28:47 +0200888 @echo ' linux-savedefconfig - Run Linux kernel savedefconfig'
Yegor Yefremov7916b972015-04-02 21:34:46 +0200889 @echo ' linux-update-defconfig - Save the Linux configuration to the path specified'
890 @echo ' by BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE'
Peter Korsgaard4bb33dc2011-04-25 00:10:45 +0200891endif
892ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
893 @echo ' uclibc-menuconfig - Run uClibc menuconfig'
894endif
Jean-Christophe PLAGNIOL-VILLARD83f1bf92011-08-22 21:28:48 +0200895ifeq ($(BR2_TARGET_BAREBOX),y)
896 @echo ' barebox-menuconfig - Run barebox menuconfig'
897 @echo ' barebox-savedefconfig - Run barebox savedefconfig'
898endif
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000899 @echo
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200900 @echo 'Documentation:'
Thomas De Schampheleire55ecab12013-09-19 12:47:14 +0200901 @echo ' manual - build manual in all formats'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200902 @echo ' manual-html - build manual in HTML'
903 @echo ' manual-split-html - build manual in split HTML'
904 @echo ' manual-pdf - build manual in PDF'
Thomas De Schampheleire462e9912013-10-18 22:31:26 +0200905 @echo ' manual-text - build manual in text'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200906 @echo ' manual-epub - build manual in ePub'
Yann E. MORINe16bf922013-12-28 18:39:11 +0100907 @echo ' graph-build - generate graphs of the build times'
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100908 @echo ' graph-depends - generate graph of the dependency tree'
Thomas Petazzoni24c75fb2015-10-17 15:33:44 +0200909 @echo ' graph-size - generate stats of the filesystem size'
Yann E. MORINde6377e2015-04-23 23:04:06 +0200910 @echo ' list-defconfigs - list all defconfigs (pre-configured minimal systems)'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200911 @echo
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000912 @echo 'Miscellaneous:'
913 @echo ' source - download all sources needed for offline-build'
Thomas De Schampheleire07bae752012-06-21 19:38:42 +0000914 @echo ' source-check - check selected packages for valid download URLs'
Peter Korsgaard155971e2008-03-04 12:19:16 +0000915 @echo ' external-deps - list external packages used'
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200916 @echo ' legal-info - generate info about license compliance'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000917 @echo
Peter Korsgaard15f5bef2011-02-01 08:41:01 +0100918 @echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build'
919 @echo ' make O=dir - Locate all output files in "dir", including .config'
920 @echo
Arnout Vandecappellef42a5802015-03-21 20:49:46 +0100921 @echo 'For further details, see README, generate the Buildroot manual, or consult'
922 @echo 'it on-line at http://buildroot.org/docs.html'
923 @echo
924
925list-defconfigs:
Thomas Petazzoniff9d6e32013-12-05 20:11:12 +0100926 @echo 'Built-in configs:'
Danomi Mocelopolisb9796192011-07-17 22:17:08 +0200927 @$(foreach b, $(sort $(notdir $(wildcard $(TOPDIR)/configs/*_defconfig))), \
Peter Korsgaard58fd7792009-10-04 22:09:25 +0200928 printf " %-35s - Build for %s\\n" $(b) $(b:_defconfig=);)
Thomas Petazzoniff9d6e32013-12-05 20:11:12 +0100929ifneq ($(wildcard $(BR2_EXTERNAL)/configs/*_defconfig),)
930 @echo
931 @echo 'User-provided configs:'
932 @$(foreach b, $(sort $(notdir $(wildcard $(BR2_EXTERNAL)/configs/*_defconfig))), \
933 printf " %-35s - Build for %s\\n" $(b) $(b:_defconfig=);)
934endif
Peter Korsgaard58fd7792009-10-04 22:09:25 +0200935 @echo
Bernhard Reutner-Fischerba2e7e02007-06-25 10:56:13 +0000936
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200937release: OUT = buildroot-$(BR2_VERSION)
Peter Korsgaard0dca7062010-11-04 00:00:00 +0100938
Peter Korsgaard134ab1c2012-02-03 22:03:29 +0100939# Create release tarballs. We need to fiddle a bit to add the generated
940# documentation to the git output
Peter Korsgaard0dca7062010-11-04 00:00:00 +0100941release:
Peter Korsgaardc6715b62013-09-17 13:42:07 +0200942 git archive --format=tar --prefix=$(OUT)/ HEAD > $(OUT).tar
Thomas De Schampheleire462e9912013-10-18 22:31:26 +0200943 $(MAKE) O=$(OUT) manual-html manual-text manual-pdf
Thomas De Schampheleire15cb9872015-07-17 12:20:35 +0200944 $(MAKE) O=$(OUT) manual-clean
Peter Korsgaard134ab1c2012-02-03 22:03:29 +0100945 tar rf $(OUT).tar $(OUT)
946 gzip -9 -c < $(OUT).tar > $(OUT).tar.gz
947 bzip2 -9 -c < $(OUT).tar > $(OUT).tar.bz2
948 rm -rf $(OUT) $(OUT).tar
Peter Korsgaarde62d2ec2009-01-15 19:36:06 +0000949
Arnout Vandecappelle (Essensium/Mind)2b91ab72012-03-11 12:16:39 +0100950print-version:
951 @echo $(BR2_VERSION_FULL)
952
Thomas Petazzonib7285d02012-04-17 16:45:22 +0200953include docs/manual/manual.mk
Yann E. MORINf70d6412014-10-03 19:01:58 +0200954-include $(BR2_EXTERNAL)/docs/*/*.mk
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200955
Peter Korsgaard66527702009-10-04 21:57:12 +0200956.PHONY: $(noconfig_targets)
Guido Martínezbee57452014-11-21 13:19:00 -0300957
958endif #umask