blob: d05c5844a9db455818157d0327c8c0e4c1c84bad [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>
Eric Andersenffde94b2001-12-22 00:56:11 +00005#
Eric Andersen08782ae2002-04-26 11:45:55 +00006# This program is free software; you can redistribute it and/or modify
Eric Andersen2d523c22004-10-09 01:06:03 +00007# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
Eric Andersenffde94b2001-12-22 00:56:11 +000010#
Eric Andersen2d523c22004-10-09 01:06:03 +000011# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
Eric Andersen08782ae2002-04-26 11:45:55 +000013# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Eric Andersen2d523c22004-10-09 01:06:03 +000014# General Public License for more details.
Peter Korsgaardb30d6732009-01-26 19:42:47 +000015#
Eric Andersen2d523c22004-10-09 01:06:03 +000016# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19#
Eric Andersenffde94b2001-12-22 00:56:11 +000020
Eric Andersen2d523c22004-10-09 01:06:03 +000021#--------------------------------------------------------------
22# Just run 'make menuconfig', configure stuff, then run 'make'.
23# You shouldn't need to mess with anything beyond this point...
24#--------------------------------------------------------------
Yann E. MORIN2d239bb2010-10-31 17:35:09 +010025
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010026# Set and export the version string
Peter Korsgaardd1476d02013-11-13 00:20:39 +010027export BR2_VERSION:=2014.02-git
Yann E. MORINe5e8fae2010-10-31 17:35:10 +010028
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +010029# Check for minimal make version (note: this check will break at make 10.x)
30MIN_MAKE_VERSION=3.81
Peter Korsgaard8139e212012-02-09 22:58:05 +010031ifneq ($(firstword $(sort $(MAKE_VERSION) $(MIN_MAKE_VERSION))),$(MIN_MAKE_VERSION))
Thomas De Schampheleire0edfb242012-02-08 17:22:17 +010032$(error You have make '$(MAKE_VERSION)' installed. GNU make >= $(MIN_MAKE_VERSION) is required)
33endif
34
Francois Perrad1d4104f2012-07-18 15:59:09 +020035export HOSTARCH := $(shell uname -m | \
36 sed -e s/i.86/x86/ \
37 -e s/sun4u/sparc64/ \
38 -e s/arm.*/arm/ \
39 -e s/sa110/arm/ \
40 -e s/ppc64/powerpc/ \
41 -e s/ppc/powerpc/ \
42 -e s/macppc/powerpc/\
43 -e s/sh.*/sh/)
44
Yann E. MORIN2d239bb2010-10-31 17:35:09 +010045# This top-level Makefile can *not* be executed in parallel
46.NOTPARALLEL:
47
Peter Korsgaard6b1dd452009-11-30 17:29:01 +010048# absolute path
49TOPDIR:=$(shell pwd)
Bernhard Reutner-Fischer18d979c2007-09-01 18:21:09 +000050CONFIG_CONFIG_IN=Config.in
Thomas Petazzoni56da3852011-08-31 23:35:05 +020051CONFIG=support/kconfig
Ulf Samuelssona8ee1242008-05-11 06:55:04 +000052DATE:=$(shell date +%Y%m%d)
Eric Andersen2d523c22004-10-09 01:06:03 +000053
Yann E. MORIN8258df22010-10-31 17:35:12 +010054# Compute the full local version string so packages can use it as-is
55# Need to export it, so it can be got from environment in children (eg. mconf)
Thomas Petazzonif082c7c2011-08-31 23:35:02 +020056export BR2_VERSION_FULL:=$(BR2_VERSION)$(shell $(TOPDIR)/support/scripts/setlocalversion)
Yann E. MORIN8258df22010-10-31 17:35:12 +010057
Thomas Petazzoni8b6585a2010-08-21 17:21:40 +020058noconfig_targets:=menuconfig nconfig gconfig xconfig config oldconfig randconfig \
Yann E. MORIN063f4ee2013-12-27 00:04:29 +010059 defconfig %_defconfig allyesconfig allnoconfig silentoldconfig release \
Peter Korsgaard66527702009-10-04 21:57:12 +020060 randpackageconfig allyespackageconfig allnopackageconfig \
Thomas Petazzoni9db3b472013-04-04 11:24:25 +000061 source-check print-version olddefconfig
Bernhard Reutner-Fischer9e250352006-12-02 19:01:10 +000062
Thomas Petazzoni580c6d92009-07-30 17:26:49 +020063# Strip quotes and then whitespaces
64qstrip=$(strip $(subst ",,$(1)))
65#"))
66
Peter Korsgaardf85f2de2009-01-25 20:19:01 +000067# Variables for use in Make constructs
68comma:=,
69empty:=
70space:=$(empty) $(empty)
71
Will Wagner39ca6d52010-01-11 12:28:50 +000072ifneq ("$(origin O)", "command line")
73O:=output
74CONFIG_DIR:=$(TOPDIR)
Yann E. MORINaefad532010-09-26 10:56:12 +020075NEED_WRAPPER=
Will Wagner39ca6d52010-01-11 12:28:50 +000076else
77# other packages might also support Linux-style out of tree builds
78# with the O=<dir> syntax (E.G. Busybox does). As make automatically
79# forwards command line variable definitions those packages get very
80# confused. Fix this by telling make to not do so
81MAKEOVERRIDES =
82# strangely enough O is still passed to submakes with MAKEOVERRIDES
83# (with make 3.81 atleast), the only thing that changes is the output
84# of the origin function (command line -> environment).
85# Unfortunately some packages don't look at origin (E.G. uClibc 0.9.31+)
86# To really make O go away, we have to override it.
87override O:=$(O)
88CONFIG_DIR:=$(O)
Peter Korsgaardde846f62010-08-29 23:24:07 +020089# we need to pass O= everywhere we call back into the toplevel makefile
90EXTRAMAKEARGS = O=$(O)
Yann E. MORINaefad532010-09-26 10:56:12 +020091NEED_WRAPPER=y
Will Wagner39ca6d52010-01-11 12:28:50 +000092endif
93
Thomas De Schampheleirebb335172013-10-02 22:06:40 +020094# bash prints the name of the directory on 'cd <dir>' if CDPATH is
95# set, so unset it here to not cause problems. Notice that the export
96# line doesn't affect the environment of $(shell ..) calls, so
97# explictly throw away any output from 'cd' here.
98export CDPATH:=
99BASE_DIR := $(shell mkdir -p $(O) && cd $(O) >/dev/null && pwd)
100$(if $(BASE_DIR),, $(error output directory "$(O)" does not exist))
101
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100102
103# Handling of BR2_EXTERNAL.
104#
105# The value of BR2_EXTERNAL is stored in .br-external in the output directory.
106# On subsequent invocations of make, it is read in. It can still be overridden
107# on the command line, therefore the file is re-created every time make is run.
108#
109# When BR2_EXTERNAL is not set, the .br-external file is removed and we point
110# to support/dummy-external. This makes sure we can unconditionally include the
111# Config.in and external.mk from the BR2_EXTERNAL directory. In this case,
112# override is necessary so the user can clear BR2_EXTERNAL from the command
113# line, but the dummy path is still used internally.
114
115BR2_EXTERNAL_FILE = $(BASE_DIR)/.br-external
116-include $(BR2_EXTERNAL_FILE)
117ifeq ($(BR2_EXTERNAL),)
118 override BR2_EXTERNAL = support/dummy-external
119 $(shell rm -f $(BR2_EXTERNAL_FILE))
120else
121 $(shell echo BR2_EXTERNAL ?= $(BR2_EXTERNAL) > $(BR2_EXTERNAL_FILE))
122endif
123
Yann E. MORINf1fedbb2013-12-28 18:39:13 +0100124# Need that early, before we scan packages
125# Avoids doing the $(or...) everytime
126BR2_GRAPH_OUT := $(or $(GRAPH_OUT),pdf)
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100127
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200128BUILD_DIR:=$(BASE_DIR)/build
129STAMP_DIR:=$(BASE_DIR)/stamps
130BINARIES_DIR:=$(BASE_DIR)/images
131TARGET_DIR:=$(BASE_DIR)/target
132# initial definition so that 'make clean' works for most users, even without
133# .config. HOST_DIR will be overwritten later when .config is included.
134HOST_DIR:=$(BASE_DIR)/host
135
136LEGAL_INFO_DIR=$(BASE_DIR)/legal-info
Thomas De Schampheleire858334c2013-11-12 09:47:59 +0100137REDIST_SOURCES_DIR_TARGET=$(LEGAL_INFO_DIR)/sources
138REDIST_SOURCES_DIR_HOST=$(LEGAL_INFO_DIR)/host-sources
Thomas De Schampheleire366f17f2013-11-12 09:47:58 +0100139LICENSE_FILES_DIR_TARGET=$(LEGAL_INFO_DIR)/licenses
140LICENSE_FILES_DIR_HOST=$(LEGAL_INFO_DIR)/host-licenses
Thomas De Schampheleirecc4f34d2013-11-12 09:47:57 +0100141LEGAL_MANIFEST_CSV_TARGET=$(LEGAL_INFO_DIR)/manifest.csv
142LEGAL_MANIFEST_CSV_HOST=$(LEGAL_INFO_DIR)/host-manifest.csv
Thomas De Schampheleire366f17f2013-11-12 09:47:58 +0100143LEGAL_LICENSES_TXT_TARGET=$(LEGAL_INFO_DIR)/licenses.txt
144LEGAL_LICENSES_TXT_HOST=$(LEGAL_INFO_DIR)/host-licenses.txt
Thomas De Schampheleirebb335172013-10-02 22:06:40 +0200145LEGAL_WARNINGS=$(LEGAL_INFO_DIR)/.warnings
146LEGAL_REPORT=$(LEGAL_INFO_DIR)/README
147
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000148BUILDROOT_CONFIG=$(CONFIG_DIR)/.config
149
Ulf Samuelssona1b06512008-03-28 07:31:28 +0000150# Pull in the user's configuration file
151ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
Yann E. MORINdcb79992013-01-13 11:52:21 +0000152-include $(BUILDROOT_CONFIG)
Ulf Samuelsson7521f372007-09-12 04:34:16 +0000153endif
Eric Andersen2d523c22004-10-09 01:06:03 +0000154
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000155# To put more focus on warnings, be less verbose as default
156# Use 'make V=1' to see the full commands
157ifdef V
158 ifeq ("$(origin V)", "command line")
Bernhard Reutner-Fischer18d979c2007-09-01 18:21:09 +0000159 KBUILD_VERBOSE=$(V)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000160 endif
161endif
162ifndef KBUILD_VERBOSE
Bernhard Reutner-Fischer18d979c2007-09-01 18:21:09 +0000163 KBUILD_VERBOSE=0
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000164endif
165
166ifeq ($(KBUILD_VERBOSE),1)
Ulf Samuelsson4df454e2007-07-06 12:19:35 +0000167 quiet=
Bernhard Reutner-Fischer18d979c2007-09-01 18:21:09 +0000168 Q=
Bernhard Reutner-Fischer1669b6e2007-09-22 14:19:22 +0000169ifndef VERBOSE
170 VERBOSE=1
171endif
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000172else
173 quiet=quiet_
Bernhard Reutner-Fischer18d979c2007-09-01 18:21:09 +0000174 Q=@
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000175endif
176
Peter Korsgaard69f85922009-01-01 21:20:35 +0000177# we want bash as shell
178SHELL:=$(shell if [ -x "$$BASH" ]; then echo $$BASH; \
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000179 else if [ -x /bin/bash ]; then echo /bin/bash; \
Bernhard Reutner-Fischer18d979c2007-09-01 18:21:09 +0000180 else echo sh; fi; fi)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000181
Peter Korsgaard69f85922009-01-01 21:20:35 +0000182# kconfig uses CONFIG_SHELL
183CONFIG_SHELL:=$(SHELL)
184
185export SHELL CONFIG_SHELL quiet Q KBUILD_VERBOSE VERBOSE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000186
187ifndef HOSTAR
188HOSTAR:=ar
189endif
190ifndef HOSTAS
191HOSTAS:=as
192endif
193ifndef HOSTCC
194HOSTCC:=gcc
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100195HOSTCC:=$(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000196endif
Mike Frysinger0df02e12011-03-28 03:18:47 -0400197HOSTCC_NOCCACHE:=$(HOSTCC)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000198ifndef HOSTCXX
199HOSTCXX:=g++
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100200HOSTCXX:=$(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000201endif
Mike Frysinger0df02e12011-03-28 03:18:47 -0400202HOSTCXX_NOCCACHE:=$(HOSTCXX)
Bernhard Reutner-Fischer5f975802007-09-28 20:10:22 +0000203ifndef HOSTFC
204HOSTFC:=gfortran
205endif
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000206ifndef HOSTCPP
207HOSTCPP:=cpp
208endif
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000209ifndef HOSTLD
210HOSTLD:=ld
211endif
Ulf Samuelsson0f9c5b12007-07-15 21:54:11 +0000212ifndef HOSTLN
213HOSTLN:=ln
214endif
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000215ifndef HOSTNM
216HOSTNM:=nm
217endif
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100218ifndef HOSTOBJCOPY
219HOSTOBJCOPY:=objcopy
220endif
221ifndef HOSTRANLIB
222HOSTRANLIB:=ranlib
223endif
Peter Korsgaard69f85922009-01-01 21:20:35 +0000224HOSTAR:=$(shell which $(HOSTAR) || type -p $(HOSTAR) || echo ar)
225HOSTAS:=$(shell which $(HOSTAS) || type -p $(HOSTAS) || echo as)
Peter Korsgaard69f85922009-01-01 21:20:35 +0000226HOSTFC:=$(shell which $(HOSTLD) || type -p $(HOSTLD) || echo || which g77 || type -p g77 || echo gfortran)
227HOSTCPP:=$(shell which $(HOSTCPP) || type -p $(HOSTCPP) || echo cpp)
228HOSTLD:=$(shell which $(HOSTLD) || type -p $(HOSTLD) || echo ld)
229HOSTLN:=$(shell which $(HOSTLN) || type -p $(HOSTLN) || echo ln)
230HOSTNM:=$(shell which $(HOSTNM) || type -p $(HOSTNM) || echo nm)
Thomas Petazzonif1f44512013-11-11 17:47:26 +0100231HOSTOBJCOPY:=$(shell which $(HOSTOBJCOPY) || type -p $(HOSTOBJCOPY) || echo objcopy)
232HOSTRANLIB:=$(shell which $(HOSTRANLIB) || type -p $(HOSTRANLIB) || echo ranlib)
Ulf Samuelsson54e93322008-07-06 07:34:41 +0000233
Bernhard Reutner-Fischer5f975802007-09-28 20:10:22 +0000234export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTFC HOSTLD
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100235export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000236
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000237# Make sure pkg-config doesn't look outside the buildroot tree
238unexport PKG_CONFIG_PATH
Charles Manning4f607ed2012-12-02 11:13:04 +0000239unexport PKG_CONFIG_SYSROOT_DIR
Peter Korsgaardbdf472d2013-09-11 14:15:15 +0200240unexport PKG_CONFIG_LIBDIR
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000241
Thomas Petazzoni91123a62012-07-02 04:21:14 +0000242# Having DESTDIR set in the environment confuses the installation
243# steps of some packages.
244unexport DESTDIR
245
Gustavo Zacariasbed61a72013-07-11 11:37:33 -0300246# Causes breakage with packages that needs host-ruby
247unexport RUBYOPT
248
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000249ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersenffde94b2001-12-22 00:56:11 +0000250
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200251################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000252#
253# Hide troublesome environment variables from sub processes
254#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200255################################################################################
Peter Korsgaard2c649042007-06-19 15:19:27 +0000256unexport CROSS_COMPILE
257unexport ARCH
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100258unexport CC
259unexport CXX
260unexport CPP
261unexport CFLAGS
262unexport CXXFLAGS
263unexport GREP_OPTIONS
Nixf5437a62014-01-26 22:58:02 +0000264unexport TAR_OPTIONS
Peter Korsgaard12c9f7d2011-12-12 10:25:50 +0100265unexport CONFIG_SITE
Stephan Hoffmann32314b42012-08-17 13:54:16 +0200266unexport QMAKESPEC
Nathan Lynch20ca0082012-07-10 07:37:22 +0000267unexport TERMINFO
Bernhard Reutner-Fischer7dcbbfb2007-06-02 09:05:40 +0000268
Thomas Petazzoni102a93b2011-08-31 23:35:06 +0200269GNU_HOST_NAME:=$(shell support/gnuconfig/config.guess)
Thomas Petazzoni60281cb2010-04-10 23:17:25 +0200270
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200271################################################################################
Eric Andersen08782ae2002-04-26 11:45:55 +0000272#
Eric Andersen2d523c22004-10-09 01:06:03 +0000273# The list of stuff to build for the target toolchain
274# along with the packages to build for the target.
Eric Andersen08782ae2002-04-26 11:45:55 +0000275#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200276################################################################################
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100277
Thomas Petazzoni8b0905b2013-10-08 20:17:01 +0200278BASE_TARGETS = toolchain
Thomas Petazzonie57e4b92013-06-30 21:29:07 +0200279
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000280TARGETS:=
281
Peter Korsgaard89464a92009-09-30 17:39:44 +0200282# silent mode requested?
283QUIET:=$(if $(findstring s,$(MAKEFLAGS)),-q)
284
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200285# Strip off the annoying quoting
286ARCH:=$(call qstrip,$(BR2_ARCH))
Thomas Petazzoni65e80a02010-04-28 23:40:57 +0200287
Peter Korsgaard891973f2010-10-17 23:32:37 +0200288KERNEL_ARCH:=$(shell echo "$(ARCH)" | sed -e "s/-.*//" \
289 -e s/i.86/i386/ -e s/sun4u/sparc64/ \
Maxime Ripardf59aeca2013-05-06 00:14:55 +0000290 -e s/arcle/arc/ \
Peter Korsgaard8332ffa2013-06-10 14:04:03 +0200291 -e s/arceb/arc/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200292 -e s/arm.*/arm/ -e s/sa110/arm/ \
Thomas Petazzonib90a1032012-10-28 17:40:35 +0100293 -e s/aarch64/arm64/ \
Mike Frysinger871db072011-02-07 00:49:11 -0500294 -e s/bfin/blackfin/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200295 -e s/parisc64/parisc/ \
296 -e s/powerpc64/powerpc/ \
297 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
298 -e s/sh.*/sh/)
299
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200300ZCAT:=$(call qstrip,$(BR2_ZCAT))
301BZCAT:=$(call qstrip,$(BR2_BZCAT))
Allan W. Nielsen177b4b42011-05-10 08:17:05 +0200302XZCAT:=$(call qstrip,$(BR2_XZCAT))
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200303TAR_OPTIONS=$(call qstrip,$(BR2_TAR_OPTIONS)) -xf
Bernhard Reutner-Fischer1dbe6e32007-08-21 17:56:47 +0000304
Gustavo Zacariasa2b4f7f2011-02-02 10:05:56 -0300305# packages compiled for the host go here
306HOST_DIR:=$(call qstrip,$(BR2_HOST_DIR))
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200307
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000308# locales to generate
309GENERATE_LOCALE=$(call qstrip,$(BR2_GENERATE_LOCALE))
310
Thomas Petazzoni6c3e3ad2012-11-03 08:27:58 +0000311TARGET_SKELETON=$(TOPDIR)/system/skeleton
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200312
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000313# Location of a file giving a big fat warning that output/target
314# should not be used as the root filesystem.
315TARGET_DIR_WARNING_FILE=$(TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
316
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100317ifeq ($(BR2_CCACHE),y)
318CCACHE:=$(HOST_DIR)/usr/bin/ccache
Thomas De Schampheleire43329072012-05-16 21:39:28 +0200319BUILDROOT_CACHE_DIR = $(call qstrip,$(BR2_CCACHE_DIR))
320export BUILDROOT_CACHE_DIR
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100321HOSTCC := $(CCACHE) $(HOSTCC)
322HOSTCXX := $(CCACHE) $(HOSTCXX)
323endif
324
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000325# Scripts in support/ or post-build scripts may need to reference
326# these locations, so export them so it is easier to use
327export BUILDROOT_CONFIG
328export TARGET_DIR
329export STAGING_DIR
330export HOST_DIR
331export BINARIES_DIR
Peter Korsgaard1300cb52013-01-14 10:02:29 +0100332export BASE_DIR
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000333
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200334################################################################################
Eric Andersen08782ae2002-04-26 11:45:55 +0000335#
Eric Andersenef407d32004-01-29 23:21:00 +0000336# You should probably leave this stuff alone unless you know
Eric Andersen08782ae2002-04-26 11:45:55 +0000337# what you are doing.
338#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200339################################################################################
Manuel Novoa III d632d422003-11-01 05:34:41 +0000340
Bernhard Reutner-Fischer6547bce2007-08-22 12:35:41 +0000341all: world
Eric Andersenffde94b2001-12-22 00:56:11 +0000342
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000343# Include legacy before the other things, because package .mk files
344# may rely on it.
345ifneq ($(BR2_DEPRECATED),y)
346include Makefile.legacy
347endif
348
Thomas Petazzoni486253d2012-04-17 16:45:23 +0200349include package/Makefile.in
Thomas De Schampheleirea7926682012-02-08 17:22:16 +0100350include support/dependencies/dependencies.mk
351
Eric Andersend06645d2005-02-10 03:06:39 +0000352# We also need the various per-package makefiles, which also add
353# each selected package to TARGETS if that package was selected
354# in the .config file.
Thomas Petazzoni8b0905b2013-10-08 20:17:01 +0200355include toolchain/helpers.mk
356include toolchain/*/*.mk
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000357
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200358# Include the package override file if one has been provided in the
359# configuration.
360PACKAGE_OVERRIDE_FILE=$(call qstrip,$(BR2_PACKAGE_OVERRIDE_FILE))
361ifneq ($(PACKAGE_OVERRIDE_FILE),)
362-include $(PACKAGE_OVERRIDE_FILE)
363endif
364
Jérôme Pouiller741cbcc2013-09-03 10:45:41 +0200365include $(sort $(wildcard package/*/*.mk))
Eric Andersend06645d2005-02-10 03:06:39 +0000366
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100367include boot/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100368include linux/linux.mk
Peter Korsgaardec100c72013-01-09 13:20:05 +0100369include system/system.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100370
Thomas Petazzoni8eb8aaf2013-12-05 20:11:11 +0100371include $(BR2_EXTERNAL)/external.mk
372
Peter Korsgaard32faf352009-04-07 21:04:31 +0000373TARGETS+=target-finalize
John Voltzd45de0c2008-03-11 13:12:39 +0000374
Peter Korsgaardb87b4742009-04-06 09:21:26 +0000375ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
376TARGETS+=target-purgelocales
377endif
378
Thomas Petazzoni381616e2013-06-30 21:29:09 +0200379ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y)
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000380ifneq ($(GENERATE_LOCALE),)
381TARGETS+=target-generatelocales
382endif
383endif
384
Thomas Petazzoni217ef082013-01-13 04:52:13 +0000385ifeq ($(BR2_ECLIPSE_REGISTER),y)
386TARGETS+=toolchain-eclipse-register
387endif
388
Thomas Petazzoni649b5b92010-03-14 18:20:45 +0100389include fs/common.mk
Eric Andersen79f5f1e2005-02-17 03:00:29 +0000390
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000391TARGETS+=target-post-image
392
Bernhard Reutner-Fischer3b08e642007-09-18 13:12:25 +0000393TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS) $(BASE_TARGETS))
Eric Andersen08782ae2002-04-26 11:45:55 +0000394TARGETS_DIRCLEAN:=$(patsubst %,%-dirclean,$(TARGETS))
Bernhard Reutner-Fischerb3efde22007-09-01 17:10:55 +0000395TARGETS_ALL:=$(patsubst %,__real_tgt_%,$(TARGETS))
Peter Korsgaard22c2c6b2010-11-19 14:20:56 +0100396
397# host-* dependencies have to be handled specially, as those aren't
398# visible in Kconfig and hence not added to a variable like TARGETS.
399# instead, find all the host-* targets listed in each <PKG>_DEPENDENCIES
400# variable for each enabled target.
401# Notice: this only works for newstyle gentargets/autotargets packages
402TARGETS_HOST_DEPS = $(sort $(filter host-%,$(foreach dep,\
403 $(addsuffix _DEPENDENCIES,$(call UPPERCASE,$(TARGETS))),\
404 $($(dep)))))
405# Host packages can in turn have their own dependencies. Likewise find
406# all the package names listed in the HOST_<PKG>_DEPENDENCIES for each
407# host package found above. Ideally this should be done recursively until
408# no more packages are found, but that's hard to do in make, so limit to
409# 1 level for now.
410HOST_DEPS = $(sort $(foreach dep,\
411 $(addsuffix _DEPENDENCIES,$(call UPPERCASE,$(TARGETS_HOST_DEPS))),\
412 $($(dep))))
413HOST_SOURCE += $(addsuffix -source,$(sort $(TARGETS_HOST_DEPS) $(HOST_DEPS)))
414
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200415TARGETS_LEGAL_INFO:=$(patsubst %,%-legal-info,\
416 $(TARGETS) $(BASE_TARGETS) $(TARGETS_HOST_DEPS) $(HOST_DEPS))))
417
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000418# all targets depend on the crosscompiler and it's prerequisites
Bernhard Reutner-Fischerb3efde22007-09-01 17:10:55 +0000419$(TARGETS_ALL): __real_tgt_%: $(BASE_TARGETS) %
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000420
Thomas Petazzonid21a1762013-06-30 21:29:06 +0200421dirs: $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
Peter Korsgaardd0880f72012-01-15 20:59:37 +0100422 $(HOST_DIR) $(BINARIES_DIR) $(STAMP_DIR)
Ulf Samuelssonf958d892007-08-14 07:45:01 +0000423
Yann E. MORINdcb79992013-01-13 11:52:21 +0000424$(BUILD_DIR)/buildroot-config/auto.conf: $(BUILDROOT_CONFIG)
Peter Korsgaard879058a2013-12-16 13:49:28 +0100425 $(MAKE1) $(EXTRAMAKEARGS) HOSTCC="$(HOSTCC_NOCCACHE)" HOSTCXX="$(HOSTCXX_NOCCACHE)" silentoldconfig
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200426
427prepare: $(BUILD_DIR)/buildroot-config/auto.conf
428
Thomas Petazzoni8b0905b2013-10-08 20:17:01 +0200429world: $(BASE_TARGETS) $(TARGETS_ALL)
Fabio Porcedda2a786412013-01-14 22:02:00 +0000430
431.PHONY: all world toolchain dirs clean distclean source outputmakefile \
Émeric Vigier98b616d2013-05-29 00:41:11 +0200432 legal-info legal-info-prepare legal-info-clean printvars \
Bernhard Reutner-Fischerb3efde22007-09-01 17:10:55 +0000433 $(BASE_TARGETS) $(TARGETS) $(TARGETS_ALL) \
Thomas De Schampheleire47e82822013-12-07 10:16:48 +0100434 $(TARGETS_DIRCLEAN) $(TARGETS_SOURCE) $(TARGETS_LEGAL_INFO) \
Thomas Petazzonid21a1762013-06-30 21:29:06 +0200435 $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
Peter Korsgaardd0880f72012-01-15 20:59:37 +0100436 $(HOST_DIR) $(BINARIES_DIR) $(STAMP_DIR)
Jon Nelsonc79e9982002-01-05 20:26:15 +0000437
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200438################################################################################
Eric Andersen08782ae2002-04-26 11:45:55 +0000439#
Eric Andersenef407d32004-01-29 23:21:00 +0000440# staging and target directories do NOT list these as
Mike Frysingerd99c31c2006-05-26 01:18:09 +0000441# dependencies anywhere else
Eric Andersen08782ae2002-04-26 11:45:55 +0000442#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200443################################################################################
Thomas De Schampheleire858334c2013-11-12 09:47:59 +0100444$(BUILD_DIR) $(HOST_DIR) $(BINARIES_DIR) $(STAMP_DIR) $(LEGAL_INFO_DIR) $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST):
Bernhard Reutner-Fischer8d583fc2007-01-30 00:58:18 +0000445 @mkdir -p $@
Manuel Novoa III 3ad3d8a2004-09-03 00:49:43 +0000446
Samuel Martin56287762013-08-23 00:59:35 +0200447# We make a symlink lib32->lib or lib64->lib as appropriate
448# MIPS64/n32 requires lib32 even though it's a 64-bit arch.
449ifeq ($(BR2_ARCH_IS_64)$(BR2_MIPS_NABI32),y)
450LIB_SYMLINK = lib64
451else
452LIB_SYMLINK = lib32
453endif
454
Eric Andersen08782ae2002-04-26 11:45:55 +0000455$(STAGING_DIR):
"Steven J. Hill"9c865d72007-05-07 03:56:47 +0000456 @mkdir -p $(STAGING_DIR)/bin
Eric Andersenbf387232004-12-11 10:35:18 +0000457 @mkdir -p $(STAGING_DIR)/lib
Samuel Martin56287762013-08-23 00:59:35 +0200458 @ln -snf lib $(STAGING_DIR)/$(LIB_SYMLINK)
Bernhard Reutner-Fischer80277842007-06-20 11:26:36 +0000459 @mkdir -p $(STAGING_DIR)/usr/lib
Samuel Martin56287762013-08-23 00:59:35 +0200460 @ln -snf lib $(STAGING_DIR)/usr/$(LIB_SYMLINK)
Bernhard Reutner-Fischer80277842007-06-20 11:26:36 +0000461 @mkdir -p $(STAGING_DIR)/usr/include
Thomas Petazzonia05c3372010-02-09 22:44:15 +0100462 @mkdir -p $(STAGING_DIR)/usr/bin
Gustavo Zacarias5ad139e2010-12-31 08:39:05 -0300463 @ln -snf $(STAGING_DIR) $(BASE_DIR)/staging
Eric Andersen08782ae2002-04-26 11:45:55 +0000464
Dmytro Milinevskyy2b3a43f2010-06-16 23:25:56 +0300465ifeq ($(BR2_ROOTFS_SKELETON_CUSTOM),y)
466TARGET_SKELETON=$(BR2_ROOTFS_SKELETON_CUSTOM_PATH)
467endif
468
Thomas De Schampheleire7ad28652013-11-07 11:41:22 +0100469RSYNC_VCS_EXCLUSIONS = \
470 --exclude .svn --exclude .git --exclude .hg --exclude .bzr \
471 --exclude CVS
472
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200473$(BUILD_DIR)/.root:
Bernhard Reutner-Fischer7547c7e2007-08-21 10:53:39 +0000474 mkdir -p $(TARGET_DIR)
Danomi Manchego2f865402013-06-07 21:43:42 -0400475 rsync -a --ignore-times $(RSYNC_VCS_EXCLUSIONS) \
Nathan Lynch5f52d7a2014-01-28 21:11:21 +0100476 --chmod=Du+w --exclude .empty --exclude '*~' \
Peter Korsgaard13c07c72013-03-26 08:33:18 +0100477 $(TARGET_SKELETON)/ $(TARGET_DIR)/
Yann E. MORIN984524f2014-01-28 21:11:25 +0100478 $(INSTALL) -m 0644 support/misc/target-dir-warning.txt $(TARGET_DIR_WARNING_FILE)
Thomas Petazzoni6f1882d2013-09-15 21:28:45 +0200479 @ln -snf lib $(TARGET_DIR)/$(LIB_SYMLINK)
Samuel Martin56287762013-08-23 00:59:35 +0200480 @mkdir -p $(TARGET_DIR)/usr
Thomas Petazzoni6f1882d2013-09-15 21:28:45 +0200481 @ln -snf lib $(TARGET_DIR)/usr/$(LIB_SYMLINK)
Bernhard Reutner-Fischer7547c7e2007-08-21 10:53:39 +0000482 touch $@
Eric Andersenffde94b2001-12-22 00:56:11 +0000483
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200484$(TARGET_DIR): $(BUILD_DIR)/.root
Ulf Samuelssonc6771df2007-08-16 05:44:55 +0000485
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000486STRIP_FIND_CMD = find $(TARGET_DIR)
487ifneq (,$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS)))
488STRIP_FIND_CMD += \( $(call finddirclauses,$(TARGET_DIR),$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) \) -prune -o
489endif
Thomas Petazzoni12d15072014-02-04 16:36:18 +0100490STRIP_FIND_CMD += -type f \( -perm /111 -o -name '*.so*' \)
Richard Braun6ae78862012-11-20 07:18:11 +0000491STRIP_FIND_CMD += -not \( $(call findfileclauses,libpthread*.so* $(call qstrip,$(BR2_STRIP_EXCLUDE_FILES))) \) -print
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000492
Peter Korsgaard32faf352009-04-07 21:04:31 +0000493target-finalize:
Valentine Barshak94d3aa12012-10-02 08:52:15 +0000494 rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/share/aclocal \
Luca Ceresolidf99efb2013-03-06 07:14:26 +0000495 $(TARGET_DIR)/usr/lib/pkgconfig $(TARGET_DIR)/usr/share/pkgconfig \
496 $(TARGET_DIR)/usr/lib/cmake $(TARGET_DIR)/usr/share/cmake
497 find $(TARGET_DIR)/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f
Wade Berrier027aa1d2009-04-28 17:33:44 +0000498 find $(TARGET_DIR)/lib \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
499 find $(TARGET_DIR)/usr/lib \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
Malte Starostike48a72e2010-07-24 21:29:56 +0200500ifneq ($(BR2_PACKAGE_GDB),y)
501 rm -rf $(TARGET_DIR)/usr/share/gdb
502endif
Thomas Petazzoni87b06372010-04-10 22:42:45 +0200503ifneq ($(BR2_HAVE_DOCUMENTATION),y)
Peter Korsgaard32faf352009-04-07 21:04:31 +0000504 rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/man
Peter Korsgaard32faf352009-04-07 21:04:31 +0000505 rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info
Thomas Petazzoni87b06372010-04-10 22:42:45 +0200506 rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc
Paulius Zaleckasd701a822010-05-05 13:09:36 +0300507 rm -rf $(TARGET_DIR)/usr/share/gtk-doc
Mike Frysinger68ad6d42010-11-18 16:25:58 -0500508 -rmdir $(TARGET_DIR)/usr/share 2>/dev/null
Peter Korsgaard32faf352009-04-07 21:04:31 +0000509endif
Thomas Petazzonib0c86bc2011-01-11 21:44:29 +0100510ifeq ($(BR2_PACKAGE_PYTHON_PY_ONLY),y)
511 find $(TARGET_DIR)/usr/lib/ -name '*.pyc' -print0 | xargs -0 rm -f
512endif
513ifeq ($(BR2_PACKAGE_PYTHON_PYC_ONLY),y)
514 find $(TARGET_DIR)/usr/lib/ -name '*.py' -print0 | xargs -0 rm -f
515endif
Francois Perrad72afb292014-01-11 16:42:07 +0100516 rm -rf $(TARGET_DIR)/usr/lib/luarocks
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000517 $(STRIP_FIND_CMD) | xargs $(STRIPCMD) 2>/dev/null || true
Peter Korsgaardf627ebe2013-08-26 00:34:45 +0200518 if test -d $(TARGET_DIR)/lib/modules; then \
Thomas Petazzonifde26052013-08-20 13:03:02 +0200519 find $(TARGET_DIR)/lib/modules -type f -name '*.ko' | \
Peter Korsgaardf627ebe2013-08-26 00:34:45 +0200520 xargs -r $(KSTRIPCMD); fi
Mike Frysinger8101c9a2010-11-17 18:55:43 -0500521
Richard Braun6ae78862012-11-20 07:18:11 +0000522# See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads
523# besides the one in which crash occurred; or SIGTRAP kills my program when
524# I set a breakpoint"
525ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
526 find $(TARGET_DIR)/lib -type f -name 'libpthread*.so*' | \
Thomas Petazzoni52e70732013-08-20 13:03:03 +0200527 xargs -r $(STRIPCMD) $(STRIP_STRIP_DEBUG)
Richard Braun6ae78862012-11-20 07:18:11 +0000528endif
529
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200530 mkdir -p $(TARGET_DIR)/etc
531 # Mandatory configuration file and auxilliary cache directory
532 # for recent versions of ldconfig
533 touch $(TARGET_DIR)/etc/ld.so.conf
534 mkdir -p $(TARGET_DIR)/var/cache/ldconfig
Peter Korsgaarde49e2fe2010-07-26 23:53:37 +0200535 if [ -x "$(TARGET_CROSS)ldconfig" ]; \
536 then \
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200537 $(TARGET_CROSS)ldconfig -r $(TARGET_DIR); \
Peter Korsgaarde49e2fe2010-07-26 23:53:37 +0200538 else \
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200539 /sbin/ldconfig -r $(TARGET_DIR); \
Peter Korsgaarde49e2fe2010-07-26 23:53:37 +0200540 fi
Peter Korsgaard451a8872012-02-14 12:58:25 +0100541 ( \
542 echo "NAME=Buildroot"; \
543 echo "VERSION=$(BR2_VERSION_FULL)"; \
544 echo "ID=buildroot"; \
545 echo "VERSION_ID=$(BR2_VERSION)"; \
546 echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \
547 ) > $(TARGET_DIR)/etc/os-release
Peter Korsgaard912ea812009-09-30 17:40:24 +0200548
Luca Ceresolie9b77122013-04-08 06:50:16 +0000549 @$(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \
550 $(call MESSAGE,"Copying overlay $(d)"); \
Peter Korsgaard99e82b02014-02-04 17:55:33 +0100551 rsync -a --ignore-times $(RSYNC_VCS_EXCLUSIONS) \
Nathan Lynch5f52d7a2014-01-28 21:11:21 +0100552 --chmod=Du+w --exclude .empty --exclude '*~' \
Luca Ceresolie9b77122013-04-08 06:50:16 +0000553 $(d)/ $(TARGET_DIR)$(sep))
Arnout Vandecappelle (Essensium/Mind)7f860892013-02-05 07:16:00 +0000554
Philippe Reynesdbf49782012-11-17 13:01:22 +0100555 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \
Luca Ceresoli1b9b1682013-04-08 06:50:14 +0000556 $(call MESSAGE,"Executing post-build script $(s)"); \
Yann E. MORINcfd497d2013-11-11 16:03:26 +0100557 $(USER_HOOKS_EXTRA_ENV) $(s) $(TARGET_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Daniel Mackeed7d872009-07-08 22:46:58 +0200558
Peter Korsgaardb87b4742009-04-06 09:21:26 +0000559ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200560LOCALE_WHITELIST=$(BUILD_DIR)/locales.nopurge
Thomas Petazzoni6cdf2482009-07-30 17:28:20 +0200561LOCALE_NOPURGE=$(call qstrip,$(BR2_ENABLE_LOCALE_WHITELIST))
Peter Korsgaardb87b4742009-04-06 09:21:26 +0000562
563target-purgelocales:
564 rm -f $(LOCALE_WHITELIST)
565 for i in $(LOCALE_NOPURGE); do echo $$i >> $(LOCALE_WHITELIST); done
566
Valentine Barshakd66538b2012-10-02 23:03:51 +0400567 for dir in $(wildcard $(addprefix $(TARGET_DIR),/usr/share/locale /usr/share/X11/locale /usr/man /usr/share/man /usr/lib/locale)); \
Peter Korsgaardb87b4742009-04-06 09:21:26 +0000568 do \
569 for lang in $$(cd $$dir; ls .|grep -v man); \
570 do \
571 grep -qx $$lang $(LOCALE_WHITELIST) || rm -rf $$dir/$$lang; \
572 done; \
573 done
574endif
575
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000576ifneq ($(GENERATE_LOCALE),)
577# Generate locale data. Basically, we call the localedef program
578# (built by the host-localedef package) for each locale. The input
579# data comes preferably from the toolchain, or if the toolchain does
580# not have them (Linaro toolchains), we use the ones available on the
581# host machine.
582target-generatelocales: host-localedef
583 $(Q)mkdir -p $(TARGET_DIR)/usr/lib/locale/
584 $(Q)for locale in $(GENERATE_LOCALE) ; do \
tbultelea27d6e2013-09-20 10:35:46 +0200585 inputfile=`echo $${locale} | cut -f1 -d'.'` ; \
Arnout Vandecappelle8e2696e2013-08-22 07:43:58 +0200586 charmap=`echo $${locale} | cut -f2 -d'.' -s` ; \
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000587 if test -z "$${charmap}" ; then \
588 charmap="UTF-8" ; \
589 fi ; \
590 echo "Generating locale $${inputfile}.$${charmap}" ; \
591 I18NPATH=$(STAGING_DIR)/usr/share/i18n:/usr/share/i18n \
592 $(HOST_DIR)/usr/bin/localedef \
593 --prefix=$(TARGET_DIR) \
Thierry Bultel6fb546c2013-11-10 18:32:52 +0100594 --$(call LOWERCASE,$(BR2_ENDIAN))-endian \
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000595 -i $${inputfile} -f $${charmap} \
596 $${locale} ; \
597 done
598endif
599
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000600target-post-image:
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000601 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_IMAGE_SCRIPT)), \
Luca Ceresoli6d90a692013-04-08 06:50:15 +0000602 $(call MESSAGE,"Executing post-image script $(s)"); \
Yann E. MORINcfd497d2013-11-11 16:03:26 +0100603 $(USER_HOOKS_EXTRA_ENV) $(s) $(BINARIES_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
Thomas Petazzoni9fa32ba2013-02-07 11:58:43 +0000604
Thomas Petazzoni217ef082013-01-13 04:52:13 +0000605toolchain-eclipse-register:
606 ./support/scripts/eclipse-register-toolchain `readlink -f $(O)` $(notdir $(TARGET_CROSS)) $(BR2_ARCH)
607
Thomas De Schampheleire4eb982c2011-07-27 11:34:51 +0200608source: dirs $(TARGETS_SOURCE) $(HOST_SOURCE)
Eric Andersenffde94b2001-12-22 00:56:11 +0000609
Peter Korsgaard155971e2008-03-04 12:19:16 +0000610external-deps:
Peter Korsgaard879058a2013-12-16 13:49:28 +0100611 @$(MAKE1) -Bs DL_MODE=SHOW_EXTERNAL_DEPS $(EXTRAMAKEARGS) source | sort -u
Peter Korsgaard155971e2008-03-04 12:19:16 +0000612
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200613legal-info-clean:
614 @rm -fr $(LEGAL_INFO_DIR)
615
616legal-info-prepare: $(LEGAL_INFO_DIR)
617 @$(call MESSAGE,"Collecting legal info")
Thomas De Schampheleire366f17f2013-11-12 09:47:58 +0100618 @$(call legal-license-file,buildroot,COPYING,COPYING,HOST)
Thomas De Schampheleirecc4f34d2013-11-12 09:47:57 +0100619 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,TARGET)
620 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE,HOST)
621 @$(call legal-manifest,buildroot,$(BR2_VERSION_FULL),GPLv2+,COPYING,not saved,HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200622 @$(call legal-warning,the Buildroot source code has not been saved)
623 @$(call legal-warning,the toolchain has not been saved)
Yann E. MORINdcb79992013-01-13 11:52:21 +0000624 @cp $(BUILDROOT_CONFIG) $(LEGAL_INFO_DIR)/buildroot.config
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200625
Thomas De Schampheleire858334c2013-11-12 09:47:59 +0100626legal-info: dirs legal-info-clean legal-info-prepare $(TARGETS_LEGAL_INFO) \
627 $(REDIST_SOURCES_DIR_TARGET) $(REDIST_SOURCES_DIR_HOST)
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200628 @cat support/legal-info/README.header >>$(LEGAL_REPORT)
629 @if [ -r $(LEGAL_WARNINGS) ]; then \
630 cat support/legal-info/README.warnings-header \
631 $(LEGAL_WARNINGS) >>$(LEGAL_REPORT); \
632 cat $(LEGAL_WARNINGS); fi
633 @echo "Legal info produced in $(LEGAL_INFO_DIR)"
634 @rm -f $(LEGAL_WARNINGS)
635
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200636show-targets:
637 @echo $(TARGETS)
638
Yann E. MORINe16bf922013-12-28 18:39:11 +0100639graph-build: $(O)/build/build-time.log
640 @install -d $(O)/graphs
641 $(foreach o,name build duration,./support/scripts/graph-build-time \
642 --type=histogram --order=$(o) --input=$(<) \
Yann E. MORINf1fedbb2013-12-28 18:39:13 +0100643 --output=$(O)/graphs/build.hist-$(o).$(BR2_GRAPH_OUT) \
Yann E. MORINe16bf922013-12-28 18:39:11 +0100644 $(if $(GRAPH_ALT),--alternate-colors)$(sep))
645 $(foreach t,packages steps,./support/scripts/graph-build-time \
646 --type=pie-$(t) --input=$(<) \
Yann E. MORINf1fedbb2013-12-28 18:39:13 +0100647 --output=$(O)/graphs/build.pie-$(t).$(BR2_GRAPH_OUT) \
Yann E. MORINe16bf922013-12-28 18:39:11 +0100648 $(if $(GRAPH_ALT),--alternate-colors)$(sep))
649
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100650graph-depends:
651 @$(INSTALL) -d $(O)/graphs
Yann E. MORIN56eb3942014-01-07 23:46:04 +0100652 @cd "$(CONFIG_DIR)"; \
653 $(TOPDIR)/support/scripts/graph-depends \
Yann E. MORINf1fedbb2013-12-28 18:39:13 +0100654 |dot -T$(BR2_GRAPH_OUT) -o $(O)/graphs/$(@).$(BR2_GRAPH_OUT)
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100655
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000656else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersen2d523c22004-10-09 01:06:03 +0000657
658all: menuconfig
659
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000660endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
661
Eric Andersen2d523c22004-10-09 01:06:03 +0000662# configuration
663# ---------------------------------------------------------------------------
664
Bernhard Reutner-Fischerc0d7d4e2007-07-09 18:23:20 +0000665HOSTCFLAGS=$(CFLAGS_FOR_BUILD)
666export HOSTCFLAGS
667
Peter Korsgaard2cc210c2010-06-20 23:05:32 +0200668$(BUILD_DIR)/buildroot-config/%onf:
669 mkdir -p $(@D)/lxdialog
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100670 $(MAKE) CC="$(HOSTCC_NOCCACHE)" HOSTCC="$(HOSTCC_NOCCACHE)" obj=$(@D) -C $(CONFIG) -f Makefile.br $(@F)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200671
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000672DEFCONFIG = $(call qstrip,$(BR2_DEFCONFIG))
673
674# We don't want to fully expand BR2_DEFCONFIG here, so Kconfig will
675# recognize that if it's still at its default $(CONFIG_DIR)/defconfig
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200676COMMON_CONFIG_ENV = \
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000677 BR2_DEFCONFIG='$(call qstrip,$(value BR2_DEFCONFIG))' \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200678 KCONFIG_AUTOCONFIG=$(BUILD_DIR)/buildroot-config/auto.conf \
679 KCONFIG_AUTOHEADER=$(BUILD_DIR)/buildroot-config/autoconf.h \
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200680 KCONFIG_TRISTATE=$(BUILD_DIR)/buildroot-config/tristate.config \
Thomas Petazzonia4239f72013-12-05 20:11:10 +0100681 BUILDROOT_CONFIG=$(BUILDROOT_CONFIG) \
682 BR2_EXTERNAL=$(BR2_EXTERNAL)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200683
Yann E. MORINaefad532010-09-26 10:56:12 +0200684xconfig: $(BUILD_DIR)/buildroot-config/qconf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000685 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard610255e2010-11-24 15:30:54 +0100686 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200687
Yann E. MORINaefad532010-09-26 10:56:12 +0200688gconfig: $(BUILD_DIR)/buildroot-config/gconf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000689 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard610255e2010-11-24 15:30:54 +0100690 @$(COMMON_CONFIG_ENV) srctree=$(TOPDIR) $< $(CONFIG_CONFIG_IN)
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200691
Yann E. MORINaefad532010-09-26 10:56:12 +0200692menuconfig: $(BUILD_DIR)/buildroot-config/mconf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000693 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard610255e2010-11-24 15:30:54 +0100694 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000695
Yann E. MORINaefad532010-09-26 10:56:12 +0200696nconfig: $(BUILD_DIR)/buildroot-config/nconf outputmakefile
Thomas Petazzoni8b6585a2010-08-21 17:21:40 +0200697 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard610255e2010-11-24 15:30:54 +0100698 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000699
Yann E. MORINaefad532010-09-26 10:56:12 +0200700config: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000701 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200702 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000703
Yann E. MORINaefad532010-09-26 10:56:12 +0200704oldconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000705 mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200706 @$(COMMON_CONFIG_ENV) $< --oldconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000707
Yann E. MORINaefad532010-09-26 10:56:12 +0200708randconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000709 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200710 @$(COMMON_CONFIG_ENV) $< --randconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000711
Yann E. MORINaefad532010-09-26 10:56:12 +0200712allyesconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000713 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200714 @$(COMMON_CONFIG_ENV) $< --allyesconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000715
Yann E. MORINaefad532010-09-26 10:56:12 +0200716allnoconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000717 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200718 @$(COMMON_CONFIG_ENV) $< --allnoconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000719
Yann E. MORINaefad532010-09-26 10:56:12 +0200720randpackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000721 @mkdir -p $(BUILD_DIR)/buildroot-config
Yann E. MORINdcb79992013-01-13 11:52:21 +0000722 @grep -v BR2_PACKAGE_ $(BUILDROOT_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard8a46d4b2012-12-01 18:10:46 -0800723 @grep '^config BR2_PACKAGE_' Config.in.legacy | \
724 while read config pkg; do \
725 echo "# $$pkg is not set" >> $(CONFIG_DIR)/.config.nopkg; done
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200726 @$(COMMON_CONFIG_ENV) \
Will Wagner39ca6d52010-01-11 12:28:50 +0000727 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200728 $< --randconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000729 @rm -f $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard66527702009-10-04 21:57:12 +0200730
Yann E. MORINaefad532010-09-26 10:56:12 +0200731allyespackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000732 @mkdir -p $(BUILD_DIR)/buildroot-config
Yann E. MORINdcb79992013-01-13 11:52:21 +0000733 @grep -v BR2_PACKAGE_ $(BUILDROOT_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard8a46d4b2012-12-01 18:10:46 -0800734 @grep '^config BR2_PACKAGE_' Config.in.legacy | \
735 while read config pkg; do \
736 echo "# $$pkg is not set" >> $(CONFIG_DIR)/.config.nopkg; done
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200737 @$(COMMON_CONFIG_ENV) \
Will Wagner39ca6d52010-01-11 12:28:50 +0000738 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200739 $< --allyesconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000740 @rm -f $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard66527702009-10-04 21:57:12 +0200741
Yann E. MORINaefad532010-09-26 10:56:12 +0200742allnopackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000743 @mkdir -p $(BUILD_DIR)/buildroot-config
Yann E. MORINdcb79992013-01-13 11:52:21 +0000744 @grep -v BR2_PACKAGE_ $(BUILDROOT_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200745 @$(COMMON_CONFIG_ENV) \
Will Wagner39ca6d52010-01-11 12:28:50 +0000746 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200747 $< --allnoconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000748 @rm -f $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard66527702009-10-04 21:57:12 +0200749
Yann E. MORINaefad532010-09-26 10:56:12 +0200750silentoldconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200751 @mkdir -p $(BUILD_DIR)/buildroot-config
752 $(COMMON_CONFIG_ENV) $< --silentoldconfig $(CONFIG_CONFIG_IN)
753
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000754olddefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
755 @mkdir -p $(BUILD_DIR)/buildroot-config
756 $(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN)
757
Yann E. MORINaefad532010-09-26 10:56:12 +0200758defconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000759 @mkdir -p $(BUILD_DIR)/buildroot-config
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000760 @$(COMMON_CONFIG_ENV) $< --defconfig$(if $(DEFCONFIG),=$(DEFCONFIG)) $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000761
Yann E. MORINaefad532010-09-26 10:56:12 +0200762%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(TOPDIR)/configs/%_defconfig outputmakefile
Thomas Petazzoni6f381192010-08-11 20:01:23 +0200763 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200764 @$(COMMON_CONFIG_ENV) $< --defconfig=$(TOPDIR)/configs/$@ $(CONFIG_CONFIG_IN)
Thomas Petazzoni6f381192010-08-11 20:01:23 +0200765
Thomas Petazzoniff9d6e32013-12-05 20:11:12 +0100766%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(BR2_EXTERNAL)/configs/%_defconfig outputmakefile
767 @mkdir -p $(BUILD_DIR)/buildroot-config
768 @$(COMMON_CONFIG_ENV) $< --defconfig=$(BR2_EXTERNAL)/configs/$@ $(CONFIG_CONFIG_IN)
769
Yann E. MORINaefad532010-09-26 10:56:12 +0200770savedefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Thomas Petazzonie1b1a182010-08-21 18:50:44 +0200771 @mkdir -p $(BUILD_DIR)/buildroot-config
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000772 @$(COMMON_CONFIG_ENV) $< \
773 --savedefconfig=$(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig) \
774 $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000775
Bernhard Reutner-Fischer6547bce2007-08-22 12:35:41 +0000776# check if download URLs are outdated
Thomas De Schampheleire07bae752012-06-21 19:38:42 +0000777source-check:
Peter Korsgaard879058a2013-12-16 13:49:28 +0100778 $(MAKE1) DL_MODE=SOURCE_CHECK $(EXTRAMAKEARGS) source
Bernhard Reutner-Fischer825ff342007-06-07 12:57:03 +0000779
Arnout Vandecappelle (Essensium/Mind)1ed49962013-02-05 07:16:02 +0000780.PHONY: defconfig savedefconfig
Peter Korsgaard406053d2009-11-20 14:05:48 +0100781
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200782################################################################################
Eric Andersen2d523c22004-10-09 01:06:03 +0000783#
784# Cleanup and misc junk
785#
Alexandre Belloni95442bb2013-06-07 12:13:46 +0200786################################################################################
Yann E. MORINaefad532010-09-26 10:56:12 +0200787
788# outputmakefile generates a Makefile in the output directory, if using a
789# separate output directory. This allows convenient use of make in the
790# output directory.
791outputmakefile:
792ifeq ($(NEED_WRAPPER),y)
Thomas Petazzonif082c7c2011-08-31 23:35:02 +0200793 $(Q)$(TOPDIR)/support/scripts/mkmakefile $(TOPDIR) $(O)
Yann E. MORINaefad532010-09-26 10:56:12 +0200794endif
795
Émeric Vigier98b616d2013-05-29 00:41:11 +0200796# printvars prints all the variables currently defined in our Makefiles
797printvars:
798 @$(foreach V, \
799 $(sort $(.VARIABLES)), \
800 $(if $(filter-out environment% default automatic, \
801 $(origin $V)), \
802 $(info $V=$($V) ($(value $V)))))
803
Eric Andersen2d523c22004-10-09 01:06:03 +0000804clean:
Thomas De Schampheleire300eb6b2013-09-30 13:09:27 +0200805 rm -rf $(TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) \
Thomas Petazzonid21a1762013-06-30 21:29:06 +0200806 $(STAMP_DIR) $(BUILD_DIR) $(BASE_DIR)/staging \
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200807 $(LEGAL_INFO_DIR)
Eric Andersen2d523c22004-10-09 01:06:03 +0000808
809distclean: clean
Peter Korsgaard406053d2009-11-20 14:05:48 +0100810ifeq ($(DL_DIR),$(TOPDIR)/dl)
811 rm -rf $(DL_DIR)
812endif
813ifeq ($(O),output)
814 rm -rf $(O)
815endif
Yann E. MORINdcb79992013-01-13 11:52:21 +0000816 rm -rf $(BUILDROOT_CONFIG) $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/.auto.deps
Eric Andersen2d523c22004-10-09 01:06:03 +0000817
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000818help:
819 @echo 'Cleaning:'
Peter Korsgaard406053d2009-11-20 14:05:48 +0100820 @echo ' clean - delete all files created by build'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000821 @echo ' distclean - delete all non-source files (including .config)'
822 @echo
823 @echo 'Build:'
824 @echo ' all - make world'
Fabio Porcedda2a786412013-01-14 22:02:00 +0000825 @echo ' toolchain - build toolchain'
Stephan Hoffmann040f6a32012-04-06 18:44:22 +0200826 @echo ' <package>-rebuild - force recompile <package>'
827 @echo ' <package>-reconfigure - force reconfigure <package>'
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100828 @echo ' <package>-graph-depends - generate graph of the dependency tree for package'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000829 @echo
830 @echo 'Configuration:'
831 @echo ' menuconfig - interactive curses-based configurator'
Peter Korsgaard15f5bef2011-02-01 08:41:01 +0100832 @echo ' nconfig - interactive ncurses-based configurator'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200833 @echo ' xconfig - interactive Qt-based configurator'
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200834 @echo ' gconfig - interactive GTK-based configurator'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000835 @echo ' oldconfig - resolve any unresolved symbols in .config'
Thomas Petazzoni9db3b472013-04-04 11:24:25 +0000836 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
837 @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200838 @echo ' randconfig - New config with random answer to all options'
839 @echo ' defconfig - New config with default answer to all options'
Arnout Vandecappelle33f454b2012-04-28 07:14:50 +0000840 @echo ' BR2_DEFCONFIG, if set, is used as input'
Peter Korsgaardd7051da2010-12-07 12:16:44 +0100841 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200842 @echo ' allyesconfig - New config where all options are accepted with yes'
843 @echo ' allnoconfig - New config where all options are answered with no'
Peter Korsgaard66527702009-10-04 21:57:12 +0200844 @echo ' randpackageconfig - New config with random answer to package options'
845 @echo ' allyespackageconfig - New config where pkg options are accepted with yes'
846 @echo ' allnopackageconfig - New config where package options are answered with no'
Peter Korsgaard4bb33dc2011-04-25 00:10:45 +0200847ifeq ($(BR2_PACKAGE_BUSYBOX),y)
848 @echo ' busybox-menuconfig - Run BusyBox menuconfig'
849endif
850ifeq ($(BR2_LINUX_KERNEL),y)
851 @echo ' linux-menuconfig - Run Linux kernel menuconfig'
Jean-Christophe PLAGNIOL-VILLARDf5777ce2011-08-22 21:28:47 +0200852 @echo ' linux-savedefconfig - Run Linux kernel savedefconfig'
Peter Korsgaard4bb33dc2011-04-25 00:10:45 +0200853endif
854ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
855 @echo ' uclibc-menuconfig - Run uClibc menuconfig'
856endif
Jean-Christophe PLAGNIOL-VILLARD83f1bf92011-08-22 21:28:48 +0200857ifeq ($(BR2_TARGET_BAREBOX),y)
858 @echo ' barebox-menuconfig - Run barebox menuconfig'
859 @echo ' barebox-savedefconfig - Run barebox savedefconfig'
860endif
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000861 @echo
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200862 @echo 'Documentation:'
Thomas De Schampheleire55ecab12013-09-19 12:47:14 +0200863 @echo ' manual - build manual in all formats'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200864 @echo ' manual-html - build manual in HTML'
865 @echo ' manual-split-html - build manual in split HTML'
866 @echo ' manual-pdf - build manual in PDF'
Thomas De Schampheleire462e9912013-10-18 22:31:26 +0200867 @echo ' manual-text - build manual in text'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200868 @echo ' manual-epub - build manual in ePub'
Yann E. MORINe16bf922013-12-28 18:39:11 +0100869 @echo ' graph-build - generate graphs of the build times'
Yann E. MORIN0cfe3ab2013-12-28 18:39:12 +0100870 @echo ' graph-depends - generate graph of the dependency tree'
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200871 @echo
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000872 @echo 'Miscellaneous:'
873 @echo ' source - download all sources needed for offline-build'
Thomas De Schampheleire07bae752012-06-21 19:38:42 +0000874 @echo ' source-check - check selected packages for valid download URLs'
Peter Korsgaard155971e2008-03-04 12:19:16 +0000875 @echo ' external-deps - list external packages used'
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200876 @echo ' legal-info - generate info about license compliance'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000877 @echo
Peter Korsgaard15f5bef2011-02-01 08:41:01 +0100878 @echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build'
879 @echo ' make O=dir - Locate all output files in "dir", including .config'
880 @echo
Thomas Petazzoniff9d6e32013-12-05 20:11:12 +0100881 @echo 'Built-in configs:'
Danomi Mocelopolisb9796192011-07-17 22:17:08 +0200882 @$(foreach b, $(sort $(notdir $(wildcard $(TOPDIR)/configs/*_defconfig))), \
Peter Korsgaard58fd7792009-10-04 22:09:25 +0200883 printf " %-35s - Build for %s\\n" $(b) $(b:_defconfig=);)
Thomas Petazzoniff9d6e32013-12-05 20:11:12 +0100884ifneq ($(wildcard $(BR2_EXTERNAL)/configs/*_defconfig),)
885 @echo
886 @echo 'User-provided configs:'
887 @$(foreach b, $(sort $(notdir $(wildcard $(BR2_EXTERNAL)/configs/*_defconfig))), \
888 printf " %-35s - Build for %s\\n" $(b) $(b:_defconfig=);)
889endif
Peter Korsgaard58fd7792009-10-04 22:09:25 +0200890 @echo
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200891 @echo 'See docs/README, or generate the Buildroot manual for further details'
Bernhard Reutner-Fischer663dee42007-08-27 21:40:42 +0000892 @echo
Bernhard Reutner-Fischerba2e7e02007-06-25 10:56:13 +0000893
Yann E. MORINe5e8fae2010-10-31 17:35:10 +0100894release: OUT=buildroot-$(BR2_VERSION)
Peter Korsgaard0dca7062010-11-04 00:00:00 +0100895
Peter Korsgaard134ab1c2012-02-03 22:03:29 +0100896# Create release tarballs. We need to fiddle a bit to add the generated
897# documentation to the git output
Peter Korsgaard0dca7062010-11-04 00:00:00 +0100898release:
Peter Korsgaardc6715b62013-09-17 13:42:07 +0200899 git archive --format=tar --prefix=$(OUT)/ HEAD > $(OUT).tar
Thomas De Schampheleire462e9912013-10-18 22:31:26 +0200900 $(MAKE) O=$(OUT) manual-html manual-text manual-pdf
Peter Korsgaard134ab1c2012-02-03 22:03:29 +0100901 tar rf $(OUT).tar $(OUT)
902 gzip -9 -c < $(OUT).tar > $(OUT).tar.gz
903 bzip2 -9 -c < $(OUT).tar > $(OUT).tar.bz2
904 rm -rf $(OUT) $(OUT).tar
Peter Korsgaarde62d2ec2009-01-15 19:36:06 +0000905
Arnout Vandecappelle (Essensium/Mind)2b91ab72012-03-11 12:16:39 +0100906print-version:
907 @echo $(BR2_VERSION_FULL)
908
Thomas Petazzonib7285d02012-04-17 16:45:22 +0200909include docs/manual/manual.mk
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200910
Peter Korsgaard66527702009-10-04 21:57:12 +0200911.PHONY: $(noconfig_targets)