blob: 4b93805579b4e5635196feb997fb78cd246cb928 [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
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010027# Set and export the version string
Peter Korsgaard921a9ef2014-05-13 10:49:03 +020028export BR2_VERSION := 2014.05-rc1
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010029
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +010030# Check for minimal make version (note: this check will break at make 10.x)
Fabio Porceddac3e49d62014-04-23 10:39:23 +020031MIN_MAKE_VERSION = 3.81
Peter Korsgaard8139e212012-02-09 22:58:05 +010032ifneq ($(firstword $(sort $(MAKE_VERSION) $(MIN_MAKE_VERSION))),$(MIN_MAKE_VERSION))
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +010033$(error You have make '$(MAKE_VERSION)' installed. GNU make >= $(MIN_MAKE_VERSION) is required)
34endif
35
Francois Perrad1d4104f2012-07-18 15:59:09 +020036export HOSTARCH := $(shell uname -m | \
37 sed -e s/i.86/x86/ \
38 -e s/sun4u/sparc64/ \
39 -e s/arm.*/arm/ \
40 -e s/sa110/arm/ \
41 -e s/ppc64/powerpc/ \
42 -e s/ppc/powerpc/ \
43 -e s/macppc/powerpc/\
44 -e s/sh.*/sh/)
45
Fabio Porcedda2afb23a2014-02-14 10:55:08 +010046# Parallel execution of this Makefile is disabled because it changes
47# the packages building order, that can be a problem for two reasons:
48# - If a package has an unspecified optional dependency and that
49# dependency is present when the package is built, it is used,
50# otherwise it isn't (but compilation happily proceeds) so the end
51# result will differ if the order is swapped due to parallel
52# building.
53# - Also changing the building order can be a problem if two packages
54# manipulate the same file in the target directory.
55#
56# Taking into account the above considerations, if you still want to execute
57# this top-level Makefile in parallel comment the ".NOTPARALLEL" line and
58# build using the following command:
59# make BR2_JLEVEL= -j$((`getconf _NPROCESSORS_ONLN`+1))
Yann E. MORIN2d239bb2010-10-31 17:35:09 +010060.NOTPARALLEL:
61
Peter Korsgaard6b1dd452009-11-30 17:29:01 +010062# absolute path
Fabio Porceddac3e49d62014-04-23 10:39:23 +020063TOPDIR := $(shell pwd)
64CONFIG_CONFIG_IN = Config.in
65CONFIG = support/kconfig
66DATE := $(shell date +%Y%m%d)
Eric Andersen2d523c22004-10-09 01:06:03 +000067
Yann E. MORIN8258df22010-10-31 17:35:12 +010068# Compute the full local version string so packages can use it as-is
69# Need to export it, so it can be got from environment in children (eg. mconf)
Fabio Porceddac3e49d62014-04-23 10:39:23 +020070export BR2_VERSION_FULL := $(BR2_VERSION)$(shell $(TOPDIR)/support/scripts/setlocalversion)
Yann E. MORIN8258df22010-10-31 17:35:12 +010071
Fabio Porceddac3e49d62014-04-23 10:39:23 +020072noconfig_targets := menuconfig nconfig gconfig xconfig config oldconfig randconfig \
Yann E. MORIN063f4ee2013-12-27 00:04:29 +010073 defconfig %_defconfig allyesconfig allnoconfig silentoldconfig release \
Peter Korsgaard66527702009-10-04 21:57:12 +020074 randpackageconfig allyespackageconfig allnopackageconfig \
Thomas Petazzoni9db3b472013-04-04 11:24:25 +000075 source-check print-version olddefconfig
Bernhard Reutner-Fischer9e250352006-12-02 19:01:10 +000076
Thomas Petazzoni580c6d92009-07-30 17:26:49 +020077# Strip quotes and then whitespaces
Fabio Porceddac3e49d62014-04-23 10:39:23 +020078qstrip = $(strip $(subst ",,$(1)))
Thomas Petazzoni580c6d92009-07-30 17:26:49 +020079#"))
80
Peter Korsgaardf85f2de2009-01-25 20:19:01 +000081# Variables for use in Make constructs
Fabio Porceddac3e49d62014-04-23 10:39:23 +020082comma := ,
83empty :=
84space := $(empty) $(empty)
Peter Korsgaardf85f2de2009-01-25 20:19:01 +000085
Will Wagner39ca6d52010-01-11 12:28:50 +000086ifneq ("$(origin O)", "command line")
Fabio Porceddac3e49d62014-04-23 10:39:23 +020087O := output
88CONFIG_DIR := $(TOPDIR)
89NEED_WRAPPER =
Will Wagner39ca6d52010-01-11 12:28:50 +000090else
91# other packages might also support Linux-style out of tree builds
92# with the O=<dir> syntax (E.G. Busybox does). As make automatically
93# forwards command line variable definitions those packages get very
94# confused. Fix this by telling make to not do so
95MAKEOVERRIDES =
96# strangely enough O is still passed to submakes with MAKEOVERRIDES
97# (with make 3.81 atleast), the only thing that changes is the output
98# of the origin function (command line -> environment).
99# Unfortunately some packages don't look at origin (E.G. uClibc 0.9.31+)
100# To really make O go away, we have to override it.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200101override O := $(O)
102CONFIG_DIR := $(O)
Peter Korsgaardde846f62010-08-29 23:24:07 +0200103# we need to pass O= everywhere we call back into the toplevel makefile
104EXTRAMAKEARGS = O=$(O)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200105NEED_WRAPPER = y
Will Wagner39ca6d52010-01-11 12:28:50 +0000106endif
107
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200108# bash prints the name of the directory on 'cd <dir>' if CDPATH is
109# set, so unset it here to not cause problems. Notice that the export
110# line doesn't affect the environment of $(shell ..) calls, so
111# explictly throw away any output from 'cd' here.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200112export CDPATH :=
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200113BASE_DIR := $(shell mkdir -p $(O) && cd $(O) >/dev/null && pwd)
114$(if $(BASE_DIR),, $(error output directory "$(O)" does not exist))
115
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100116
117# Handling of BR2_EXTERNAL.
118#
119# The value of BR2_EXTERNAL is stored in .br-external in the output directory.
120# On subsequent invocations of make, it is read in. It can still be overridden
121# on the command line, therefore the file is re-created every time make is run.
122#
123# When BR2_EXTERNAL is not set, the .br-external file is removed and we point
124# to support/dummy-external. This makes sure we can unconditionally include the
125# Config.in and external.mk from the BR2_EXTERNAL directory. In this case,
126# override is necessary so the user can clear BR2_EXTERNAL from the command
127# line, but the dummy path is still used internally.
128
129BR2_EXTERNAL_FILE = $(BASE_DIR)/.br-external
130-include $(BR2_EXTERNAL_FILE)
131ifeq ($(BR2_EXTERNAL),)
132 override BR2_EXTERNAL = support/dummy-external
133 $(shell rm -f $(BR2_EXTERNAL_FILE))
134else
Yann E. MORIN5f5e5f22014-02-21 23:17:52 +0100135 _BR2_EXTERNAL = $(shell cd $(BR2_EXTERNAL) >/dev/null 2>&1 && pwd)
136 ifeq ($(_BR2_EXTERNAL),)
137 $(error BR2_EXTERNAL='$(BR2_EXTERNAL)' does not exist, relative to $(TOPDIR))
138 endif
139 override BR2_EXTERNAL := $(_BR2_EXTERNAL)
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100140 $(shell echo BR2_EXTERNAL ?= $(BR2_EXTERNAL) > $(BR2_EXTERNAL_FILE))
141endif
142
Arnout Vandecappelle67680212014-02-04 16:18:51 +0100143# To make sure the the environment variable overrides the .config option,
144# set this before including .config.
145ifneq ($(BR2_DL_DIR),)
146DL_DIR := $(BR2_DL_DIR)
147endif
148
149
Yann E. MORINf1fedbb2013-12-28 18:39:13 +0100150# Need that early, before we scan packages
151# Avoids doing the $(or...) everytime
Yann E. MORIN22d05902014-04-13 22:42:37 +0200152BR_GRAPH_OUT := $(or $(BR2_GRAPH_OUT),pdf)
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100153
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200154BUILD_DIR := $(BASE_DIR)/build
155BINARIES_DIR := $(BASE_DIR)/images
156TARGET_DIR := $(BASE_DIR)/target
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200157# initial definition so that 'make clean' works for most users, even without
158# .config. HOST_DIR will be overwritten later when .config is included.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200159HOST_DIR := $(BASE_DIR)/host
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200160
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200161LEGAL_INFO_DIR = $(BASE_DIR)/legal-info
162REDIST_SOURCES_DIR_TARGET = $(LEGAL_INFO_DIR)/sources
163REDIST_SOURCES_DIR_HOST = $(LEGAL_INFO_DIR)/host-sources
164LICENSE_FILES_DIR_TARGET = $(LEGAL_INFO_DIR)/licenses
165LICENSE_FILES_DIR_HOST = $(LEGAL_INFO_DIR)/host-licenses
166LEGAL_MANIFEST_CSV_TARGET = $(LEGAL_INFO_DIR)/manifest.csv
167LEGAL_MANIFEST_CSV_HOST = $(LEGAL_INFO_DIR)/host-manifest.csv
168LEGAL_LICENSES_TXT_TARGET = $(LEGAL_INFO_DIR)/licenses.txt
169LEGAL_LICENSES_TXT_HOST = $(LEGAL_INFO_DIR)/host-licenses.txt
170LEGAL_WARNINGS = $(LEGAL_INFO_DIR)/.warnings
171LEGAL_REPORT = $(LEGAL_INFO_DIR)/README
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200172
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200173BR2_CONFIG = $(CONFIG_DIR)/.config
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000174
Ulf Samuelssona1b06512008-03-28 07:31:28 +0000175# Pull in the user's configuration file
176ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100177-include $(BR2_CONFIG)
Ulf Samuelsson7521f372007-09-12 04:34:16 +0000178endif
Eric Andersen2d523c22004-10-09 01:06:03 +0000179
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000180# To put more focus on warnings, be less verbose as default
181# Use 'make V=1' to see the full commands
182ifdef V
183 ifeq ("$(origin V)", "command line")
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200184 KBUILD_VERBOSE = $(V)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000185 endif
186endif
187ifndef KBUILD_VERBOSE
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200188 KBUILD_VERBOSE = 0
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000189endif
190
191ifeq ($(KBUILD_VERBOSE),1)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200192 quiet =
193 Q =
Bernhard Reutner-Fischer1669b6e2007-09-22 14:19:22 +0000194ifndef VERBOSE
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200195 VERBOSE = 1
Bernhard Reutner-Fischer1669b6e2007-09-22 14:19:22 +0000196endif
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000197else
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200198 quiet = quiet_
199 Q = @
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000200endif
201
Peter Korsgaard69f85922009-01-01 21:20:35 +0000202# we want bash as shell
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200203SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
204 else if [ -x /bin/bash ]; then echo /bin/bash; \
205 else echo sh; fi; fi)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000206
Peter Korsgaard69f85922009-01-01 21:20:35 +0000207# kconfig uses CONFIG_SHELL
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200208CONFIG_SHELL := $(SHELL)
Peter Korsgaard69f85922009-01-01 21:20:35 +0000209
210export SHELL CONFIG_SHELL quiet Q KBUILD_VERBOSE VERBOSE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000211
212ifndef HOSTAR
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200213HOSTAR := ar
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000214endif
215ifndef HOSTAS
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200216HOSTAS := as
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000217endif
218ifndef HOSTCC
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200219HOSTCC := gcc
220HOSTCC := $(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000221endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200222HOSTCC_NOCCACHE := $(HOSTCC)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000223ifndef HOSTCXX
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200224HOSTCXX := g++
225HOSTCXX := $(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000226endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200227HOSTCXX_NOCCACHE := $(HOSTCXX)
Bernhard Reutner-Fischer5f975802007-09-28 20:10:22 +0000228ifndef HOSTFC
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200229HOSTFC := gfortran
Bernhard Reutner-Fischer5f975802007-09-28 20:10:22 +0000230endif
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000231ifndef HOSTCPP
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200232HOSTCPP := cpp
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000233endif
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000234ifndef HOSTLD
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200235HOSTLD := ld
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000236endif
Ulf Samuelsson0f9c5b12007-07-15 21:54:11 +0000237ifndef HOSTLN
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200238HOSTLN := ln
Ulf Samuelsson0f9c5b12007-07-15 21:54:11 +0000239endif
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000240ifndef HOSTNM
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200241HOSTNM := nm
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000242endif
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100243ifndef HOSTOBJCOPY
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200244HOSTOBJCOPY := objcopy
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100245endif
246ifndef HOSTRANLIB
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200247HOSTRANLIB := ranlib
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100248endif
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200249HOSTAR := $(shell which $(HOSTAR) || type -p $(HOSTAR) || echo ar)
250HOSTAS := $(shell which $(HOSTAS) || type -p $(HOSTAS) || echo as)
251HOSTFC := $(shell which $(HOSTLD) || type -p $(HOSTLD) || echo || which g77 || type -p g77 || echo gfortran)
252HOSTCPP := $(shell which $(HOSTCPP) || type -p $(HOSTCPP) || echo cpp)
253HOSTLD := $(shell which $(HOSTLD) || type -p $(HOSTLD) || echo ld)
254HOSTLN := $(shell which $(HOSTLN) || type -p $(HOSTLN) || echo ln)
255HOSTNM := $(shell which $(HOSTNM) || type -p $(HOSTNM) || echo nm)
256HOSTOBJCOPY := $(shell which $(HOSTOBJCOPY) || type -p $(HOSTOBJCOPY) || echo objcopy)
257HOSTRANLIB := $(shell which $(HOSTRANLIB) || type -p $(HOSTRANLIB) || echo ranlib)
Ulf Samuelsson54e93322008-07-06 07:34:41 +0000258
Bernhard Reutner-Fischer5f975802007-09-28 20:10:22 +0000259export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTFC HOSTLD
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100260export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000261
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000262# Make sure pkg-config doesn't look outside the buildroot tree
263unexport PKG_CONFIG_PATH
Charles Manning4f607ed2012-12-02 11:13:04 +0000264unexport PKG_CONFIG_SYSROOT_DIR
Peter Korsgaardbdf472d2013-09-11 14:15:15 +0200265unexport PKG_CONFIG_LIBDIR
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000266
Thomas Petazzoni91123a62012-07-02 04:21:14 +0000267# Having DESTDIR set in the environment confuses the installation
268# steps of some packages.
269unexport DESTDIR
270
Gustavo Zacariasbed61a72013-07-11 11:37:33 -0300271# Causes breakage with packages that needs host-ruby
272unexport RUBYOPT
273
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000274ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersenffde94b2001-12-22 00:56:11 +0000275
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200276################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000277#
278# Hide troublesome environment variables from sub processes
279#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200280################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000281unexport CROSS_COMPILE
282unexport ARCH
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100283unexport CC
284unexport CXX
285unexport CPP
286unexport CFLAGS
287unexport CXXFLAGS
288unexport GREP_OPTIONS
Nixf5437a62014-01-26 22:58:02 +0000289unexport TAR_OPTIONS
Peter Korsgaard12c9f7d2011-12-12 10:25:50 +0100290unexport CONFIG_SITE
Stephan Hoffmann32314b42012-08-17 13:54:16 +0200291unexport QMAKESPEC
Nathan Lynch20ca0082012-07-10 07:37:22 +0000292unexport TERMINFO
Bernhard Reutner-Fischer7dcbbfb2007-06-02 09:05:40 +0000293
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200294GNU_HOST_NAME := $(shell support/gnuconfig/config.guess)
Thomas Petazzoni60281cb2010-04-10 23:17:25 +0200295
Fabio Porcedda5f70a002014-04-07 11:56:48 +0200296TARGETS :=
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000297
Peter Korsgaard89464a92009-09-30 17:39:44 +0200298# silent mode requested?
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200299QUIET := $(if $(findstring s,$(MAKEFLAGS)),-q)
Peter Korsgaard89464a92009-09-30 17:39:44 +0200300
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200301# Strip off the annoying quoting
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200302ARCH := $(call qstrip,$(BR2_ARCH))
Thomas Petazzoni65e80a02010-04-28 23:40:57 +0200303
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200304KERNEL_ARCH := $(shell echo "$(ARCH)" | sed -e "s/-.*//" \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200305 -e s/i.86/i386/ -e s/sun4u/sparc64/ \
Maxime Ripardf59aeca2013-05-06 00:14:55 +0000306 -e s/arcle/arc/ \
Peter Korsgaard8332ffa2013-06-10 14:04:03 +0200307 -e s/arceb/arc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200308 -e s/arm.*/arm/ -e s/sa110/arm/ \
Thomas Petazzonib90a1032012-10-28 17:40:35 +0100309 -e s/aarch64/arm64/ \
Mike Frysinger871db072011-02-07 00:49:11 -0500310 -e s/bfin/blackfin/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200311 -e s/parisc64/parisc/ \
312 -e s/powerpc64/powerpc/ \
313 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
Jan Drazilc2205812014-03-19 13:01:05 +0100314 -e s/sh.*/sh/ \
315 -e s/microblazeel/microblaze/)
Peter Korsgaard891973f2010-10-17 23:32:37 +0200316
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200317ZCAT := $(call qstrip,$(BR2_ZCAT))
318BZCAT := $(call qstrip,$(BR2_BZCAT))
319XZCAT := $(call qstrip,$(BR2_XZCAT))
320TAR_OPTIONS = $(call qstrip,$(BR2_TAR_OPTIONS)) -xf
Bernhard Reutner-Fischer1dbe6e32007-08-21 17:56:47 +0000321
Gustavo Zacariasa2b4f7f2011-02-02 10:05:56 -0300322# packages compiled for the host go here
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200323HOST_DIR := $(call qstrip,$(BR2_HOST_DIR))
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200324
Samuel Martincaa329b2014-04-15 00:31:04 +0200325# Quotes are needed for spaces and all in the original PATH content.
Samuel Martinc7d660b2014-04-15 00:31:05 +0200326BR_PATH = "$(HOST_DIR)/bin:$(HOST_DIR)/sbin:$(HOST_DIR)/usr/bin:$(HOST_DIR)/usr/sbin:$(PATH)"
Samuel Martincaa329b2014-04-15 00:31:04 +0200327
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000328# locales to generate
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200329GENERATE_LOCALE = $(call qstrip,$(BR2_GENERATE_LOCALE))
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000330
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200331TARGET_SKELETON = $(TOPDIR)/system/skeleton
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200332
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000333# Location of a file giving a big fat warning that output/target
334# should not be used as the root filesystem.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200335TARGET_DIR_WARNING_FILE = $(TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000336
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100337ifeq ($(BR2_CCACHE),y)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200338CCACHE := $(HOST_DIR)/usr/bin/ccache
Arnout Vandecappellee7ab4b42014-02-04 16:18:50 +0100339BR_CACHE_DIR = $(call qstrip,$(BR2_CCACHE_DIR))
340export BR_CACHE_DIR
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200341HOSTCC := $(CCACHE) $(HOSTCC)
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100342HOSTCXX := $(CCACHE) $(HOSTCXX)
343endif
344
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000345# Scripts in support/ or post-build scripts may need to reference
346# these locations, so export them so it is easier to use
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100347export BR2_CONFIG
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000348export TARGET_DIR
349export STAGING_DIR
350export HOST_DIR
351export BINARIES_DIR
Peter Korsgaard1300cb52013-01-14 10:02:29 +0100352export BASE_DIR
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000353
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200354################################################################################
Eric Andersen08782ae2002-04-26 11:45:55 +0000355#
Eric Andersenef407d32004-01-29 23:21:00 +0000356# You should probably leave this stuff alone unless you know
Eric Andersen08782ae2002-04-26 11:45:55 +0000357# what you are doing.
358#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200359################################################################################
Manuel Novoa III d632d422003-11-01 05:34:41 +0000360
Bernhard Reutner-Fischer6547bce2007-08-22 12:35:41 +0000361all: world
Eric Andersenffde94b2001-12-22 00:56:11 +0000362
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000363# Include legacy before the other things, because package .mk files
364# may rely on it.
365ifneq ($(BR2_DEPRECATED),y)
366include Makefile.legacy
367endif
368
Thomas Petazzoni486253d2012-04-17 16:45:23 +0200369include package/Makefile.in
Thomas De Schampheleirea7926682012-02-08 17:22:16 +0100370include support/dependencies/dependencies.mk
371
Eric Andersend06645d2005-02-10 03:06:39 +0000372# We also need the various per-package makefiles, which also add
373# each selected package to TARGETS if that package was selected
374# in the .config file.
Thomas Petazzoni8b0905b2013-10-08 20:17:01 +0200375include toolchain/helpers.mk
376include toolchain/*/*.mk
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000377
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200378# Include the package override file if one has been provided in the
379# configuration.
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200380PACKAGE_OVERRIDE_FILE = $(call qstrip,$(BR2_PACKAGE_OVERRIDE_FILE))
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200381ifneq ($(PACKAGE_OVERRIDE_FILE),)
382-include $(PACKAGE_OVERRIDE_FILE)
383endif
384
Jérôme Pouiller741cbcc2013-09-03 10:45:41 +0200385include $(sort $(wildcard package/*/*.mk))
Eric Andersend06645d2005-02-10 03:06:39 +0000386
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100387include boot/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100388include linux/linux.mk
Peter Korsgaardec100c72013-01-09 13:20:05 +0100389include system/system.mk
Philippe Reynes00b1ff62014-05-05 09:52:13 +0200390include fs/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100391
Thomas Petazzoni8eb8aaf2013-12-05 20:11:11 +0100392include $(BR2_EXTERNAL)/external.mk
393
Thomas Petazzoni381616e2013-06-30 21:29:09 +0200394ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y)
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000395ifneq ($(GENERATE_LOCALE),)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200396TARGETS += target-generatelocales
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000397endif
398endif
399
Thomas Petazzoni217ef082013-01-13 04:52:13 +0000400ifeq ($(BR2_ECLIPSE_REGISTER),y)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200401TARGETS += toolchain-eclipse-register
Thomas Petazzoni217ef082013-01-13 04:52:13 +0000402endif
403
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200404TARGETS_SOURCE := $(patsubst %,%-source,$(TARGETS))
405TARGETS_DIRCLEAN := $(patsubst %,%-dirclean,$(TARGETS))
Peter Korsgaard22c2c6b2010-11-19 14:20:56 +0100406
407# host-* dependencies have to be handled specially, as those aren't
408# visible in Kconfig and hence not added to a variable like TARGETS.
409# instead, find all the host-* targets listed in each <PKG>_DEPENDENCIES
410# variable for each enabled target.
411# Notice: this only works for newstyle gentargets/autotargets packages
412TARGETS_HOST_DEPS = $(sort $(filter host-%,$(foreach dep,\
Fabio Porceddab1069232014-03-13 17:06:59 +0100413 $(addsuffix _DEPENDENCIES,\
414 $(call UPPERCASE,$(TARGETS) $(TARGETS_ROOTFS))),\
Peter Korsgaard22c2c6b2010-11-19 14:20:56 +0100415 $($(dep)))))
416# Host packages can in turn have their own dependencies. Likewise find
417# all the package names listed in the HOST_<PKG>_DEPENDENCIES for each
418# host package found above. Ideally this should be done recursively until
419# no more packages are found, but that's hard to do in make, so limit to
420# 1 level for now.
421HOST_DEPS = $(sort $(foreach dep,\
422 $(addsuffix _DEPENDENCIES,$(call UPPERCASE,$(TARGETS_HOST_DEPS))),\
423 $($(dep))))
424HOST_SOURCE += $(addsuffix -source,$(sort $(TARGETS_HOST_DEPS) $(HOST_DEPS)))
425
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200426TARGETS_LEGAL_INFO := $(patsubst %,%-legal-info,\
Fabio Porceddacf53e152014-03-06 10:42:27 +0100427 $(TARGETS) $(TARGETS_HOST_DEPS) $(HOST_DEPS))))
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200428
Thomas Petazzonid21a1762013-06-30 21:29:06 +0200429dirs: $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
Arnout Vandecappellee0c60672014-03-17 09:22:33 +0100430 $(HOST_DIR) $(BINARIES_DIR)
Ulf Samuelssonf958d892007-08-14 07:45:01 +0000431
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100432$(BUILD_DIR)/buildroot-config/auto.conf: $(BR2_CONFIG)
Peter Korsgaard879058a2013-12-16 13:49:28 +0100433 $(MAKE1) $(EXTRAMAKEARGS) HOSTCC="$(HOSTCC_NOCCACHE)" HOSTCXX="$(HOSTCXX_NOCCACHE)" silentoldconfig
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200434
435prepare: $(BUILD_DIR)/buildroot-config/auto.conf
436
Fabio Porceddaa2487752014-02-14 10:55:06 +0100437# Add base dependencies to all targets even on those not based on the
438# package framework.
439$(TARGETS): dirs prepare dependencies
440
441world: target-post-image
Fabio Porcedda2a786412013-01-14 22:02:00 +0000442
443.PHONY: all world toolchain dirs clean distclean source outputmakefile \
Émeric Vigier98b616d2013-05-29 00:41:11 +0200444 legal-info legal-info-prepare legal-info-clean printvars \
Fabio Porceddaa2487752014-02-14 10:55:06 +0100445 target-finalize target-post-image \
Fabio Porceddacf53e152014-03-06 10:42:27 +0100446 $(TARGETS) $(TARGETS_ROOTFS) \
Thomas De Schampheleire47e82822013-12-07 10:16:48 +0100447 $(TARGETS_DIRCLEAN) $(TARGETS_SOURCE) $(TARGETS_LEGAL_INFO) \
Thomas Petazzonid21a1762013-06-30 21:29:06 +0200448 $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
Arnout Vandecappellee0c60672014-03-17 09:22:33 +0100449 $(HOST_DIR) $(BINARIES_DIR)
Jon Nelsonc79e9982002-01-05 20:26:15 +0000450
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200451################################################################################
Eric Andersen08782ae2002-04-26 11:45:55 +0000452#
Eric Andersenef407d32004-01-29 23:21:00 +0000453# staging and target directories do NOT list these as
Mike Frysingerd99c31c2006-05-26 01:18:09 +0000454# dependencies anywhere else
Eric Andersen08782ae2002-04-26 11:45:55 +0000455#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200456################################################################################
Arnout Vandecappellee0c60672014-03-17 09:22:33 +0100457$(BUILD_DIR) $(HOST_DIR) $(BINARIES_DIR) $(LEGAL_INFO_DIR) $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST):
Bernhard Reutner-Fischer8d583fc2007-01-30 00:58:18 +0000458 @mkdir -p $@
Manuel Novoa III 3ad3d8a2004-09-03 00:49:43 +0000459
Samuel Martin56287762013-08-23 00:59:35 +0200460# We make a symlink lib32->lib or lib64->lib as appropriate
461# MIPS64/n32 requires lib32 even though it's a 64-bit arch.
462ifeq ($(BR2_ARCH_IS_64)$(BR2_MIPS_NABI32),y)
463LIB_SYMLINK = lib64
464else
465LIB_SYMLINK = lib32
466endif
467
Eric Andersen08782ae2002-04-26 11:45:55 +0000468$(STAGING_DIR):
"Steven J. Hill"9c865d72007-05-07 03:56:47 +0000469 @mkdir -p $(STAGING_DIR)/bin
Eric Andersenbf387232004-12-11 10:35:18 +0000470 @mkdir -p $(STAGING_DIR)/lib
Samuel Martin56287762013-08-23 00:59:35 +0200471 @ln -snf lib $(STAGING_DIR)/$(LIB_SYMLINK)
Bernhard Reutner-Fischer80277842007-06-20 11:26:36 +0000472 @mkdir -p $(STAGING_DIR)/usr/lib
Samuel Martin56287762013-08-23 00:59:35 +0200473 @ln -snf lib $(STAGING_DIR)/usr/$(LIB_SYMLINK)
Bernhard Reutner-Fischer80277842007-06-20 11:26:36 +0000474 @mkdir -p $(STAGING_DIR)/usr/include
Thomas Petazzonia05c3372010-02-09 22:44:15 +0100475 @mkdir -p $(STAGING_DIR)/usr/bin
Gustavo Zacarias5ad139e2010-12-31 08:39:05 -0300476 @ln -snf $(STAGING_DIR) $(BASE_DIR)/staging
Eric Andersen08782ae2002-04-26 11:45:55 +0000477
Dmytro Milinevskyy2b3a43f2010-06-16 23:25:56 +0300478ifeq ($(BR2_ROOTFS_SKELETON_CUSTOM),y)
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200479TARGET_SKELETON = $(BR2_ROOTFS_SKELETON_CUSTOM_PATH)
Dmytro Milinevskyy2b3a43f2010-06-16 23:25:56 +0300480endif
481
Thomas De Schampheleire7ad28652013-11-07 11:41:22 +0100482RSYNC_VCS_EXCLUSIONS = \
483 --exclude .svn --exclude .git --exclude .hg --exclude .bzr \
484 --exclude CVS
485
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200486$(BUILD_DIR)/.root:
Bernhard Reutner-Fischer7547c7e2007-08-21 10:53:39 +0000487 mkdir -p $(TARGET_DIR)
Danomi Manchego2f865402013-06-07 21:43:42 -0400488 rsync -a --ignore-times $(RSYNC_VCS_EXCLUSIONS) \
Nathan Lynch5f52d7a2014-01-28 21:11:21 +0100489 --chmod=Du+w --exclude .empty --exclude '*~' \
Peter Korsgaard13c07c72013-03-26 08:33:18 +0100490 $(TARGET_SKELETON)/ $(TARGET_DIR)/
Yann E. MORIN984524f2014-01-28 21:11:25 +0100491 $(INSTALL) -m 0644 support/misc/target-dir-warning.txt $(TARGET_DIR_WARNING_FILE)
Thomas Petazzoni6f1882d2013-09-15 21:28:45 +0200492 @ln -snf lib $(TARGET_DIR)/$(LIB_SYMLINK)
Samuel Martin56287762013-08-23 00:59:35 +0200493 @mkdir -p $(TARGET_DIR)/usr
Thomas Petazzoni6f1882d2013-09-15 21:28:45 +0200494 @ln -snf lib $(TARGET_DIR)/usr/$(LIB_SYMLINK)
Bernhard Reutner-Fischer7547c7e2007-08-21 10:53:39 +0000495 touch $@
Eric Andersenffde94b2001-12-22 00:56:11 +0000496
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200497$(TARGET_DIR): $(BUILD_DIR)/.root
Ulf Samuelssonc6771df2007-08-16 05:44:55 +0000498
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000499STRIP_FIND_CMD = find $(TARGET_DIR)
500ifneq (,$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS)))
501STRIP_FIND_CMD += \( $(call finddirclauses,$(TARGET_DIR),$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) \) -prune -o
502endif
Thomas Petazzoni12d15072014-02-04 16:36:18 +0100503STRIP_FIND_CMD += -type f \( -perm /111 -o -name '*.so*' \)
Thomas De Schampheleire06635912014-04-30 21:29:02 +0200504# file exclusions:
505# - libpthread.so: a non-stripped libpthread shared library is needed for
506# proper debugging of pthread programs using gdb.
507# - kernel modules (*.ko): do not function properly when stripped like normal
508# applications and libraries. Normally kernel modules are already excluded
509# by the executable permission check above, so the explicit exclusion is only
510# done for kernel modules with incorrect permissions.
511STRIP_FIND_CMD += -not \( $(call findfileclauses,libpthread*.so* *.ko $(call qstrip,$(BR2_STRIP_EXCLUDE_FILES))) \) -print
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000512
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200513ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
514LOCALE_WHITELIST = $(BUILD_DIR)/locales.nopurge
515LOCALE_NOPURGE = $(call qstrip,$(BR2_ENABLE_LOCALE_WHITELIST))
516
517define TARGET_PURGE_LOCALES
518 rm -f $(LOCALE_WHITELIST)
519 for i in $(LOCALE_NOPURGE); do echo $$i >> $(LOCALE_WHITELIST); done
520
521 for dir in $(wildcard $(addprefix $(TARGET_DIR),/usr/share/locale /usr/share/X11/locale /usr/man /usr/share/man /usr/lib/locale)); \
522 do \
523 for lang in $$(cd $$dir; ls .|grep -v man); \
524 do \
525 grep -qx $$lang $(LOCALE_WHITELIST) || rm -rf $$dir/$$lang; \
526 done; \
527 done
528endef
529endif
530
Fabio Porceddad4c0c642014-02-20 15:26:18 +0100531$(TARGETS_ROOTFS): target-finalize
532
Fabio Porceddaa2487752014-02-14 10:55:06 +0100533target-finalize: $(TARGETS)
Thomas De Schampheleire6f6a2cf2014-05-12 16:19:27 +0200534 @$(call MESSAGE,"Finalizing target directory")
Fabio Porcedda58d82dd2014-04-29 17:32:34 +0200535 $(TARGET_PURGE_LOCALES)
Valentine Barshak94d3aa12012-10-02 08:52:15 +0000536 rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/share/aclocal \
Luca Ceresolidf99efb2013-03-06 07:14:26 +0000537 $(TARGET_DIR)/usr/lib/pkgconfig $(TARGET_DIR)/usr/share/pkgconfig \
538 $(TARGET_DIR)/usr/lib/cmake $(TARGET_DIR)/usr/share/cmake
539 find $(TARGET_DIR)/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f
Wade Berrier027aa1d2009-04-28 17:33:44 +0000540 find $(TARGET_DIR)/lib \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
541 find $(TARGET_DIR)/usr/lib \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
Malte Starostike48a72e2010-07-24 21:29:56 +0200542ifneq ($(BR2_PACKAGE_GDB),y)
543 rm -rf $(TARGET_DIR)/usr/share/gdb
544endif
Peter Korsgaard32faf352009-04-07 21:04:31 +0000545 rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/man
Peter Korsgaard32faf352009-04-07 21:04:31 +0000546 rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info
Thomas Petazzoni87b06372010-04-10 22:42:45 +0200547 rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc
Paulius Zaleckasd701a822010-05-05 13:09:36 +0300548 rm -rf $(TARGET_DIR)/usr/share/gtk-doc
Mike Frysinger68ad6d42010-11-18 16:25:58 -0500549 -rmdir $(TARGET_DIR)/usr/share 2>/dev/null
Thomas Petazzoni88b63822014-02-13 21:48:55 +0100550ifeq ($(BR2_PACKAGE_PYTHON_PY_ONLY)$(BR2_PACKAGE_PYTHON3_PY_ONLY),y)
Thomas Petazzonib0c86bc2011-01-11 21:44:29 +0100551 find $(TARGET_DIR)/usr/lib/ -name '*.pyc' -print0 | xargs -0 rm -f
552endif
Thomas Petazzoni88b63822014-02-13 21:48:55 +0100553ifeq ($(BR2_PACKAGE_PYTHON_PYC_ONLY)$(BR2_PACKAGE_PYTHON3_PYC_ONLY),y)
Thomas Petazzonib0c86bc2011-01-11 21:44:29 +0100554 find $(TARGET_DIR)/usr/lib/ -name '*.py' -print0 | xargs -0 rm -f
555endif
Francois Perrad72afb292014-01-11 16:42:07 +0100556 rm -rf $(TARGET_DIR)/usr/lib/luarocks
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000557 $(STRIP_FIND_CMD) | xargs $(STRIPCMD) 2>/dev/null || true
Peter Korsgaardf627ebe2013-08-26 00:34:45 +0200558 if test -d $(TARGET_DIR)/lib/modules; then \
Thomas Petazzonifde26052013-08-20 13:03:02 +0200559 find $(TARGET_DIR)/lib/modules -type f -name '*.ko' | \
Peter Korsgaardf627ebe2013-08-26 00:34:45 +0200560 xargs -r $(KSTRIPCMD); fi
Mike Frysinger8101c9a2010-11-17 18:55:43 -0500561
Richard Braun6ae78862012-11-20 07:18:11 +0000562# See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads
563# besides the one in which crash occurred; or SIGTRAP kills my program when
564# I set a breakpoint"
565ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
566 find $(TARGET_DIR)/lib -type f -name 'libpthread*.so*' | \
Thomas Petazzoni52e70732013-08-20 13:03:03 +0200567 xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG)
Richard Braun6ae78862012-11-20 07:18:11 +0000568endif
569
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200570 mkdir -p $(TARGET_DIR)/etc
571 # Mandatory configuration file and auxilliary cache directory
572 # for recent versions of ldconfig
573 touch $(TARGET_DIR)/etc/ld.so.conf
574 mkdir -p $(TARGET_DIR)/var/cache/ldconfig
Peter Korsgaarde49e2fe2010-07-26 23:53:37 +0200575 if [ -x "$(TARGET_CROSS)ldconfig" ]; \
576 then \
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200577 $(TARGET_CROSS)ldconfig -r $(TARGET_DIR); \
Peter Korsgaarde49e2fe2010-07-26 23:53:37 +0200578 else \
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200579 /sbin/ldconfig -r $(TARGET_DIR); \
Peter Korsgaarde49e2fe2010-07-26 23:53:37 +0200580 fi
Peter Korsgaard451a8872012-02-14 12:58:25 +0100581 ( \
582 echo "NAME=Buildroot"; \
583 echo "VERSION=$(BR2_VERSION_FULL)"; \
584 echo "ID=buildroot"; \
585 echo "VERSION_ID=$(BR2_VERSION)"; \
586 echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \
587 ) > $(TARGET_DIR)/etc/os-release
Peter Korsgaard912ea812009-09-30 17:40:24 +0200588
Luca Ceresolie9b77122013-04-08 06:50:16 +0000589 @$(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \
590 $(call MESSAGE,"Copying overlay $(d)"); \
Peter Korsgaard99e82b02014-02-04 17:55:33 +0100591 rsync -a --ignore-times $(RSYNC_VCS_EXCLUSIONS) \
Nathan Lynch5f52d7a2014-01-28 21:11:21 +0100592 --chmod=Du+w --exclude .empty --exclude '*~' \
Luca Ceresolie9b77122013-04-08 06:50:16 +0000593 $(d)/ $(TARGET_DIR)$(sep))
Arnout Vandecappelle (Essensium/Mind)7f860892013-02-05 07:16:00 +0000594
Philippe Reynesdbf49782012-11-17 13:01:22 +0100595 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \
Luca Ceresoli1b9b1682013-04-08 06:50:14 +0000596 $(call MESSAGE,"Executing post-build script $(s)"); \
Yann E. MORIN9806bf52014-03-10 21:51:33 +0100597 $(EXTRA_ENV) $(s) $(TARGET_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Daniel Mackeed7d872009-07-08 22:46:58 +0200598
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000599ifneq ($(GENERATE_LOCALE),)
600# Generate locale data. Basically, we call the localedef program
601# (built by the host-localedef package) for each locale. The input
602# data comes preferably from the toolchain, or if the toolchain does
603# not have them (Linaro toolchains), we use the ones available on the
604# host machine.
Fabio Porcedda1990e792014-04-18 15:07:32 +0200605target-generatelocales: host-localedef toolchain
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000606 $(Q)mkdir -p $(TARGET_DIR)/usr/lib/locale/
607 $(Q)for locale in $(GENERATE_LOCALE) ; do \
tbultelea27d6e2013-09-20 10:35:46 +0200608 inputfile=`echo $${locale} | cut -f1 -d'.'` ; \
Arnout Vandecappelle8e2696e2013-08-22 07:43:58 +0200609 charmap=`echo $${locale} | cut -f2 -d'.' -s` ; \
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000610 if test -z "$${charmap}" ; then \
611 charmap="UTF-8" ; \
612 fi ; \
613 echo "Generating locale $${inputfile}.$${charmap}" ; \
614 I18NPATH=$(STAGING_DIR)/usr/share/i18n:/usr/share/i18n \
615 $(HOST_DIR)/usr/bin/localedef \
616 --prefix=$(TARGET_DIR) \
Thierry Bultel6fb546c2013-11-10 18:32:52 +0100617 --$(call LOWERCASE,$(BR2_ENDIAN))-endian \
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000618 -i $${inputfile} -f $${charmap} \
619 $${locale} ; \
620 done
621endif
622
Thomas Petazzonifbb3b862014-02-28 21:05:27 +0100623target-post-image: $(TARGETS_ROOTFS) target-finalize
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000624 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_IMAGE_SCRIPT)), \
Luca Ceresoli6d90a692013-04-08 06:50:15 +0000625 $(call MESSAGE,"Executing post-image script $(s)"); \
Yann E. MORIN9806bf52014-03-10 21:51:33 +0100626 $(EXTRA_ENV) $(s) $(BINARIES_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000627
Fabio Porceddad174c6f2014-04-18 15:07:31 +0200628toolchain-eclipse-register: toolchain
Thomas Petazzoni217ef082013-01-13 04:52:13 +0000629 ./support/scripts/eclipse-register-toolchain `readlink -f $(O)` $(notdir $(TARGET_CROSS)) $(BR2_ARCH)
630
Fabio Porceddab94266c2014-03-07 10:31:19 +0100631source: $(TARGETS_SOURCE) $(HOST_SOURCE)
Eric Andersenffde94b2001-12-22 00:56:11 +0000632
Peter Korsgaard155971e2008-03-04 12:19:16 +0000633external-deps:
Peter Korsgaard879058a2013-12-16 13:49:28 +0100634 @$(MAKE1) -Bs DL_MODE=SHOW_EXTERNAL_DEPS $(EXTRAMAKEARGS) source | sort -u
Peter Korsgaard155971e2008-03-04 12:19:16 +0000635
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200636legal-info-clean:
637 @rm -fr $(LEGAL_INFO_DIR)
638
639legal-info-prepare: $(LEGAL_INFO_DIR)
640 @$(call MESSAGE,"Collecting legal info")
Thomas De Schampheleire366f17f2013-11-12 09:47:58 +0100641 @$(call legal-license-file,buildroot,COPYING,COPYING,HOST)
Thomas De Schampheleirecc4f34d2013-11-12 09:47:57 +0100642 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,TARGET)
643 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,HOST)
644 @$(call legal-manifest,buildroot,$(BR2_VERSION_FULL),GPLv2+,COPYING,not saved,HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200645 @$(call legal-warning,the Buildroot source code has not been saved)
646 @$(call legal-warning,the toolchain has not been saved)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100647 @cp $(BR2_CONFIG) $(LEGAL_INFO_DIR)/buildroot.config
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200648
Thomas De Schampheleire858334c2013-11-12 09:47:59 +0100649legal-info: dirs legal-info-clean legal-info-prepare $(TARGETS_LEGAL_INFO) \
650 $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200651 @cat support/legal-info/README.header >>$(LEGAL_REPORT)
652 @if [ -r $(LEGAL_WARNINGS) ]; then \
653 cat support/legal-info/README.warnings-header \
654 $(LEGAL_WARNINGS) >>$(LEGAL_REPORT); \
655 cat $(LEGAL_WARNINGS); fi
656 @echo "Legal info produced in $(LEGAL_INFO_DIR)"
657 @rm -f $(LEGAL_WARNINGS)
658
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200659show-targets:
Fabio Porceddab9f05432014-04-23 10:39:24 +0200660 @echo $(HOST_DEPS) $(TARGETS_HOST_DEPS) $(TARGETS) $(TARGETS_ROOTFS)
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200661
Yann E. MORINe16bf922013-12-28 18:39:11 +0100662graph-build: $(O)/build/build-time.log
663 @install -d $(O)/graphs
664 $(foreach o,name build duration,./support/scripts/graph-build-time \
665 --type=histogram --order=$(o) --input=$(<) \
Yann E. MORIN22d05902014-04-13 22:42:37 +0200666 --output=$(O)/graphs/build.hist-$(o).$(BR_GRAPH_OUT) \
Yann E. MORIN8ae78382014-02-23 16:59:11 +0100667 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
Yann E. MORINe16bf922013-12-28 18:39:11 +0100668 $(foreach t,packages steps,./support/scripts/graph-build-time \
669 --type=pie-$(t) --input=$(<) \
Yann E. MORIN22d05902014-04-13 22:42:37 +0200670 --output=$(O)/graphs/build.pie-$(t).$(BR_GRAPH_OUT) \
Yann E. MORIN8ae78382014-02-23 16:59:11 +0100671 $(if $(BR2_GRAPH_ALT),--alternate-colors)$(sep))
Yann E. MORINe16bf922013-12-28 18:39:11 +0100672
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100673graph-depends:
674 @$(INSTALL) -d $(O)/graphs
Yann E. MORIN56eb3942014-01-07 23:46:04 +0100675 @cd "$(CONFIG_DIR)"; \
Yann E. MORIN287a8822014-05-16 23:05:13 +0200676 $(TOPDIR)/support/scripts/graph-depends $(BR2_GRAPH_DEPS_OPTS) \
Yann E. MORIN994fcc42014-04-19 22:17:08 +0200677 |tee $(O)/graphs/$(@).dot \
Yann E. MORIN22d05902014-04-13 22:42:37 +0200678 |dot -T$(BR_GRAPH_OUT) -o $(O)/graphs/$(@).$(BR_GRAPH_OUT)
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100679
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000680else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersen2d523c22004-10-09 01:06:03 +0000681
682all: menuconfig
683
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000684endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
685
Eric Andersen2d523c22004-10-09 01:06:03 +0000686# configuration
687# ---------------------------------------------------------------------------
688
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200689HOSTCFLAGS = $(CFLAGS_FOR_BUILD)
Bernhard Reutner-Fischerc0d7d4e2007-07-09 18:23:20 +0000690export HOSTCFLAGS
691
Peter Korsgaard2cc210c2010-06-20 23:05:32 +0200692$(BUILD_DIR)/buildroot-config/%onf:
693 mkdir -p $(@D)/lxdialog
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100694 $(MAKE) CC="$(HOSTCC_NOCCACHE)" HOSTCC="$(HOSTCC_NOCCACHE)" obj=$(@D) -C $(CONFIG) -f Makefile.br $(@F)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200695
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000696DEFCONFIG = $(call qstrip,$(BR2_DEFCONFIG))
697
698# We don't want to fully expand BR2_DEFCONFIG here, so Kconfig will
699# recognize that if it's still at its default $(CONFIG_DIR)/defconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200700COMMON_CONFIG_ENV = \
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000701 BR2_DEFCONFIG='$(call qstrip,$(value BR2_DEFCONFIG))' \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200702 KCONFIG_AUTOCONFIG=$(BUILD_DIR)/buildroot-config/auto.conf \
703 KCONFIG_AUTOHEADER=$(BUILD_DIR)/buildroot-config/autoconf.h \
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200704 KCONFIG_TRISTATE=$(BUILD_DIR)/buildroot-config/tristate.config \
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100705 BR2_CONFIG=$(BR2_CONFIG) \
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100706 BR2_EXTERNAL=$(BR2_EXTERNAL)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200707
Yann E. MORINaefad532010-09-26 10:56:12 +0200708xconfig: $(BUILD_DIR)/buildroot-config/qconf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000709 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard610255e2010-11-24 15:30:54 +0100710 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200711
Yann E. MORINaefad532010-09-26 10:56:12 +0200712gconfig: $(BUILD_DIR)/buildroot-config/gconf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000713 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard610255e2010-11-24 15:30:54 +0100714 @$(COMMON_CONFIG_ENV) srctree=$(TOPDIR) $< $(CONFIG_CONFIG_IN)
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200715
Yann E. MORINaefad532010-09-26 10:56:12 +0200716menuconfig: $(BUILD_DIR)/buildroot-config/mconf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000717 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard610255e2010-11-24 15:30:54 +0100718 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000719
Yann E. MORINaefad532010-09-26 10:56:12 +0200720nconfig: $(BUILD_DIR)/buildroot-config/nconf outputmakefile
Thomas Petazzoni8b6585a2010-08-21 17:21:40 +0200721 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard610255e2010-11-24 15:30:54 +0100722 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000723
Yann E. MORINaefad532010-09-26 10:56:12 +0200724config: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000725 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200726 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000727
Yann E. MORINaefad532010-09-26 10:56:12 +0200728oldconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000729 mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200730 @$(COMMON_CONFIG_ENV) $< --oldconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000731
Yann E. MORINaefad532010-09-26 10:56:12 +0200732randconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000733 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200734 @$(COMMON_CONFIG_ENV) $< --randconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000735
Yann E. MORINaefad532010-09-26 10:56:12 +0200736allyesconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000737 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200738 @$(COMMON_CONFIG_ENV) $< --allyesconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000739
Yann E. MORINaefad532010-09-26 10:56:12 +0200740allnoconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000741 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200742 @$(COMMON_CONFIG_ENV) $< --allnoconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000743
Yann E. MORINaefad532010-09-26 10:56:12 +0200744randpackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000745 @mkdir -p $(BUILD_DIR)/buildroot-config
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100746 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard8a46d4b2012-12-01 18:10:46 -0800747 @grep '^config BR2_PACKAGE_' Config.in.legacy | \
748 while read config pkg; do \
749 echo "# $$pkg is not set" >> $(CONFIG_DIR)/.config.nopkg; done
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200750 @$(COMMON_CONFIG_ENV) \
Will Wagner39ca6d52010-01-11 12:28:50 +0000751 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200752 $< --randconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000753 @rm -f $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard66527702009-10-04 21:57:12 +0200754
Yann E. MORINaefad532010-09-26 10:56:12 +0200755allyespackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000756 @mkdir -p $(BUILD_DIR)/buildroot-config
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100757 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard8a46d4b2012-12-01 18:10:46 -0800758 @grep '^config BR2_PACKAGE_' Config.in.legacy | \
759 while read config pkg; do \
760 echo "# $$pkg is not set" >> $(CONFIG_DIR)/.config.nopkg; done
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200761 @$(COMMON_CONFIG_ENV) \
Will Wagner39ca6d52010-01-11 12:28:50 +0000762 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200763 $< --allyesconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000764 @rm -f $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard66527702009-10-04 21:57:12 +0200765
Yann E. MORINaefad532010-09-26 10:56:12 +0200766allnopackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000767 @mkdir -p $(BUILD_DIR)/buildroot-config
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100768 @grep -v BR2_PACKAGE_ $(BR2_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200769 @$(COMMON_CONFIG_ENV) \
Will Wagner39ca6d52010-01-11 12:28:50 +0000770 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200771 $< --allnoconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000772 @rm -f $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard66527702009-10-04 21:57:12 +0200773
Yann E. MORINaefad532010-09-26 10:56:12 +0200774silentoldconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200775 @mkdir -p $(BUILD_DIR)/buildroot-config
776 $(COMMON_CONFIG_ENV) $< --silentoldconfig $(CONFIG_CONFIG_IN)
777
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000778olddefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
779 @mkdir -p $(BUILD_DIR)/buildroot-config
780 $(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN)
781
Yann E. MORINaefad532010-09-26 10:56:12 +0200782defconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000783 @mkdir -p $(BUILD_DIR)/buildroot-config
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000784 @$(COMMON_CONFIG_ENV) $< --defconfig$(if $(DEFCONFIG),=$(DEFCONFIG)) $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000785
Yann E. MORINaefad532010-09-26 10:56:12 +0200786%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(TOPDIR)/configs/%_defconfig outputmakefile
Thomas Petazzoni6f381192010-08-11 20:01:23 +0200787 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200788 @$(COMMON_CONFIG_ENV) $< --defconfig=$(TOPDIR)/configs/$@ $(CONFIG_CONFIG_IN)
Thomas Petazzoni6f381192010-08-11 20:01:23 +0200789
Thomas Petazzoniff9d6e32013-12-05 20:11:12 +0100790%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(BR2_EXTERNAL)/configs/%_defconfig outputmakefile
791 @mkdir -p $(BUILD_DIR)/buildroot-config
792 @$(COMMON_CONFIG_ENV) $< --defconfig=$(BR2_EXTERNAL)/configs/$@ $(CONFIG_CONFIG_IN)
793
Yann E. MORINaefad532010-09-26 10:56:12 +0200794savedefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Thomas Petazzonie1b1a182010-08-21 18:50:44 +0200795 @mkdir -p $(BUILD_DIR)/buildroot-config
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000796 @$(COMMON_CONFIG_ENV) $< \
797 --savedefconfig=$(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig) \
798 $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000799
Bernhard Reutner-Fischer6547bce2007-08-22 12:35:41 +0000800# check if download URLs are outdated
Thomas De Schampheleire07bae752012-06-21 19:38:42 +0000801source-check:
Peter Korsgaard879058a2013-12-16 13:49:28 +0100802 $(MAKE1) DL_MODE=SOURCE_CHECK $(EXTRAMAKEARGS) source
Bernhard Reutner-Fischer825ff342007-06-07 12:57:03 +0000803
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000804.PHONY: defconfig savedefconfig
Peter Korsgaard406053d2009-11-20 14:05:48 +0100805
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200806################################################################################
Eric Andersen2d523c22004-10-09 01:06:03 +0000807#
808# Cleanup and misc junk
809#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200810################################################################################
Yann E. MORINaefad532010-09-26 10:56:12 +0200811
812# outputmakefile generates a Makefile in the output directory, if using a
813# separate output directory. This allows convenient use of make in the
814# output directory.
815outputmakefile:
816ifeq ($(NEED_WRAPPER),y)
Thomas Petazzonif082c7c2011-08-31 23:35:02 +0200817 $(Q)$(TOPDIR)/support/scripts/mkmakefile $(TOPDIR) $(O)
Yann E. MORINaefad532010-09-26 10:56:12 +0200818endif
819
Émeric Vigier98b616d2013-05-29 00:41:11 +0200820# printvars prints all the variables currently defined in our Makefiles
821printvars:
822 @$(foreach V, \
823 $(sort $(.VARIABLES)), \
824 $(if $(filter-out environment% default automatic, \
825 $(origin $V)), \
826 $(info $V=$($V) ($(value $V)))))
827
Eric Andersen2d523c22004-10-09 01:06:03 +0000828clean:
Thomas De Schampheleire300eb6b2013-09-30 13:09:27 +0200829 rm -rf $(TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) \
Arnout Vandecappellee0c60672014-03-17 09:22:33 +0100830 $(BUILD_DIR) $(BASE_DIR)/staging \
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200831 $(LEGAL_INFO_DIR)
Eric Andersen2d523c22004-10-09 01:06:03 +0000832
833distclean: clean
Peter Korsgaard406053d2009-11-20 14:05:48 +0100834ifeq ($(DL_DIR),$(TOPDIR)/dl)
835 rm -rf $(DL_DIR)
836endif
837ifeq ($(O),output)
838 rm -rf $(O)
839endif
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +0100840 rm -rf $(BR2_CONFIG) $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/.auto.deps
Eric Andersen2d523c22004-10-09 01:06:03 +0000841
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000842help:
843 @echo 'Cleaning:'
Peter Korsgaard406053d2009-11-20 14:05:48 +0100844 @echo ' clean - delete all files created by build'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000845 @echo ' distclean - delete all non-source files (including .config)'
846 @echo
847 @echo 'Build:'
848 @echo ' all - make world'
Fabio Porcedda2a786412013-01-14 22:02:00 +0000849 @echo ' toolchain - build toolchain'
Stephan Hoffmann040f6a32012-04-06 18:44:22 +0200850 @echo ' <package>-rebuild - force recompile <package>'
851 @echo ' <package>-reconfigure - force reconfigure <package>'
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100852 @echo ' <package>-graph-depends - generate graph of the dependency tree for package'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000853 @echo
854 @echo 'Configuration:'
855 @echo ' menuconfig - interactive curses-based configurator'
Peter Korsgaard15f5bef2011-02-01 08:41:01 +0100856 @echo ' nconfig - interactive ncurses-based configurator'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200857 @echo ' xconfig - interactive Qt-based configurator'
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200858 @echo ' gconfig - interactive GTK-based configurator'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000859 @echo ' oldconfig - resolve any unresolved symbols in .config'
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000860 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
861 @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200862 @echo ' randconfig - New config with random answer to all options'
863 @echo ' defconfig - New config with default answer to all options'
Arnout Vandecappelle33f454b2012-04-28 07:14:50 +0000864 @echo ' BR2_DEFCONFIG, if set, is used as input'
Peter Korsgaardd7051da2010-12-07 12:16:44 +0100865 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200866 @echo ' allyesconfig - New config where all options are accepted with yes'
867 @echo ' allnoconfig - New config where all options are answered with no'
Peter Korsgaard66527702009-10-04 21:57:12 +0200868 @echo ' randpackageconfig - New config with random answer to package options'
869 @echo ' allyespackageconfig - New config where pkg options are accepted with yes'
870 @echo ' allnopackageconfig - New config where package options are answered with no'
Peter Korsgaard4bb33dc2011-04-25 00:10:45 +0200871ifeq ($(BR2_PACKAGE_BUSYBOX),y)
872 @echo ' busybox-menuconfig - Run BusyBox menuconfig'
873endif
874ifeq ($(BR2_LINUX_KERNEL),y)
875 @echo ' linux-menuconfig - Run Linux kernel menuconfig'
Jean-Christophe PLAGNIOL-VILLARDf5777ce2011-08-22 21:28:47 +0200876 @echo ' linux-savedefconfig - Run Linux kernel savedefconfig'
Peter Korsgaard4bb33dc2011-04-25 00:10:45 +0200877endif
878ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
879 @echo ' uclibc-menuconfig - Run uClibc menuconfig'
880endif
Jean-Christophe PLAGNIOL-VILLARD83f1bf92011-08-22 21:28:48 +0200881ifeq ($(BR2_TARGET_BAREBOX),y)
882 @echo ' barebox-menuconfig - Run barebox menuconfig'
883 @echo ' barebox-savedefconfig - Run barebox savedefconfig'
884endif
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000885 @echo
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200886 @echo 'Documentation:'
Thomas De Schampheleire55ecab12013-09-19 12:47:14 +0200887 @echo ' manual - build manual in all formats'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200888 @echo ' manual-html - build manual in HTML'
889 @echo ' manual-split-html - build manual in split HTML'
890 @echo ' manual-pdf - build manual in PDF'
Thomas De Schampheleire462e9912013-10-18 22:31:26 +0200891 @echo ' manual-text - build manual in text'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200892 @echo ' manual-epub - build manual in ePub'
Yann E. MORINe16bf922013-12-28 18:39:11 +0100893 @echo ' graph-build - generate graphs of the build times'
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100894 @echo ' graph-depends - generate graph of the dependency tree'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200895 @echo
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000896 @echo 'Miscellaneous:'
897 @echo ' source - download all sources needed for offline-build'
Thomas De Schampheleire07bae752012-06-21 19:38:42 +0000898 @echo ' source-check - check selected packages for valid download URLs'
Peter Korsgaard155971e2008-03-04 12:19:16 +0000899 @echo ' external-deps - list external packages used'
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200900 @echo ' legal-info - generate info about license compliance'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000901 @echo
Peter Korsgaard15f5bef2011-02-01 08:41:01 +0100902 @echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build'
903 @echo ' make O=dir - Locate all output files in "dir", including .config'
904 @echo
Thomas Petazzoniff9d6e32013-12-05 20:11:12 +0100905 @echo 'Built-in configs:'
Danomi Mocelopolisb9796192011-07-17 22:17:08 +0200906 @$(foreach b, $(sort $(notdir $(wildcard $(TOPDIR)/configs/*_defconfig))), \
Peter Korsgaard58fd7792009-10-04 22:09:25 +0200907 printf " %-35s - Build for %s\\n" $(b) $(b:_defconfig=);)
Thomas Petazzoniff9d6e32013-12-05 20:11:12 +0100908ifneq ($(wildcard $(BR2_EXTERNAL)/configs/*_defconfig),)
909 @echo
910 @echo 'User-provided configs:'
911 @$(foreach b, $(sort $(notdir $(wildcard $(BR2_EXTERNAL)/configs/*_defconfig))), \
912 printf " %-35s - Build for %s\\n" $(b) $(b:_defconfig=);)
913endif
Peter Korsgaard58fd7792009-10-04 22:09:25 +0200914 @echo
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200915 @echo 'See docs/README, or generate the Buildroot manual for further details'
Bernhard Reutner-Fischer663dee42007-08-27 21:40:42 +0000916 @echo
Bernhard Reutner-Fischerba2e7e02007-06-25 10:56:13 +0000917
Fabio Porceddac3e49d62014-04-23 10:39:23 +0200918release: OUT = buildroot-$(BR2_VERSION)
Peter Korsgaard0dca7062010-11-04 00:00:00 +0100919
Peter Korsgaard134ab1c2012-02-03 22:03:29 +0100920# Create release tarballs. We need to fiddle a bit to add the generated
921# documentation to the git output
Peter Korsgaard0dca7062010-11-04 00:00:00 +0100922release:
Peter Korsgaardc6715b62013-09-17 13:42:07 +0200923 git archive --format=tar --prefix=$(OUT)/ HEAD > $(OUT).tar
Thomas De Schampheleire462e9912013-10-18 22:31:26 +0200924 $(MAKE) O=$(OUT) manual-html manual-text manual-pdf
Peter Korsgaard134ab1c2012-02-03 22:03:29 +0100925 tar rf $(OUT).tar $(OUT)
926 gzip -9 -c < $(OUT).tar > $(OUT).tar.gz
927 bzip2 -9 -c < $(OUT).tar > $(OUT).tar.bz2
928 rm -rf $(OUT) $(OUT).tar
Peter Korsgaarde62d2ec2009-01-15 19:36:06 +0000929
Arnout Vandecappelle (Essensium/Mind)2b91ab72012-03-11 12:16:39 +0100930print-version:
931 @echo $(BR2_VERSION_FULL)
932
Thomas Petazzonib7285d02012-04-17 16:45:22 +0200933include docs/manual/manual.mk
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200934
Peter Korsgaard66527702009-10-04 21:57:12 +0200935.PHONY: $(noconfig_targets)