blob: f40863247d9c7b06dbc9d3e22ff3b41e9250780d [file] [log] [blame]
Eric Andersen2d523c22004-10-09 01:06:03 +00001# Makefile for buildroot2
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 Korsgaard9fc43592012-03-01 14:04:54 +01004# Copyright (C) 2006-2012 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 Korsgaard677d5062012-12-02 17:19:18 -080027export BR2_VERSION:=2013.02
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 \
Thomas Petazzoni0b368802010-08-22 07:27:09 +020059 defconfig %_defconfig savedefconfig allyesconfig allnoconfig silentoldconfig release \
Peter Korsgaard66527702009-10-04 21:57:12 +020060 randpackageconfig allyespackageconfig allnopackageconfig \
Arnout Vandecappelle (Essensium/Mind)2b91ab72012-03-11 12:16:39 +010061 source-check print-version
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
Yann E. MORIN2b0f4552013-01-13 11:52:20 +000094BUILDROOT_CONFIG=$(CONFIG_DIR)/.config
95
Ulf Samuelssona1b06512008-03-28 07:31:28 +000096# Pull in the user's configuration file
97ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
Yann E. MORINdcb79992013-01-13 11:52:21 +000098-include $(BUILDROOT_CONFIG)
Ulf Samuelsson7521f372007-09-12 04:34:16 +000099endif
Eric Andersen2d523c22004-10-09 01:06:03 +0000100
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000101# To put more focus on warnings, be less verbose as default
102# Use 'make V=1' to see the full commands
103ifdef V
104 ifeq ("$(origin V)", "command line")
Bernhard Reutner-Fischer18d979c2007-09-01 18:21:09 +0000105 KBUILD_VERBOSE=$(V)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000106 endif
107endif
108ifndef KBUILD_VERBOSE
Bernhard Reutner-Fischer18d979c2007-09-01 18:21:09 +0000109 KBUILD_VERBOSE=0
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000110endif
111
112ifeq ($(KBUILD_VERBOSE),1)
Ulf Samuelsson4df454e2007-07-06 12:19:35 +0000113 quiet=
Bernhard Reutner-Fischer18d979c2007-09-01 18:21:09 +0000114 Q=
Bernhard Reutner-Fischer1669b6e2007-09-22 14:19:22 +0000115ifndef VERBOSE
116 VERBOSE=1
117endif
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000118else
119 quiet=quiet_
Bernhard Reutner-Fischer18d979c2007-09-01 18:21:09 +0000120 Q=@
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000121endif
122
Peter Korsgaard69f85922009-01-01 21:20:35 +0000123# we want bash as shell
124SHELL:=$(shell if [ -x "$$BASH" ]; then echo $$BASH; \
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000125 else if [ -x /bin/bash ]; then echo /bin/bash; \
Bernhard Reutner-Fischer18d979c2007-09-01 18:21:09 +0000126 else echo sh; fi; fi)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000127
Peter Korsgaard69f85922009-01-01 21:20:35 +0000128# kconfig uses CONFIG_SHELL
129CONFIG_SHELL:=$(SHELL)
130
131export SHELL CONFIG_SHELL quiet Q KBUILD_VERBOSE VERBOSE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000132
133ifndef HOSTAR
134HOSTAR:=ar
135endif
136ifndef HOSTAS
137HOSTAS:=as
138endif
139ifndef HOSTCC
140HOSTCC:=gcc
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100141HOSTCC:=$(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000142endif
Mike Frysinger0df02e12011-03-28 03:18:47 -0400143HOSTCC_NOCCACHE:=$(HOSTCC)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000144ifndef HOSTCXX
145HOSTCXX:=g++
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100146HOSTCXX:=$(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++)
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000147endif
Mike Frysinger0df02e12011-03-28 03:18:47 -0400148HOSTCXX_NOCCACHE:=$(HOSTCXX)
Bernhard Reutner-Fischer5f975802007-09-28 20:10:22 +0000149ifndef HOSTFC
150HOSTFC:=gfortran
151endif
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000152ifndef HOSTCPP
153HOSTCPP:=cpp
154endif
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000155ifndef HOSTLD
156HOSTLD:=ld
157endif
Ulf Samuelsson0f9c5b12007-07-15 21:54:11 +0000158ifndef HOSTLN
159HOSTLN:=ln
160endif
Ulf Samuelsson356133b2007-09-28 19:46:58 +0000161ifndef HOSTNM
162HOSTNM:=nm
163endif
Peter Korsgaard69f85922009-01-01 21:20:35 +0000164HOSTAR:=$(shell which $(HOSTAR) || type -p $(HOSTAR) || echo ar)
165HOSTAS:=$(shell which $(HOSTAS) || type -p $(HOSTAS) || echo as)
Peter Korsgaard69f85922009-01-01 21:20:35 +0000166HOSTFC:=$(shell which $(HOSTLD) || type -p $(HOSTLD) || echo || which g77 || type -p g77 || echo gfortran)
167HOSTCPP:=$(shell which $(HOSTCPP) || type -p $(HOSTCPP) || echo cpp)
168HOSTLD:=$(shell which $(HOSTLD) || type -p $(HOSTLD) || echo ld)
169HOSTLN:=$(shell which $(HOSTLN) || type -p $(HOSTLN) || echo ln)
170HOSTNM:=$(shell which $(HOSTNM) || type -p $(HOSTNM) || echo nm)
Ulf Samuelsson54e93322008-07-06 07:34:41 +0000171
Bernhard Reutner-Fischer5f975802007-09-28 20:10:22 +0000172export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTFC HOSTLD
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100173export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000174
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000175# Make sure pkg-config doesn't look outside the buildroot tree
176unexport PKG_CONFIG_PATH
Charles Manning4f607ed2012-12-02 11:13:04 +0000177unexport PKG_CONFIG_SYSROOT_DIR
Arnout Vandecappelle670cb302012-06-30 10:29:22 +0000178
Thomas Petazzoni91123a62012-07-02 04:21:14 +0000179# Having DESTDIR set in the environment confuses the installation
180# steps of some packages.
181unexport DESTDIR
182
Will Wagner39ca6d52010-01-11 12:28:50 +0000183# bash prints the name of the directory on 'cd <dir>' if CDPATH is
184# set, so unset it here to not cause problems. Notice that the export
185# line doesn't affect the environment of $(shell ..) calls, so
186# explictly throw away any output from 'cd' here.
187export CDPATH:=
188BASE_DIR := $(shell mkdir -p $(O) && cd $(O) >/dev/null && pwd)
189$(if $(BASE_DIR),, $(error output directory "$(O)" does not exist))
190
191BUILD_DIR:=$(BASE_DIR)/build
192
Bernhard Reutner-Fischerafc61c62007-06-28 10:47:05 +0000193
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000194ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersenffde94b2001-12-22 00:56:11 +0000195
Peter Korsgaard2c649042007-06-19 15:19:27 +0000196#############################################################
197#
198# Hide troublesome environment variables from sub processes
199#
200#############################################################
201unexport CROSS_COMPILE
202unexport ARCH
Daniel Nyström2bf3c162010-12-26 00:29:42 +0100203unexport CC
204unexport CXX
205unexport CPP
206unexport CFLAGS
207unexport CXXFLAGS
208unexport GREP_OPTIONS
Peter Korsgaard12c9f7d2011-12-12 10:25:50 +0100209unexport CONFIG_SITE
Stephan Hoffmann32314b42012-08-17 13:54:16 +0200210unexport QMAKESPEC
Bernhard Reutner-Fischer7dcbbfb2007-06-02 09:05:40 +0000211
Thomas Petazzoni102a93b2011-08-31 23:35:06 +0200212GNU_HOST_NAME:=$(shell support/gnuconfig/config.guess)
Thomas Petazzoni60281cb2010-04-10 23:17:25 +0200213
Bernhard Reutner-Fischer6ad07202007-07-31 15:02:06 +0000214##############################################################
Eric Andersen08782ae2002-04-26 11:45:55 +0000215#
Eric Andersen2d523c22004-10-09 01:06:03 +0000216# The list of stuff to build for the target toolchain
217# along with the packages to build for the target.
Eric Andersen08782ae2002-04-26 11:45:55 +0000218#
Eric Andersen2d523c22004-10-09 01:06:03 +0000219##############################################################
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100220
221ifeq ($(BR2_CCACHE),y)
222BASE_TARGETS += host-ccache
223endif
224
Thomas Petazzonibc994c52009-12-14 12:10:12 +0100225ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
Gustavo Zacarias009407e2010-12-31 08:39:01 -0300226BASE_TARGETS += uclibc-configured host-binutils cross_compiler uclibc-target-utils kernel-headers
Yann E. MORIN10c1eec2010-09-19 21:54:09 +0200227else
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100228BASE_TARGETS += uclibc
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +0000229endif
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000230TARGETS:=
231
Peter Korsgaard89464a92009-09-30 17:39:44 +0200232# silent mode requested?
233QUIET:=$(if $(findstring s,$(MAKEFLAGS)),-q)
234
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200235# Strip off the annoying quoting
236ARCH:=$(call qstrip,$(BR2_ARCH))
Thomas Petazzoni65e80a02010-04-28 23:40:57 +0200237
Peter Korsgaard891973f2010-10-17 23:32:37 +0200238KERNEL_ARCH:=$(shell echo "$(ARCH)" | sed -e "s/-.*//" \
239 -e s/i.86/i386/ -e s/sun4u/sparc64/ \
240 -e s/arm.*/arm/ -e s/sa110/arm/ \
Thomas Petazzonib90a1032012-10-28 17:40:35 +0100241 -e s/aarch64/arm64/ \
Mike Frysinger871db072011-02-07 00:49:11 -0500242 -e s/bfin/blackfin/ \
Peter Korsgaard891973f2010-10-17 23:32:37 +0200243 -e s/parisc64/parisc/ \
244 -e s/powerpc64/powerpc/ \
245 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
246 -e s/sh.*/sh/)
247
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200248ZCAT:=$(call qstrip,$(BR2_ZCAT))
249BZCAT:=$(call qstrip,$(BR2_BZCAT))
Allan W. Nielsen177b4b42011-05-10 08:17:05 +0200250XZCAT:=$(call qstrip,$(BR2_XZCAT))
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200251TAR_OPTIONS=$(call qstrip,$(BR2_TAR_OPTIONS)) -xf
Bernhard Reutner-Fischer1dbe6e32007-08-21 17:56:47 +0000252
Gustavo Zacariasa2b4f7f2011-02-02 10:05:56 -0300253# packages compiled for the host go here
254HOST_DIR:=$(call qstrip,$(BR2_HOST_DIR))
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200255
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000256# locales to generate
257GENERATE_LOCALE=$(call qstrip,$(BR2_GENERATE_LOCALE))
258
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200259# stamp (dependency) files go here
Thomas Petazzoni3b2a8032009-07-31 10:31:39 +0200260STAMP_DIR:=$(BASE_DIR)/stamps
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200261
Thomas Petazzoni3b2a8032009-07-31 10:31:39 +0200262BINARIES_DIR:=$(BASE_DIR)/images
263TARGET_DIR:=$(BASE_DIR)/target
Thomas Petazzoni4c5bf462010-04-28 23:40:52 +0200264TOOLCHAIN_DIR=$(BASE_DIR)/toolchain
Thomas Petazzoni6c3e3ad2012-11-03 08:27:58 +0000265TARGET_SKELETON=$(TOPDIR)/system/skeleton
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200266
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200267LEGAL_INFO_DIR=$(BASE_DIR)/legal-info
268REDIST_SOURCES_DIR=$(LEGAL_INFO_DIR)/sources
269LICENSE_FILES_DIR=$(LEGAL_INFO_DIR)/licenses
270LEGAL_MANIFEST_CSV=$(LEGAL_INFO_DIR)/manifest.csv
271LEGAL_LICENSES_TXT=$(LEGAL_INFO_DIR)/licenses.txt
272LEGAL_WARNINGS=$(LEGAL_INFO_DIR)/.warnings
273LEGAL_REPORT=$(LEGAL_INFO_DIR)/README
274
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000275# Location of a file giving a big fat warning that output/target
276# should not be used as the root filesystem.
277TARGET_DIR_WARNING_FILE=$(TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
278
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100279ifeq ($(BR2_CCACHE),y)
280CCACHE:=$(HOST_DIR)/usr/bin/ccache
Thomas De Schampheleire43329072012-05-16 21:39:28 +0200281BUILDROOT_CACHE_DIR = $(call qstrip,$(BR2_CCACHE_DIR))
282export BUILDROOT_CACHE_DIR
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100283HOSTCC := $(CCACHE) $(HOSTCC)
284HOSTCXX := $(CCACHE) $(HOSTCXX)
285endif
286
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000287# Scripts in support/ or post-build scripts may need to reference
288# these locations, so export them so it is easier to use
289export BUILDROOT_CONFIG
290export TARGET_DIR
291export STAGING_DIR
292export HOST_DIR
293export BINARIES_DIR
Peter Korsgaard1300cb52013-01-14 10:02:29 +0100294export BASE_DIR
Yann E. MORIN2b0f4552013-01-13 11:52:20 +0000295
Eric Andersen08782ae2002-04-26 11:45:55 +0000296#############################################################
297#
Eric Andersenef407d32004-01-29 23:21:00 +0000298# You should probably leave this stuff alone unless you know
Eric Andersen08782ae2002-04-26 11:45:55 +0000299# what you are doing.
300#
301#############################################################
Manuel Novoa III d632d422003-11-01 05:34:41 +0000302
Bernhard Reutner-Fischer6547bce2007-08-22 12:35:41 +0000303all: world
Eric Andersenffde94b2001-12-22 00:56:11 +0000304
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000305# Include legacy before the other things, because package .mk files
306# may rely on it.
307ifneq ($(BR2_DEPRECATED),y)
308include Makefile.legacy
309endif
310
Thomas Petazzoni486253d2012-04-17 16:45:23 +0200311include package/Makefile.in
Thomas De Schampheleirea7926682012-02-08 17:22:16 +0100312include support/dependencies/dependencies.mk
313
Eric Andersend06645d2005-02-10 03:06:39 +0000314# We also need the various per-package makefiles, which also add
315# each selected package to TARGETS if that package was selected
316# in the .config file.
Thomas Petazzonibc994c52009-12-14 12:10:12 +0100317ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
Yann E. MORINed020092010-07-28 00:08:15 +0200318include toolchain/toolchain-buildroot.mk
Yann E. MORIN26b44b22010-03-26 20:46:37 +0100319else ifeq ($(BR2_TOOLCHAIN_EXTERNAL),y)
Yann E. MORINed020092010-07-28 00:08:15 +0200320include toolchain/toolchain-external.mk
Yann E. MORIN10c1eec2010-09-19 21:54:09 +0200321else ifeq ($(BR2_TOOLCHAIN_CTNG),y)
322include toolchain/toolchain-crosstool-ng.mk
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000323endif
324
Thomas Petazzoniee0246e2011-09-29 21:57:38 +0200325# Include the package override file if one has been provided in the
326# configuration.
327PACKAGE_OVERRIDE_FILE=$(call qstrip,$(BR2_PACKAGE_OVERRIDE_FILE))
328ifneq ($(PACKAGE_OVERRIDE_FILE),)
329-include $(PACKAGE_OVERRIDE_FILE)
330endif
331
Eric Andersend06645d2005-02-10 03:06:39 +0000332include package/*/*.mk
Eric Andersend06645d2005-02-10 03:06:39 +0000333
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100334include boot/common.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100335include linux/linux.mk
Peter Korsgaardec100c72013-01-09 13:20:05 +0100336include system/system.mk
Peter Korsgaard64d8e9a2010-11-07 19:33:11 +0100337
Peter Korsgaard32faf352009-04-07 21:04:31 +0000338TARGETS+=target-finalize
John Voltzd45de0c2008-03-11 13:12:39 +0000339
Peter Korsgaardb87b4742009-04-06 09:21:26 +0000340ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
341TARGETS+=target-purgelocales
342endif
343
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000344ifneq ($(BR2_TOOLCHAIN_EXTERNAL_GLIBC)$(BR2_TOOLCHAIN_CTNG_eglibc)$(BR2_TOOLCHAIN_CTNG_glibc),)
345ifneq ($(GENERATE_LOCALE),)
346TARGETS+=target-generatelocales
347endif
348endif
349
Thomas Petazzoni649b5b92010-03-14 18:20:45 +0100350include fs/common.mk
Eric Andersen79f5f1e2005-02-17 03:00:29 +0000351
Eric Andersen08782ae2002-04-26 11:45:55 +0000352TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
Bernhard Reutner-Fischer3b08e642007-09-18 13:12:25 +0000353TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS) $(BASE_TARGETS))
Eric Andersen08782ae2002-04-26 11:45:55 +0000354TARGETS_DIRCLEAN:=$(patsubst %,%-dirclean,$(TARGETS))
Bernhard Reutner-Fischerb3efde22007-09-01 17:10:55 +0000355TARGETS_ALL:=$(patsubst %,__real_tgt_%,$(TARGETS))
Peter Korsgaard22c2c6b2010-11-19 14:20:56 +0100356
357# host-* dependencies have to be handled specially, as those aren't
358# visible in Kconfig and hence not added to a variable like TARGETS.
359# instead, find all the host-* targets listed in each <PKG>_DEPENDENCIES
360# variable for each enabled target.
361# Notice: this only works for newstyle gentargets/autotargets packages
362TARGETS_HOST_DEPS = $(sort $(filter host-%,$(foreach dep,\
363 $(addsuffix _DEPENDENCIES,$(call UPPERCASE,$(TARGETS))),\
364 $($(dep)))))
365# Host packages can in turn have their own dependencies. Likewise find
366# all the package names listed in the HOST_<PKG>_DEPENDENCIES for each
367# host package found above. Ideally this should be done recursively until
368# no more packages are found, but that's hard to do in make, so limit to
369# 1 level for now.
370HOST_DEPS = $(sort $(foreach dep,\
371 $(addsuffix _DEPENDENCIES,$(call UPPERCASE,$(TARGETS_HOST_DEPS))),\
372 $($(dep))))
373HOST_SOURCE += $(addsuffix -source,$(sort $(TARGETS_HOST_DEPS) $(HOST_DEPS)))
374
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200375TARGETS_LEGAL_INFO:=$(patsubst %,%-legal-info,\
376 $(TARGETS) $(BASE_TARGETS) $(TARGETS_HOST_DEPS) $(HOST_DEPS))))
377
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000378# all targets depend on the crosscompiler and it's prerequisites
Bernhard Reutner-Fischerb3efde22007-09-01 17:10:55 +0000379$(TARGETS_ALL): __real_tgt_%: $(BASE_TARGETS) %
Bernhard Reutner-Fischeracc706b2007-07-23 11:29:38 +0000380
Peter Korsgaarda77ee7f2012-09-10 12:38:29 +0200381dirs: $(TOOLCHAIN_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
Peter Korsgaardd0880f72012-01-15 20:59:37 +0100382 $(HOST_DIR) $(BINARIES_DIR) $(STAMP_DIR)
Ulf Samuelssonf958d892007-08-14 07:45:01 +0000383
Peter Korsgaarded7791e2012-02-25 23:18:03 +0100384$(BASE_TARGETS): dirs $(HOST_DIR)/usr/share/buildroot/toolchainfile.cmake
Ulf Samuelssonf958d892007-08-14 07:45:01 +0000385
Yann E. MORINdcb79992013-01-13 11:52:21 +0000386$(BUILD_DIR)/buildroot-config/auto.conf: $(BUILDROOT_CONFIG)
Thomas Petazzonic7298292011-04-02 18:44:36 +0200387 $(MAKE) $(EXTRAMAKEARGS) HOSTCC="$(HOSTCC_NOCCACHE)" HOSTCXX="$(HOSTCXX_NOCCACHE)" silentoldconfig
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200388
389prepare: $(BUILD_DIR)/buildroot-config/auto.conf
390
Thomas De Schampheleireee7f92e2012-02-08 17:22:19 +0100391world: prepare dirs dependencies $(BASE_TARGETS) $(TARGETS_ALL)
Eric Andersenffde94b2001-12-22 00:56:11 +0000392
Yann E. MORINaefad532010-09-26 10:56:12 +0200393.PHONY: all world dirs clean distclean source outputmakefile \
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200394 legal-info legal-info-prepare legal-info-clean \
Bernhard Reutner-Fischerb3efde22007-09-01 17:10:55 +0000395 $(BASE_TARGETS) $(TARGETS) $(TARGETS_ALL) \
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200396 $(TARGETS_CLEAN) $(TARGETS_DIRCLEAN) $(TARGETS_SOURCE) $(TARGETS_LEGAL_INFO) \
Peter Korsgaarda77ee7f2012-09-10 12:38:29 +0200397 $(TOOLCHAIN_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
Peter Korsgaardd0880f72012-01-15 20:59:37 +0100398 $(HOST_DIR) $(BINARIES_DIR) $(STAMP_DIR)
Jon Nelsonc79e9982002-01-05 20:26:15 +0000399
Eric Andersen08782ae2002-04-26 11:45:55 +0000400#############################################################
401#
Eric Andersenef407d32004-01-29 23:21:00 +0000402# staging and target directories do NOT list these as
Mike Frysingerd99c31c2006-05-26 01:18:09 +0000403# dependencies anywhere else
Eric Andersen08782ae2002-04-26 11:45:55 +0000404#
405#############################################################
Peter Korsgaarda77ee7f2012-09-10 12:38:29 +0200406$(TOOLCHAIN_DIR) $(BUILD_DIR) $(HOST_DIR) $(BINARIES_DIR) $(STAMP_DIR) $(LEGAL_INFO_DIR) $(REDIST_SOURCES_DIR):
Bernhard Reutner-Fischer8d583fc2007-01-30 00:58:18 +0000407 @mkdir -p $@
Manuel Novoa III 3ad3d8a2004-09-03 00:49:43 +0000408
Eric Andersen08782ae2002-04-26 11:45:55 +0000409$(STAGING_DIR):
"Steven J. Hill"9c865d72007-05-07 03:56:47 +0000410 @mkdir -p $(STAGING_DIR)/bin
Eric Andersenbf387232004-12-11 10:35:18 +0000411 @mkdir -p $(STAGING_DIR)/lib
Bernhard Reutner-Fischer80277842007-06-20 11:26:36 +0000412 @mkdir -p $(STAGING_DIR)/usr/lib
Bernhard Reutner-Fischer80277842007-06-20 11:26:36 +0000413 @mkdir -p $(STAGING_DIR)/usr/include
Thomas Petazzonia05c3372010-02-09 22:44:15 +0100414 @mkdir -p $(STAGING_DIR)/usr/bin
Gustavo Zacarias5ad139e2010-12-31 08:39:05 -0300415 @ln -snf $(STAGING_DIR) $(BASE_DIR)/staging
Eric Andersen08782ae2002-04-26 11:45:55 +0000416
Dmytro Milinevskyy2b3a43f2010-06-16 23:25:56 +0300417ifeq ($(BR2_ROOTFS_SKELETON_CUSTOM),y)
418TARGET_SKELETON=$(BR2_ROOTFS_SKELETON_CUSTOM_PATH)
419endif
420
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200421$(BUILD_DIR)/.root:
Bernhard Reutner-Fischer7547c7e2007-08-21 10:53:39 +0000422 mkdir -p $(TARGET_DIR)
Bernhard Reutner-Fischerf0ca4b82007-08-21 10:56:38 +0000423 if ! [ -d "$(TARGET_DIR)/bin" ]; then \
424 if [ -d "$(TARGET_SKELETON)" ]; then \
Bernhard Reutner-Fischer18d979c2007-09-01 18:21:09 +0000425 cp -fa $(TARGET_SKELETON)/* $(TARGET_DIR)/; \
Ulf Samuelsson74cda1e2007-08-14 07:24:45 +0000426 fi; \
Bernhard Reutner-Fischerf0ca4b82007-08-21 10:56:38 +0000427 fi
Thomas Petazzoni9226a992012-11-17 03:52:14 +0000428 cp support/misc/target-dir-warning.txt $(TARGET_DIR_WARNING_FILE)
Will Newtonfc3eb182009-08-10 10:04:14 +0100429 -find $(TARGET_DIR) -type d -name CVS -print0 -o -name .svn -print0 | xargs -0 rm -rf
Anders Daranderb9656e82009-12-23 10:05:45 +0100430 -find $(TARGET_DIR) -type f \( -name .empty -o -name '*~' \) -print0 | xargs -0 rm -rf
Bernhard Reutner-Fischer7547c7e2007-08-21 10:53:39 +0000431 touch $@
Eric Andersenffde94b2001-12-22 00:56:11 +0000432
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200433$(TARGET_DIR): $(BUILD_DIR)/.root
Ulf Samuelssonc6771df2007-08-16 05:44:55 +0000434
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000435STRIP_FIND_CMD = find $(TARGET_DIR)
436ifneq (,$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS)))
437STRIP_FIND_CMD += \( $(call finddirclauses,$(TARGET_DIR),$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) \) -prune -o
438endif
439STRIP_FIND_CMD += -type f -perm +111
Richard Braun6ae78862012-11-20 07:18:11 +0000440STRIP_FIND_CMD += -not \( $(call findfileclauses,libpthread*.so* $(call qstrip,$(BR2_STRIP_EXCLUDE_FILES))) \) -print
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000441
Peter Korsgaard32faf352009-04-07 21:04:31 +0000442target-finalize:
John Voltzd45de0c2008-03-11 13:12:39 +0000443ifeq ($(BR2_HAVE_DEVFILES),y)
Thomas Petazzonif082c7c2011-08-31 23:35:02 +0200444 ( support/scripts/copy.sh $(STAGING_DIR) $(TARGET_DIR) )
John Voltzbc67ca22008-03-10 15:22:43 +0000445else
Valentine Barshak94d3aa12012-10-02 08:52:15 +0000446 rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/share/aclocal \
447 $(TARGET_DIR)/usr/lib/pkgconfig $(TARGET_DIR)/usr/share/pkgconfig
Wade Berrier027aa1d2009-04-28 17:33:44 +0000448 find $(TARGET_DIR)/lib \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
449 find $(TARGET_DIR)/usr/lib \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
John Voltzbc67ca22008-03-10 15:22:43 +0000450endif
Malte Starostike48a72e2010-07-24 21:29:56 +0200451ifneq ($(BR2_PACKAGE_GDB),y)
452 rm -rf $(TARGET_DIR)/usr/share/gdb
453endif
Thomas Petazzoni87b06372010-04-10 22:42:45 +0200454ifneq ($(BR2_HAVE_DOCUMENTATION),y)
Peter Korsgaard32faf352009-04-07 21:04:31 +0000455 rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/man
Peter Korsgaard32faf352009-04-07 21:04:31 +0000456 rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info
Thomas Petazzoni87b06372010-04-10 22:42:45 +0200457 rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc
Paulius Zaleckasd701a822010-05-05 13:09:36 +0300458 rm -rf $(TARGET_DIR)/usr/share/gtk-doc
Mike Frysinger68ad6d42010-11-18 16:25:58 -0500459 -rmdir $(TARGET_DIR)/usr/share 2>/dev/null
Peter Korsgaard32faf352009-04-07 21:04:31 +0000460endif
Thomas Petazzonib0c86bc2011-01-11 21:44:29 +0100461ifeq ($(BR2_PACKAGE_PYTHON_PY_ONLY),y)
462 find $(TARGET_DIR)/usr/lib/ -name '*.pyc' -print0 | xargs -0 rm -f
463endif
464ifeq ($(BR2_PACKAGE_PYTHON_PYC_ONLY),y)
465 find $(TARGET_DIR)/usr/lib/ -name '*.py' -print0 | xargs -0 rm -f
466endif
Thomas De Schampheleire2a970452012-06-21 19:34:50 +0000467 $(STRIP_FIND_CMD) | xargs $(STRIPCMD) 2>/dev/null || true
Mike Frysinger8101c9a2010-11-17 18:55:43 -0500468 find $(TARGET_DIR)/lib/modules -type f -name '*.ko' | \
Gustavo Zacarias0dc940c2010-11-30 12:19:59 -0300469 xargs -r $(KSTRIPCMD) || true
Mike Frysinger8101c9a2010-11-17 18:55:43 -0500470
Richard Braun6ae78862012-11-20 07:18:11 +0000471# See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads
472# besides the one in which crash occurred; or SIGTRAP kills my program when
473# I set a breakpoint"
474ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
475 find $(TARGET_DIR)/lib -type f -name 'libpthread*.so*' | \
476 xargs $(STRIPCMD) $(STRIP_STRIP_DEBUG) || true
477endif
478
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200479 mkdir -p $(TARGET_DIR)/etc
480 # Mandatory configuration file and auxilliary cache directory
481 # for recent versions of ldconfig
482 touch $(TARGET_DIR)/etc/ld.so.conf
483 mkdir -p $(TARGET_DIR)/var/cache/ldconfig
Peter Korsgaarde49e2fe2010-07-26 23:53:37 +0200484 if [ -x "$(TARGET_CROSS)ldconfig" ]; \
485 then \
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200486 $(TARGET_CROSS)ldconfig -r $(TARGET_DIR); \
Peter Korsgaarde49e2fe2010-07-26 23:53:37 +0200487 else \
Thomas Petazzoni4ccde7f2010-08-30 22:52:18 +0200488 /sbin/ldconfig -r $(TARGET_DIR); \
Peter Korsgaarde49e2fe2010-07-26 23:53:37 +0200489 fi
Peter Korsgaard451a8872012-02-14 12:58:25 +0100490 ( \
491 echo "NAME=Buildroot"; \
492 echo "VERSION=$(BR2_VERSION_FULL)"; \
493 echo "ID=buildroot"; \
494 echo "VERSION_ID=$(BR2_VERSION)"; \
495 echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \
496 ) > $(TARGET_DIR)/etc/os-release
Peter Korsgaard912ea812009-09-30 17:40:24 +0200497
Daniel Mackeed7d872009-07-08 22:46:58 +0200498ifneq ($(BR2_ROOTFS_POST_BUILD_SCRIPT),"")
Philippe Reynesdbf49782012-11-17 13:01:22 +0100499 @$(call MESSAGE,"Executing post-build script\(s\)")
500 @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \
501 $(s) $(TARGET_DIR)$(sep))
Daniel Mackeed7d872009-07-08 22:46:58 +0200502endif
503
Peter Korsgaardb87b4742009-04-06 09:21:26 +0000504ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
Thomas Petazzoni397fe5c2009-09-05 15:49:30 +0200505LOCALE_WHITELIST=$(BUILD_DIR)/locales.nopurge
Thomas Petazzoni6cdf2482009-07-30 17:28:20 +0200506LOCALE_NOPURGE=$(call qstrip,$(BR2_ENABLE_LOCALE_WHITELIST))
Peter Korsgaardb87b4742009-04-06 09:21:26 +0000507
508target-purgelocales:
509 rm -f $(LOCALE_WHITELIST)
510 for i in $(LOCALE_NOPURGE); do echo $$i >> $(LOCALE_WHITELIST); done
511
512 for dir in $(wildcard $(addprefix $(TARGET_DIR),/usr/share/locale /usr/share/X11/locale /usr/man /usr/share/man)); \
513 do \
514 for lang in $$(cd $$dir; ls .|grep -v man); \
515 do \
516 grep -qx $$lang $(LOCALE_WHITELIST) || rm -rf $$dir/$$lang; \
517 done; \
518 done
519endif
520
Thomas Petazzoniaebf1992012-05-08 04:39:22 +0000521ifneq ($(GENERATE_LOCALE),)
522# Generate locale data. Basically, we call the localedef program
523# (built by the host-localedef package) for each locale. The input
524# data comes preferably from the toolchain, or if the toolchain does
525# not have them (Linaro toolchains), we use the ones available on the
526# host machine.
527target-generatelocales: host-localedef
528 $(Q)mkdir -p $(TARGET_DIR)/usr/lib/locale/
529 $(Q)for locale in $(GENERATE_LOCALE) ; do \
530 inputfile=`echo $${locale} | cut -f1 -d'.'` ; \
531 charmap=`echo $${locale} | cut -f2 -d'.'` ; \
532 if test -z "$${charmap}" ; then \
533 charmap="UTF-8" ; \
534 fi ; \
535 echo "Generating locale $${inputfile}.$${charmap}" ; \
536 I18NPATH=$(STAGING_DIR)/usr/share/i18n:/usr/share/i18n \
537 $(HOST_DIR)/usr/bin/localedef \
538 --prefix=$(TARGET_DIR) \
539 --`echo $(BR2_ENDIAN) | tr [A-Z] [a-z]`-endian \
540 -i $${inputfile} -f $${charmap} \
541 $${locale} ; \
542 done
543endif
544
Thomas De Schampheleire4eb982c2011-07-27 11:34:51 +0200545source: dirs $(TARGETS_SOURCE) $(HOST_SOURCE)
Eric Andersenffde94b2001-12-22 00:56:11 +0000546
Peter Korsgaard155971e2008-03-04 12:19:16 +0000547external-deps:
Peter Korsgaard22c2c6b2010-11-19 14:20:56 +0100548 @$(MAKE) -Bs DL_MODE=SHOW_EXTERNAL_DEPS $(EXTRAMAKEARGS) source | sort -u
Peter Korsgaard155971e2008-03-04 12:19:16 +0000549
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200550legal-info-clean:
551 @rm -fr $(LEGAL_INFO_DIR)
552
553legal-info-prepare: $(LEGAL_INFO_DIR)
554 @$(call MESSAGE,"Collecting legal info")
555 @$(call legal-license-file,buildroot,COPYING,COPYING)
556 @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE)
557 @$(call legal-manifest,buildroot,$(BR2_VERSION_FULL),GPLv2+,COPYING,not saved)
558 @$(call legal-warning,the Buildroot source code has not been saved)
559 @$(call legal-warning,the toolchain has not been saved)
Yann E. MORINdcb79992013-01-13 11:52:21 +0000560 @cp $(BUILDROOT_CONFIG) $(LEGAL_INFO_DIR)/buildroot.config
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200561
562legal-info: dirs legal-info-clean legal-info-prepare $(REDIST_SOURCES_DIR) \
563 $(TARGETS_LEGAL_INFO)
564 @cat support/legal-info/README.header >>$(LEGAL_REPORT)
565 @if [ -r $(LEGAL_WARNINGS) ]; then \
566 cat support/legal-info/README.warnings-header \
567 $(LEGAL_WARNINGS) >>$(LEGAL_REPORT); \
568 cat $(LEGAL_WARNINGS); fi
569 @echo "Legal info produced in $(LEGAL_INFO_DIR)"
570 @rm -f $(LEGAL_WARNINGS)
571
Thomas Petazzonib7d6c8a2010-05-13 19:20:33 +0200572show-targets:
573 @echo $(TARGETS)
574
Bernhard Reutner-Fischercfe511b2007-09-29 13:58:30 +0000575else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
Eric Andersen2d523c22004-10-09 01:06:03 +0000576
577all: menuconfig
578
579# configuration
580# ---------------------------------------------------------------------------
581
Bernhard Reutner-Fischerc0d7d4e2007-07-09 18:23:20 +0000582HOSTCFLAGS=$(CFLAGS_FOR_BUILD)
583export HOSTCFLAGS
584
Peter Korsgaard2cc210c2010-06-20 23:05:32 +0200585$(BUILD_DIR)/buildroot-config/%onf:
586 mkdir -p $(@D)/lxdialog
Thomas Petazzoni17b66af2010-12-07 21:09:56 +0100587 $(MAKE) CC="$(HOSTCC_NOCCACHE)" HOSTCC="$(HOSTCC_NOCCACHE)" obj=$(@D) -C $(CONFIG) -f Makefile.br $(@F)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200588
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200589COMMON_CONFIG_ENV = \
590 KCONFIG_AUTOCONFIG=$(BUILD_DIR)/buildroot-config/auto.conf \
591 KCONFIG_AUTOHEADER=$(BUILD_DIR)/buildroot-config/autoconf.h \
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200592 KCONFIG_TRISTATE=$(BUILD_DIR)/buildroot-config/tristate.config \
Yann E. MORINdcb79992013-01-13 11:52:21 +0000593 BUILDROOT_CONFIG=$(BUILDROOT_CONFIG)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200594
Yann E. MORINaefad532010-09-26 10:56:12 +0200595xconfig: $(BUILD_DIR)/buildroot-config/qconf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000596 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard610255e2010-11-24 15:30:54 +0100597 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Alper Yildirimb0df9df2009-07-20 19:17:10 +0200598
Yann E. MORINaefad532010-09-26 10:56:12 +0200599gconfig: $(BUILD_DIR)/buildroot-config/gconf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000600 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard610255e2010-11-24 15:30:54 +0100601 @$(COMMON_CONFIG_ENV) srctree=$(TOPDIR) $< $(CONFIG_CONFIG_IN)
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200602
Yann E. MORINaefad532010-09-26 10:56:12 +0200603menuconfig: $(BUILD_DIR)/buildroot-config/mconf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000604 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard610255e2010-11-24 15:30:54 +0100605 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000606
Yann E. MORINaefad532010-09-26 10:56:12 +0200607nconfig: $(BUILD_DIR)/buildroot-config/nconf outputmakefile
Thomas Petazzoni8b6585a2010-08-21 17:21:40 +0200608 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard610255e2010-11-24 15:30:54 +0100609 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000610
Yann E. MORINaefad532010-09-26 10:56:12 +0200611config: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000612 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200613 @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000614
Yann E. MORINaefad532010-09-26 10:56:12 +0200615oldconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000616 mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200617 @$(COMMON_CONFIG_ENV) $< --oldconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000618
Yann E. MORINaefad532010-09-26 10:56:12 +0200619randconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000620 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200621 @$(COMMON_CONFIG_ENV) $< --randconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000622
Yann E. MORINaefad532010-09-26 10:56:12 +0200623allyesconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000624 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200625 @$(COMMON_CONFIG_ENV) $< --allyesconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000626
Yann E. MORINaefad532010-09-26 10:56:12 +0200627allnoconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000628 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200629 @$(COMMON_CONFIG_ENV) $< --allnoconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000630
Yann E. MORINaefad532010-09-26 10:56:12 +0200631randpackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000632 @mkdir -p $(BUILD_DIR)/buildroot-config
Yann E. MORINdcb79992013-01-13 11:52:21 +0000633 @grep -v BR2_PACKAGE_ $(BUILDROOT_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard8a46d4b2012-12-01 18:10:46 -0800634 @grep '^config BR2_PACKAGE_' Config.in.legacy | \
635 while read config pkg; do \
636 echo "# $$pkg is not set" >> $(CONFIG_DIR)/.config.nopkg; done
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200637 @$(COMMON_CONFIG_ENV) \
Will Wagner39ca6d52010-01-11 12:28:50 +0000638 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200639 $< --randconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000640 @rm -f $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard66527702009-10-04 21:57:12 +0200641
Yann E. MORINaefad532010-09-26 10:56:12 +0200642allyespackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000643 @mkdir -p $(BUILD_DIR)/buildroot-config
Yann E. MORINdcb79992013-01-13 11:52:21 +0000644 @grep -v BR2_PACKAGE_ $(BUILDROOT_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard8a46d4b2012-12-01 18:10:46 -0800645 @grep '^config BR2_PACKAGE_' Config.in.legacy | \
646 while read config pkg; do \
647 echo "# $$pkg is not set" >> $(CONFIG_DIR)/.config.nopkg; done
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200648 @$(COMMON_CONFIG_ENV) \
Will Wagner39ca6d52010-01-11 12:28:50 +0000649 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200650 $< --allyesconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000651 @rm -f $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard66527702009-10-04 21:57:12 +0200652
Yann E. MORINaefad532010-09-26 10:56:12 +0200653allnopackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000654 @mkdir -p $(BUILD_DIR)/buildroot-config
Yann E. MORINdcb79992013-01-13 11:52:21 +0000655 @grep -v BR2_PACKAGE_ $(BUILDROOT_CONFIG) > $(CONFIG_DIR)/.config.nopkg
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200656 @$(COMMON_CONFIG_ENV) \
Will Wagner39ca6d52010-01-11 12:28:50 +0000657 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200658 $< --allnoconfig $(CONFIG_CONFIG_IN)
Will Wagner39ca6d52010-01-11 12:28:50 +0000659 @rm -f $(CONFIG_DIR)/.config.nopkg
Peter Korsgaard66527702009-10-04 21:57:12 +0200660
Yann E. MORINaefad532010-09-26 10:56:12 +0200661silentoldconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Thomas Petazzoni0b368802010-08-22 07:27:09 +0200662 @mkdir -p $(BUILD_DIR)/buildroot-config
663 $(COMMON_CONFIG_ENV) $< --silentoldconfig $(CONFIG_CONFIG_IN)
664
Yann E. MORINaefad532010-09-26 10:56:12 +0200665defconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Will Wagner39ca6d52010-01-11 12:28:50 +0000666 @mkdir -p $(BUILD_DIR)/buildroot-config
Arnout Vandecappelle33f454b2012-04-28 07:14:50 +0000667 @$(COMMON_CONFIG_ENV) $< --defconfig$(if $(BR2_DEFCONFIG),=$(BR2_DEFCONFIG)) $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000668
Yann E. MORINaefad532010-09-26 10:56:12 +0200669%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(TOPDIR)/configs/%_defconfig outputmakefile
Thomas Petazzoni6f381192010-08-11 20:01:23 +0200670 @mkdir -p $(BUILD_DIR)/buildroot-config
Thomas Petazzoni1039eb72010-08-21 18:29:27 +0200671 @$(COMMON_CONFIG_ENV) $< --defconfig=$(TOPDIR)/configs/$@ $(CONFIG_CONFIG_IN)
Thomas Petazzoni6f381192010-08-11 20:01:23 +0200672
Yann E. MORINaefad532010-09-26 10:56:12 +0200673savedefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
Thomas Petazzonie1b1a182010-08-21 18:50:44 +0200674 @mkdir -p $(BUILD_DIR)/buildroot-config
Peter Korsgaard35ac32d2011-02-02 15:33:10 +0100675 @$(COMMON_CONFIG_ENV) $< --savedefconfig=$(CONFIG_DIR)/defconfig $(CONFIG_CONFIG_IN)
Eric Andersen2d523c22004-10-09 01:06:03 +0000676
Bernhard Reutner-Fischer6547bce2007-08-22 12:35:41 +0000677# check if download URLs are outdated
Thomas De Schampheleire07bae752012-06-21 19:38:42 +0000678source-check:
Yann E. MORIN7c297452011-07-14 13:02:33 +0200679 $(MAKE) DL_MODE=SOURCE_CHECK $(EXTRAMAKEARGS) source
Bernhard Reutner-Fischer825ff342007-06-07 12:57:03 +0000680
Peter Korsgaard406053d2009-11-20 14:05:48 +0100681endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
682
Eric Andersen2d523c22004-10-09 01:06:03 +0000683#############################################################
684#
685# Cleanup and misc junk
686#
687#############################################################
Yann E. MORINaefad532010-09-26 10:56:12 +0200688
689# outputmakefile generates a Makefile in the output directory, if using a
690# separate output directory. This allows convenient use of make in the
691# output directory.
692outputmakefile:
693ifeq ($(NEED_WRAPPER),y)
Thomas Petazzonif082c7c2011-08-31 23:35:02 +0200694 $(Q)$(TOPDIR)/support/scripts/mkmakefile $(TOPDIR) $(O)
Yann E. MORINaefad532010-09-26 10:56:12 +0200695endif
696
Eric Andersen2d523c22004-10-09 01:06:03 +0000697clean:
Peter Korsgaard406053d2009-11-20 14:05:48 +0100698 rm -rf $(STAGING_DIR) $(TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) \
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200699 $(STAMP_DIR) $(BUILD_DIR) $(TOOLCHAIN_DIR) $(BASE_DIR)/staging \
700 $(LEGAL_INFO_DIR)
Eric Andersen2d523c22004-10-09 01:06:03 +0000701
702distclean: clean
Peter Korsgaard406053d2009-11-20 14:05:48 +0100703ifeq ($(DL_DIR),$(TOPDIR)/dl)
704 rm -rf $(DL_DIR)
705endif
706ifeq ($(O),output)
707 rm -rf $(O)
708endif
Yann E. MORINdcb79992013-01-13 11:52:21 +0000709 rm -rf $(BUILDROOT_CONFIG) $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/.auto.deps
Eric Andersen2d523c22004-10-09 01:06:03 +0000710
Ulf Samuelssonb8f28d62007-09-28 16:18:16 +0000711cross: $(BASE_TARGETS)
712
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000713help:
714 @echo 'Cleaning:'
Peter Korsgaard406053d2009-11-20 14:05:48 +0100715 @echo ' clean - delete all files created by build'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000716 @echo ' distclean - delete all non-source files (including .config)'
717 @echo
718 @echo 'Build:'
719 @echo ' all - make world'
Stephan Hoffmann040f6a32012-04-06 18:44:22 +0200720 @echo ' <package>-rebuild - force recompile <package>'
721 @echo ' <package>-reconfigure - force reconfigure <package>'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000722 @echo
723 @echo 'Configuration:'
724 @echo ' menuconfig - interactive curses-based configurator'
Peter Korsgaard15f5bef2011-02-01 08:41:01 +0100725 @echo ' nconfig - interactive ncurses-based configurator'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200726 @echo ' xconfig - interactive Qt-based configurator'
Peter Korsgaard2b42aae2010-06-05 21:09:05 +0200727 @echo ' gconfig - interactive GTK-based configurator'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000728 @echo ' oldconfig - resolve any unresolved symbols in .config'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200729 @echo ' randconfig - New config with random answer to all options'
730 @echo ' defconfig - New config with default answer to all options'
Arnout Vandecappelle33f454b2012-04-28 07:14:50 +0000731 @echo ' BR2_DEFCONFIG, if set, is used as input'
Peter Korsgaardd7051da2010-12-07 12:16:44 +0100732 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
Peter Korsgaardc48bbb82009-10-04 21:42:54 +0200733 @echo ' allyesconfig - New config where all options are accepted with yes'
734 @echo ' allnoconfig - New config where all options are answered with no'
Peter Korsgaard66527702009-10-04 21:57:12 +0200735 @echo ' randpackageconfig - New config with random answer to package options'
736 @echo ' allyespackageconfig - New config where pkg options are accepted with yes'
737 @echo ' allnopackageconfig - New config where package options are answered with no'
Peter Korsgaard4bb33dc2011-04-25 00:10:45 +0200738ifeq ($(BR2_PACKAGE_BUSYBOX),y)
739 @echo ' busybox-menuconfig - Run BusyBox menuconfig'
740endif
741ifeq ($(BR2_LINUX_KERNEL),y)
742 @echo ' linux-menuconfig - Run Linux kernel menuconfig'
Jean-Christophe PLAGNIOL-VILLARDf5777ce2011-08-22 21:28:47 +0200743 @echo ' linux-savedefconfig - Run Linux kernel savedefconfig'
Peter Korsgaard4bb33dc2011-04-25 00:10:45 +0200744endif
745ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
746 @echo ' uclibc-menuconfig - Run uClibc menuconfig'
747endif
748ifeq ($(BR2_TOOLCHAIN_CTNG),y)
749 @echo ' ctng-menuconfig - Run crosstool-NG menuconfig'
750endif
Jean-Christophe PLAGNIOL-VILLARD83f1bf92011-08-22 21:28:48 +0200751ifeq ($(BR2_TARGET_BAREBOX),y)
752 @echo ' barebox-menuconfig - Run barebox menuconfig'
753 @echo ' barebox-savedefconfig - Run barebox savedefconfig'
754endif
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000755 @echo
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200756 @echo 'Documentation:'
757 @echo ' manual - build manual in HTML, split HTML, PDF and txt'
758 @echo ' manual-html - build manual in HTML'
759 @echo ' manual-split-html - build manual in split HTML'
760 @echo ' manual-pdf - build manual in PDF'
761 @echo ' manual-txt - build manual in txt'
762 @echo ' manual-epub - build manual in ePub'
763 @echo
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000764 @echo 'Miscellaneous:'
765 @echo ' source - download all sources needed for offline-build'
Thomas De Schampheleire07bae752012-06-21 19:38:42 +0000766 @echo ' source-check - check selected packages for valid download URLs'
Peter Korsgaard155971e2008-03-04 12:19:16 +0000767 @echo ' external-deps - list external packages used'
Luca Ceresoli7e76f902012-05-17 19:33:00 +0200768 @echo ' legal-info - generate info about license compliance'
Bernhard Reutner-Fischere491fba2007-07-08 12:20:58 +0000769 @echo
Peter Korsgaard15f5bef2011-02-01 08:41:01 +0100770 @echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build'
771 @echo ' make O=dir - Locate all output files in "dir", including .config'
772 @echo
Danomi Mocelopolisb9796192011-07-17 22:17:08 +0200773 @$(foreach b, $(sort $(notdir $(wildcard $(TOPDIR)/configs/*_defconfig))), \
Peter Korsgaard58fd7792009-10-04 22:09:25 +0200774 printf " %-35s - Build for %s\\n" $(b) $(b:_defconfig=);)
775 @echo
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200776 @echo 'See docs/README, or generate the Buildroot manual for further details'
Bernhard Reutner-Fischer663dee42007-08-27 21:40:42 +0000777 @echo
Bernhard Reutner-Fischerba2e7e02007-06-25 10:56:13 +0000778
Yann E. MORINe5e8fae2010-10-31 17:35:10 +0100779release: OUT=buildroot-$(BR2_VERSION)
Peter Korsgaard0dca7062010-11-04 00:00:00 +0100780
Peter Korsgaard134ab1c2012-02-03 22:03:29 +0100781# Create release tarballs. We need to fiddle a bit to add the generated
782# documentation to the git output
Peter Korsgaard0dca7062010-11-04 00:00:00 +0100783release:
Peter Korsgaard134ab1c2012-02-03 22:03:29 +0100784 git archive --format=tar --prefix=$(OUT)/ master > $(OUT).tar
785 $(MAKE) O=$(OUT) manual-html manual-txt manual-pdf
786 tar rf $(OUT).tar $(OUT)
787 gzip -9 -c < $(OUT).tar > $(OUT).tar.gz
788 bzip2 -9 -c < $(OUT).tar > $(OUT).tar.bz2
789 rm -rf $(OUT) $(OUT).tar
Peter Korsgaarde62d2ec2009-01-15 19:36:06 +0000790
Arnout Vandecappelle (Essensium/Mind)2b91ab72012-03-11 12:16:39 +0100791print-version:
792 @echo $(BR2_VERSION_FULL)
793
Thomas Petazzonib7285d02012-04-17 16:45:22 +0200794include docs/manual/manual.mk
Thomas Petazzoni8792cf92011-10-10 10:46:40 +0200795
Peter Korsgaard66527702009-10-04 21:57:12 +0200796.PHONY: $(noconfig_targets)