1 # Makefile for buildroot
3 # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
4 # Copyright (C) 2006-2014 by the Buildroot developers <buildroot@uclibc.org>
5 # Copyright (C) 2014 by the Buildroot developers <buildroot@buildroot.org>
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #--------------------------------------------------------------
23 # Just run 'make menuconfig', configure stuff, then run 'make'.
24 # You shouldn't need to mess with anything beyond this point...
25 #--------------------------------------------------------------
27 # Set and export the version string
28 export BR2_VERSION
:=2014.05-git
30 # Check for minimal make version (note: this check will break at make 10.x)
32 ifneq ($(firstword $(sort $(MAKE_VERSION
) $(MIN_MAKE_VERSION
))),$(MIN_MAKE_VERSION
))
33 $(error You have make
'$(MAKE_VERSION)' installed. GNU make
>= $(MIN_MAKE_VERSION
) is required
)
36 export HOSTARCH
:= $(shell uname
-m | \
46 # Parallel execution of this Makefile is disabled because it changes
47 # the packages building order, that can be a problem for two reasons:
48 # - If a package has an unspecified optional dependency and that
49 # dependency is present when the package is built, it is used,
50 # otherwise it isn't (but compilation happily proceeds) so the end
51 # result will differ if the order is swapped due to parallel
53 # - Also changing the building order can be a problem if two packages
54 # manipulate the same file in the target directory.
56 # Taking into account the above considerations, if you still want to execute
57 # this top-level Makefile in parallel comment the ".NOTPARALLEL" line and
58 # build using the following command:
59 # make BR2_JLEVEL= -j$((`getconf _NPROCESSORS_ONLN`+1))
64 CONFIG_CONFIG_IN
=Config.in
65 CONFIG
=support
/kconfig
66 DATE
:=$(shell date
+%Y
%m
%d
)
68 # Compute the full local version string so packages can use it as-is
69 # Need to export it, so it can be got from environment in children (eg. mconf)
70 export BR2_VERSION_FULL
:=$(BR2_VERSION
)$(shell $(TOPDIR
)/support
/scripts
/setlocalversion
)
72 noconfig_targets
:=menuconfig nconfig gconfig xconfig config oldconfig randconfig \
73 defconfig
%_defconfig allyesconfig allnoconfig silentoldconfig release \
74 randpackageconfig allyespackageconfig allnopackageconfig \
75 source-check print-version olddefconfig
77 # Strip quotes and then whitespaces
78 qstrip
=$(strip $(subst ",,$(1)))
81 # Variables for use in Make constructs
84 space
:=$(empty
) $(empty
)
86 ifneq ("$(origin O)", "command line")
91 # other packages might also support Linux-style out of tree builds
92 # with the O=<dir> syntax (E.G. Busybox does). As make automatically
93 # forwards command line variable definitions those packages get very
94 # confused. Fix this by telling make to not do so
96 # strangely enough O is still passed to submakes with MAKEOVERRIDES
97 # (with make 3.81 atleast), the only thing that changes is the output
98 # of the origin function (command line -> environment).
99 # Unfortunately some packages don't look at origin (E.G. uClibc 0.9.31+)
100 # To really make O go away, we have to override it.
103 # we need to pass O= everywhere we call back into the toplevel makefile
104 EXTRAMAKEARGS
= O
=$(O
)
108 # bash prints the name of the directory on 'cd <dir>' if CDPATH is
109 # set, so unset it here to not cause problems. Notice that the export
110 # line doesn't affect the environment of $(shell ..) calls, so
111 # explictly throw away any output from 'cd' here.
113 BASE_DIR
:= $(shell mkdir
-p
$(O
) && cd
$(O
) >/dev
/null
&& pwd
)
114 $(if
$(BASE_DIR
),, $(error output directory
"$(O)" does not exist
))
117 # Handling of BR2_EXTERNAL.
119 # The value of BR2_EXTERNAL is stored in .br-external in the output directory.
120 # On subsequent invocations of make, it is read in. It can still be overridden
121 # on the command line, therefore the file is re-created every time make is run.
123 # When BR2_EXTERNAL is not set, the .br-external file is removed and we point
124 # to support/dummy-external. This makes sure we can unconditionally include the
125 # Config.in and external.mk from the BR2_EXTERNAL directory. In this case,
126 # override is necessary so the user can clear BR2_EXTERNAL from the command
127 # line, but the dummy path is still used internally.
129 BR2_EXTERNAL_FILE
= $(BASE_DIR
)/.br-external
130 -include $(BR2_EXTERNAL_FILE
)
131 ifeq ($(BR2_EXTERNAL
),)
132 override BR2_EXTERNAL
= support
/dummy-external
133 $(shell rm -f
$(BR2_EXTERNAL_FILE
))
135 _BR2_EXTERNAL
= $(shell cd
$(BR2_EXTERNAL
) >/dev
/null
2>&1 && pwd
)
136 ifeq ($(_BR2_EXTERNAL
),)
137 $(error BR2_EXTERNAL
='$(BR2_EXTERNAL)' does not exist
, relative to
$(TOPDIR
))
139 override BR2_EXTERNAL
:= $(_BR2_EXTERNAL
)
140 $(shell echo BR2_EXTERNAL ?
= $(BR2_EXTERNAL
) > $(BR2_EXTERNAL_FILE
))
143 # To make sure the the environment variable overrides the .config option,
144 # set this before including .config.
145 ifneq ($(BR2_DL_DIR
),)
146 DL_DIR
:= $(BR2_DL_DIR
)
150 # Need that early, before we scan packages
151 # Avoids doing the $(or...) everytime
152 _BR2_GRAPH_OUT
:= $(or
$(BR2_GRAPH_OUT
),pdf
)
154 BUILD_DIR
:=$(BASE_DIR
)/build
155 BINARIES_DIR
:=$(BASE_DIR
)/images
156 TARGET_DIR
:=$(BASE_DIR
)/target
157 # initial definition so that 'make clean' works for most users, even without
158 # .config. HOST_DIR will be overwritten later when .config is included.
159 HOST_DIR
:=$(BASE_DIR
)/host
161 LEGAL_INFO_DIR
=$(BASE_DIR
)/legal-info
162 REDIST_SOURCES_DIR_TARGET
=$(LEGAL_INFO_DIR
)/sources
163 REDIST_SOURCES_DIR_HOST
=$(LEGAL_INFO_DIR
)/host-sources
164 LICENSE_FILES_DIR_TARGET
=$(LEGAL_INFO_DIR
)/licenses
165 LICENSE_FILES_DIR_HOST
=$(LEGAL_INFO_DIR
)/host-licenses
166 LEGAL_MANIFEST_CSV_TARGET
=$(LEGAL_INFO_DIR
)/manifest.csv
167 LEGAL_MANIFEST_CSV_HOST
=$(LEGAL_INFO_DIR
)/host-manifest.csv
168 LEGAL_LICENSES_TXT_TARGET
=$(LEGAL_INFO_DIR
)/licenses.txt
169 LEGAL_LICENSES_TXT_HOST
=$(LEGAL_INFO_DIR
)/host-licenses.txt
170 LEGAL_WARNINGS
=$(LEGAL_INFO_DIR
)/.warnings
171 LEGAL_REPORT
=$(LEGAL_INFO_DIR
)/README
173 BR2_CONFIG
=$(CONFIG_DIR
)/.config
175 # Pull in the user's configuration file
176 ifeq ($(filter $(noconfig_targets
),$(MAKECMDGOALS
)),)
177 -include $(BR2_CONFIG
)
180 # To put more focus on warnings, be less verbose as default
181 # Use 'make V=1' to see the full commands
183 ifeq ("$(origin V)", "command line")
187 ifndef KBUILD_VERBOSE
191 ifeq ($(KBUILD_VERBOSE
),1)
202 # we want bash as shell
203 SHELL
:=$(shell if
[ -x
"$$BASH" ]; then echo
$$BASH; \
204 else if
[ -x
/bin
/bash
]; then echo
/bin
/bash
; \
205 else echo sh
; fi
; fi
)
207 # kconfig uses CONFIG_SHELL
208 CONFIG_SHELL
:=$(SHELL
)
210 export SHELL CONFIG_SHELL quiet Q KBUILD_VERBOSE VERBOSE
220 HOSTCC
:=$(shell which
$(HOSTCC
) || type
-p
$(HOSTCC
) || echo gcc
)
222 HOSTCC_NOCCACHE
:=$(HOSTCC
)
225 HOSTCXX
:=$(shell which
$(HOSTCXX
) || type
-p
$(HOSTCXX
) || echo g
++)
227 HOSTCXX_NOCCACHE
:=$(HOSTCXX
)
249 HOSTAR
:=$(shell which
$(HOSTAR
) || type
-p
$(HOSTAR
) || echo
ar)
250 HOSTAS
:=$(shell which
$(HOSTAS
) || type
-p
$(HOSTAS
) || echo
as)
251 HOSTFC
:=$(shell which
$(HOSTLD
) || type
-p
$(HOSTLD
) || echo || which g77 || type
-p g77 || echo gfortran
)
252 HOSTCPP
:=$(shell which
$(HOSTCPP
) || type
-p
$(HOSTCPP
) || echo
cpp)
253 HOSTLD
:=$(shell which
$(HOSTLD
) || type
-p
$(HOSTLD
) || echo
ld)
254 HOSTLN
:=$(shell which
$(HOSTLN
) || type
-p
$(HOSTLN
) || echo ln
)
255 HOSTNM
:=$(shell which
$(HOSTNM
) || type
-p
$(HOSTNM
) || echo nm
)
256 HOSTOBJCOPY
:=$(shell which
$(HOSTOBJCOPY
) || type
-p
$(HOSTOBJCOPY
) || echo objcopy
)
257 HOSTRANLIB
:=$(shell which
$(HOSTRANLIB
) || type
-p
$(HOSTRANLIB
) || echo ranlib
)
259 export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTFC HOSTLD
260 export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
262 # Make sure pkg-config doesn't look outside the buildroot tree
263 unexport PKG_CONFIG_PATH
264 unexport PKG_CONFIG_SYSROOT_DIR
265 unexport PKG_CONFIG_LIBDIR
267 # Having DESTDIR set in the environment confuses the installation
268 # steps of some packages.
271 # Causes breakage with packages that needs host-ruby
274 ifeq ($(BR2_HAVE_DOT_CONFIG
),y
)
276 ################################################################################
278 # Hide troublesome environment variables from sub processes
280 ################################################################################
281 unexport CROSS_COMPILE
288 unexport GREP_OPTIONS
294 GNU_HOST_NAME
:=$(shell support
/gnuconfig
/config.guess
)
296 ################################################################################
298 # The list of stuff to build for the target toolchain
299 # along with the packages to build for the target.
301 ################################################################################
305 # silent mode requested?
306 QUIET
:=$(if
$(findstring s
,$(MAKEFLAGS
)),-q
)
308 # Strip off the annoying quoting
309 ARCH
:=$(call qstrip
,$(BR2_ARCH
))
311 KERNEL_ARCH
:=$(shell echo
"$(ARCH)" | sed
-e
"s/-.*//" \
312 -e s
/i
.86/i386
/ -e s
/sun4u
/sparc64
/ \
315 -e s
/arm.
*/arm
/ -e s
/sa110
/arm
/ \
316 -e s
/aarch64
/arm64
/ \
317 -e s
/bfin
/blackfin
/ \
318 -e s
/parisc64
/parisc
/ \
319 -e s
/powerpc64
/powerpc
/ \
320 -e s
/ppc.
*/powerpc
/ -e s
/mips.
*/mips
/ \
322 -e s
/microblazeel
/microblaze
/)
324 ZCAT
:=$(call qstrip
,$(BR2_ZCAT
))
325 BZCAT
:=$(call qstrip
,$(BR2_BZCAT
))
326 XZCAT
:=$(call qstrip
,$(BR2_XZCAT
))
327 TAR_OPTIONS
=$(call qstrip
,$(BR2_TAR_OPTIONS
)) -xf
329 # packages compiled for the host go here
330 HOST_DIR
:=$(call qstrip
,$(BR2_HOST_DIR
))
332 # locales to generate
333 GENERATE_LOCALE
=$(call qstrip
,$(BR2_GENERATE_LOCALE
))
335 TARGET_SKELETON
=$(TOPDIR
)/system
/skeleton
337 # Location of a file giving a big fat warning that output/target
338 # should not be used as the root filesystem.
339 TARGET_DIR_WARNING_FILE
=$(TARGET_DIR
)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
341 ifeq ($(BR2_CCACHE
),y
)
342 CCACHE
:=$(HOST_DIR
)/usr
/bin
/ccache
343 BR_CACHE_DIR
= $(call qstrip
,$(BR2_CCACHE_DIR
))
345 HOSTCC
:= $(CCACHE
) $(HOSTCC
)
346 HOSTCXX
:= $(CCACHE
) $(HOSTCXX
)
349 # Scripts in support/ or post-build scripts may need to reference
350 # these locations, so export them so it is easier to use
358 ################################################################################
360 # You should probably leave this stuff alone unless you know
361 # what you are doing.
363 ################################################################################
367 # Include legacy before the other things, because package .mk files
369 ifneq ($(BR2_DEPRECATED
),y
)
370 include Makefile.legacy
373 include package
/Makefile.in
374 include support
/dependencies
/dependencies.mk
376 # We also need the various per-package makefiles, which also add
377 # each selected package to TARGETS if that package was selected
378 # in the .config file.
379 include toolchain
/helpers.mk
380 include toolchain
/*/*.mk
382 # Include the package override file if one has been provided in the
384 PACKAGE_OVERRIDE_FILE
=$(call qstrip
,$(BR2_PACKAGE_OVERRIDE_FILE
))
385 ifneq ($(PACKAGE_OVERRIDE_FILE
),)
386 -include $(PACKAGE_OVERRIDE_FILE
)
389 include $(sort $(wildcard package
/*/*.mk
))
391 include boot
/common.mk
392 include linux
/linux.mk
393 include system
/system.mk
395 include $(BR2_EXTERNAL
)/external.mk
397 ifeq ($(BR2_ENABLE_LOCALE_PURGE
),y
)
398 TARGETS
+=target-purgelocales
401 ifeq ($(BR2_TOOLCHAIN_USES_GLIBC
),y
)
402 ifneq ($(GENERATE_LOCALE
),)
403 TARGETS
+=target-generatelocales
407 ifeq ($(BR2_ECLIPSE_REGISTER
),y
)
408 TARGETS
+=toolchain-eclipse-register
413 TARGETS_SOURCE
:=$(patsubst %,%-source
,$(TARGETS
))
414 TARGETS_DIRCLEAN
:=$(patsubst %,%-dirclean
,$(TARGETS
))
416 # host-* dependencies have to be handled specially, as those aren't
417 # visible in Kconfig and hence not added to a variable like TARGETS.
418 # instead, find all the host-* targets listed in each <PKG>_DEPENDENCIES
419 # variable for each enabled target.
420 # Notice: this only works for newstyle gentargets/autotargets packages
421 TARGETS_HOST_DEPS
= $(sort $(filter host-
%,$(foreach dep
,\
422 $(addsuffix _DEPENDENCIES
,$(call UPPERCASE
,$(TARGETS
))),\
424 # Host packages can in turn have their own dependencies. Likewise find
425 # all the package names listed in the HOST_<PKG>_DEPENDENCIES for each
426 # host package found above. Ideally this should be done recursively until
427 # no more packages are found, but that's hard to do in make, so limit to
429 HOST_DEPS
= $(sort $(foreach dep
,\
430 $(addsuffix _DEPENDENCIES
,$(call UPPERCASE
,$(TARGETS_HOST_DEPS
))),\
432 HOST_SOURCE
+= $(addsuffix -source
,$(sort $(TARGETS_HOST_DEPS
) $(HOST_DEPS
)))
434 TARGETS_LEGAL_INFO
:=$(patsubst %,%-legal-info
,\
435 $(TARGETS
) $(TARGETS_HOST_DEPS
) $(HOST_DEPS
))))
437 dirs
: $(BUILD_DIR
) $(STAGING_DIR
) $(TARGET_DIR
) \
438 $(HOST_DIR
) $(BINARIES_DIR
)
440 $(BUILD_DIR
)/buildroot-config
/auto.conf
: $(BR2_CONFIG
)
441 $(MAKE1
) $(EXTRAMAKEARGS
) HOSTCC
="$(HOSTCC_NOCCACHE)" HOSTCXX
="$(HOSTCXX_NOCCACHE)" silentoldconfig
443 prepare
: $(BUILD_DIR
)/buildroot-config
/auto.conf
445 # Add base dependencies to all targets even on those not based on the
447 $(TARGETS
): dirs prepare dependencies
449 world
: target-post-image
451 .PHONY
: all world toolchain dirs
clean distclean source outputmakefile \
452 legal-info legal-info-prepare legal-info-clean printvars \
453 target-finalize target-post-image \
454 $(TARGETS
) $(TARGETS_ROOTFS
) \
455 $(TARGETS_DIRCLEAN
) $(TARGETS_SOURCE
) $(TARGETS_LEGAL_INFO
) \
456 $(BUILD_DIR
) $(STAGING_DIR
) $(TARGET_DIR
) \
457 $(HOST_DIR
) $(BINARIES_DIR
)
459 ################################################################################
461 # staging and target directories do NOT list these as
462 # dependencies anywhere else
464 ################################################################################
465 $(BUILD_DIR
) $(HOST_DIR
) $(BINARIES_DIR
) $(LEGAL_INFO_DIR
) $(REDIST_SOURCES_DIR_TARGET
) $(REDIST_SOURCES_DIR_HOST
):
468 # We make a symlink lib32->lib or lib64->lib as appropriate
469 # MIPS64/n32 requires lib32 even though it's a 64-bit arch.
470 ifeq ($(BR2_ARCH_IS_64
)$(BR2_MIPS_NABI32
),y
)
477 @mkdir
-p
$(STAGING_DIR
)/bin
478 @mkdir
-p
$(STAGING_DIR
)/lib
479 @ln
-snf lib
$(STAGING_DIR
)/$(LIB_SYMLINK
)
480 @mkdir
-p
$(STAGING_DIR
)/usr
/lib
481 @ln
-snf lib
$(STAGING_DIR
)/usr
/$(LIB_SYMLINK
)
482 @mkdir
-p
$(STAGING_DIR
)/usr
/include
483 @mkdir
-p
$(STAGING_DIR
)/usr
/bin
484 @ln
-snf
$(STAGING_DIR
) $(BASE_DIR
)/staging
486 ifeq ($(BR2_ROOTFS_SKELETON_CUSTOM
),y
)
487 TARGET_SKELETON
=$(BR2_ROOTFS_SKELETON_CUSTOM_PATH
)
490 RSYNC_VCS_EXCLUSIONS
= \
491 --exclude .svn
--exclude .git
--exclude .hg
--exclude .bzr \
495 mkdir
-p
$(TARGET_DIR
)
496 rsync
-a
--ignore-times
$(RSYNC_VCS_EXCLUSIONS
) \
497 --chmod
=Du
+w
--exclude .empty
--exclude
'*~' \
498 $(TARGET_SKELETON
)/ $(TARGET_DIR
)/
499 $(INSTALL
) -m
0644 support
/misc
/target-dir-warning.txt
$(TARGET_DIR_WARNING_FILE
)
500 @ln
-snf lib
$(TARGET_DIR
)/$(LIB_SYMLINK
)
501 @mkdir
-p
$(TARGET_DIR
)/usr
502 @ln
-snf lib
$(TARGET_DIR
)/usr
/$(LIB_SYMLINK
)
505 $(TARGET_DIR
): $(BUILD_DIR
)/.root
507 STRIP_FIND_CMD
= find
$(TARGET_DIR
)
508 ifneq (,$(call qstrip
,$(BR2_STRIP_EXCLUDE_DIRS
)))
509 STRIP_FIND_CMD
+= \
( $(call finddirclauses
,$(TARGET_DIR
),$(call qstrip
,$(BR2_STRIP_EXCLUDE_DIRS
))) \
) -prune
-o
511 STRIP_FIND_CMD
+= -type f \
( -perm
/111 -o
-name
'*.so*' \
)
512 STRIP_FIND_CMD
+= -not \
( $(call findfileclauses
,libpthread
*.so
* $(call qstrip
,$(BR2_STRIP_EXCLUDE_FILES
))) \
) -print
514 $(TARGETS_ROOTFS
): target-finalize
516 target-finalize
: $(TARGETS
)
517 rm -rf
$(TARGET_DIR
)/usr
/include $(TARGET_DIR
)/usr
/share
/aclocal \
518 $(TARGET_DIR
)/usr
/lib
/pkgconfig
$(TARGET_DIR
)/usr
/share
/pkgconfig \
519 $(TARGET_DIR
)/usr
/lib
/cmake
$(TARGET_DIR
)/usr
/share
/cmake
520 find
$(TARGET_DIR
)/usr
/{lib
,share
}/ -name
'*.cmake' -print0 | xargs
-0 rm -f
521 find
$(TARGET_DIR
)/lib \
( -name
'*.a' -o
-name
'*.la' \
) -print0 | xargs
-0 rm -f
522 find
$(TARGET_DIR
)/usr
/lib \
( -name
'*.a' -o
-name
'*.la' \
) -print0 | xargs
-0 rm -f
523 ifneq ($(BR2_PACKAGE_GDB
),y
)
524 rm -rf
$(TARGET_DIR
)/usr
/share
/gdb
526 rm -rf
$(TARGET_DIR
)/usr
/man
$(TARGET_DIR
)/usr
/share
/man
527 rm -rf
$(TARGET_DIR
)/usr
/info $(TARGET_DIR
)/usr
/share
/info
528 rm -rf
$(TARGET_DIR
)/usr
/doc
$(TARGET_DIR
)/usr
/share
/doc
529 rm -rf
$(TARGET_DIR
)/usr
/share
/gtk-doc
530 -rmdir
$(TARGET_DIR
)/usr
/share
2>/dev
/null
531 ifeq ($(BR2_PACKAGE_PYTHON_PY_ONLY
)$(BR2_PACKAGE_PYTHON3_PY_ONLY
),y
)
532 find
$(TARGET_DIR
)/usr
/lib
/ -name
'*.pyc' -print0 | xargs
-0 rm -f
534 ifeq ($(BR2_PACKAGE_PYTHON_PYC_ONLY
)$(BR2_PACKAGE_PYTHON3_PYC_ONLY
),y
)
535 find
$(TARGET_DIR
)/usr
/lib
/ -name
'*.py' -print0 | xargs
-0 rm -f
537 rm -rf
$(TARGET_DIR
)/usr
/lib
/luarocks
538 $(STRIP_FIND_CMD
) | xargs
$(STRIPCMD
) 2>/dev
/null || true
539 if
test -d
$(TARGET_DIR
)/lib
/modules
; then \
540 find
$(TARGET_DIR
)/lib
/modules
-type f
-name
'*.ko' | \
541 xargs
-r
$(KSTRIPCMD
); fi
543 # See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads
544 # besides the one in which crash occurred; or SIGTRAP kills my program when
545 # I set a breakpoint"
546 ifeq ($(BR2_TOOLCHAIN_HAS_THREADS
),y
)
547 find
$(TARGET_DIR
)/lib
-type f
-name
'libpthread*.so*' | \
548 xargs
-r
$(STRIPCMD
) $(STRIP_STRIP_DEBUG
)
551 mkdir
-p
$(TARGET_DIR
)/etc
552 # Mandatory configuration file and auxilliary cache directory
553 # for recent versions of ldconfig
554 touch
$(TARGET_DIR
)/etc
/ld.so.conf
555 mkdir
-p
$(TARGET_DIR
)/var
/cache
/ldconfig
556 if
[ -x
"$(TARGET_CROSS)ldconfig" ]; \
558 $(TARGET_CROSS
)ldconfig
-r
$(TARGET_DIR
); \
560 /sbin
/ldconfig
-r
$(TARGET_DIR
); \
563 echo
"NAME=Buildroot"; \
564 echo
"VERSION=$(BR2_VERSION_FULL)"; \
565 echo
"ID=buildroot"; \
566 echo
"VERSION_ID=$(BR2_VERSION)"; \
567 echo
"PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \
568 ) > $(TARGET_DIR
)/etc
/os-release
570 @
$(foreach d
, $(call qstrip
,$(BR2_ROOTFS_OVERLAY
)), \
571 $(call MESSAGE
,"Copying overlay $(d)"); \
572 rsync
-a
--ignore-times
$(RSYNC_VCS_EXCLUSIONS
) \
573 --chmod
=Du
+w
--exclude .empty
--exclude
'*~' \
574 $(d
)/ $(TARGET_DIR
)$(sep
))
576 @
$(foreach s
, $(call qstrip
,$(BR2_ROOTFS_POST_BUILD_SCRIPT
)), \
577 $(call MESSAGE
,"Executing post-build script $(s)"); \
578 $(USER_HOOKS_EXTRA_ENV
) $(s
) $(TARGET_DIR
) $(call qstrip
,$(BR2_ROOTFS_POST_SCRIPT_ARGS
))$(sep
))
580 ifeq ($(BR2_ENABLE_LOCALE_PURGE
),y
)
581 LOCALE_WHITELIST
=$(BUILD_DIR
)/locales.nopurge
582 LOCALE_NOPURGE
=$(call qstrip
,$(BR2_ENABLE_LOCALE_WHITELIST
))
585 rm -f
$(LOCALE_WHITELIST
)
586 for i in
$(LOCALE_NOPURGE
); do echo
$$i >> $(LOCALE_WHITELIST
); done
588 for
dir in
$(wildcard $(addprefix $(TARGET_DIR
),/usr
/share
/locale
/usr
/share
/X11
/locale
/usr
/man
/usr
/share
/man
/usr
/lib
/locale
)); \
590 for lang in
$$(cd
$$dir; ls .|grep
-v man
); \
592 grep
-qx
$$lang $(LOCALE_WHITELIST
) ||
rm -rf
$$dir/$$lang; \
597 ifneq ($(GENERATE_LOCALE
),)
598 # Generate locale data. Basically, we call the localedef program
599 # (built by the host-localedef package) for each locale. The input
600 # data comes preferably from the toolchain, or if the toolchain does
601 # not have them (Linaro toolchains), we use the ones available on the
603 target-generatelocales
: host-localedef
604 $(Q
)mkdir
-p
$(TARGET_DIR
)/usr
/lib
/locale
/
605 $(Q
)for locale in
$(GENERATE_LOCALE
) ; do \
606 inputfile
=`echo $${locale} | cut -f1 -d'.'` ; \
607 charmap
=`echo $${locale} | cut -f2 -d'.' -s` ; \
608 if
test -z
"$${charmap}" ; then \
611 echo
"Generating locale $${inputfile}.$${charmap}" ; \
612 I18NPATH
=$(STAGING_DIR
)/usr
/share
/i18n
:/usr
/share
/i18n \
613 $(HOST_DIR
)/usr
/bin
/localedef \
614 --prefix=$(TARGET_DIR
) \
615 --$(call LOWERCASE
,$(BR2_ENDIAN
))-endian \
616 -i
$${inputfile} -f
$${charmap} \
621 target-post-image
: $(TARGETS_ROOTFS
) target-finalize
622 @
$(foreach s
, $(call qstrip
,$(BR2_ROOTFS_POST_IMAGE_SCRIPT
)), \
623 $(call MESSAGE
,"Executing post-image script $(s)"); \
624 $(USER_HOOKS_EXTRA_ENV
) $(s
) $(BINARIES_DIR
) $(call qstrip
,$(BR2_ROOTFS_POST_SCRIPT_ARGS
))$(sep
))
626 toolchain-eclipse-register
:
627 .
/support
/scripts
/eclipse-register-toolchain
`readlink -f $(O)` $(notdir $(TARGET_CROSS
)) $(BR2_ARCH
)
629 source
: dirs
$(TARGETS_SOURCE
) $(HOST_SOURCE
)
632 @
$(MAKE1
) -Bs DL_MODE
=SHOW_EXTERNAL_DEPS
$(EXTRAMAKEARGS
) source |
sort -u
635 @
rm -fr
$(LEGAL_INFO_DIR
)
637 legal-info-prepare
: $(LEGAL_INFO_DIR
)
638 @
$(call MESSAGE
,"Collecting legal info")
639 @
$(call legal-license-file
,buildroot
,COPYING
,COPYING
,HOST
)
640 @
$(call legal-manifest
,PACKAGE
,VERSION
,LICENSE
,LICENSE FILES
,SOURCE ARCHIVE
,TARGET
)
641 @
$(call legal-manifest
,PACKAGE
,VERSION
,LICENSE
,LICENSE FILES
,SOURCE ARCHIVE
,HOST
)
642 @
$(call legal-manifest
,buildroot
,$(BR2_VERSION_FULL
),GPLv2
+,COPYING
,not saved
,HOST
)
643 @
$(call legal-warning
,the Buildroot source code has not been saved
)
644 @
$(call legal-warning
,the toolchain has not been saved
)
645 @cp
$(BR2_CONFIG
) $(LEGAL_INFO_DIR
)/buildroot.config
647 legal-info
: dirs legal-info-clean legal-info-prepare
$(TARGETS_LEGAL_INFO
) \
648 $(REDIST_SOURCES_DIR_TARGET
) $(REDIST_SOURCES_DIR_HOST
)
649 @cat support
/legal-info
/README.header
>>$(LEGAL_REPORT
)
650 @if
[ -r
$(LEGAL_WARNINGS
) ]; then \
651 cat support
/legal-info
/README.warnings-header \
652 $(LEGAL_WARNINGS
) >>$(LEGAL_REPORT
); \
653 cat
$(LEGAL_WARNINGS
); fi
654 @echo
"Legal info produced in $(LEGAL_INFO_DIR)"
655 @
rm -f
$(LEGAL_WARNINGS
)
658 @echo
$(TARGETS
) $(TARGETS_ROOTFS
)
660 graph-build
: $(O
)/build
/build-time.log
661 @
install -d
$(O
)/graphs
662 $(foreach o
,name build duration
,.
/support
/scripts
/graph-build-time \
663 --type
=histogram
--order
=$(o
) --input
=$(<) \
664 --output
=$(O
)/graphs
/build.hist-
$(o
).
$(_BR2_GRAPH_OUT
) \
665 $(if
$(BR2_GRAPH_ALT
),--alternate-colors
)$(sep
))
666 $(foreach t
,packages steps
,.
/support
/scripts
/graph-build-time \
667 --type
=pie-
$(t
) --input
=$(<) \
668 --output
=$(O
)/graphs
/build.pie-
$(t
).
$(_BR2_GRAPH_OUT
) \
669 $(if
$(BR2_GRAPH_ALT
),--alternate-colors
)$(sep
))
672 @
$(INSTALL
) -d
$(O
)/graphs
673 @cd
"$(CONFIG_DIR)"; \
674 $(TOPDIR
)/support
/scripts
/graph-depends \
675 |dot
-T
$(_BR2_GRAPH_OUT
) -o
$(O
)/graphs
/$(@
).
$(_BR2_GRAPH_OUT
)
677 else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
681 endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
684 # ---------------------------------------------------------------------------
686 HOSTCFLAGS
=$(CFLAGS_FOR_BUILD
)
689 $(BUILD_DIR
)/buildroot-config
/%onf
:
690 mkdir
-p
$(@D
)/lxdialog
691 $(MAKE
) CC
="$(HOSTCC_NOCCACHE)" HOSTCC
="$(HOSTCC_NOCCACHE)" obj
=$(@D
) -C
$(CONFIG
) -f Makefile.br
$(@F
)
693 DEFCONFIG
= $(call qstrip
,$(BR2_DEFCONFIG
))
695 # We don't want to fully expand BR2_DEFCONFIG here, so Kconfig will
696 # recognize that if it's still at its default $(CONFIG_DIR)/defconfig
697 COMMON_CONFIG_ENV
= \
698 BR2_DEFCONFIG
='$(call qstrip,$(value BR2_DEFCONFIG))' \
699 KCONFIG_AUTOCONFIG
=$(BUILD_DIR
)/buildroot-config
/auto.conf \
700 KCONFIG_AUTOHEADER
=$(BUILD_DIR
)/buildroot-config
/autoconf.h \
701 KCONFIG_TRISTATE
=$(BUILD_DIR
)/buildroot-config
/tristate.config \
702 BR2_CONFIG
=$(BR2_CONFIG
) \
703 BR2_EXTERNAL
=$(BR2_EXTERNAL
)
705 xconfig
: $(BUILD_DIR
)/buildroot-config
/qconf outputmakefile
706 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
707 @
$(COMMON_CONFIG_ENV
) $< $(CONFIG_CONFIG_IN
)
709 gconfig
: $(BUILD_DIR
)/buildroot-config
/gconf outputmakefile
710 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
711 @
$(COMMON_CONFIG_ENV
) srctree
=$(TOPDIR
) $< $(CONFIG_CONFIG_IN
)
713 menuconfig
: $(BUILD_DIR
)/buildroot-config
/mconf outputmakefile
714 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
715 @
$(COMMON_CONFIG_ENV
) $< $(CONFIG_CONFIG_IN
)
717 nconfig
: $(BUILD_DIR
)/buildroot-config
/nconf outputmakefile
718 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
719 @
$(COMMON_CONFIG_ENV
) $< $(CONFIG_CONFIG_IN
)
721 config
: $(BUILD_DIR
)/buildroot-config
/conf outputmakefile
722 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
723 @
$(COMMON_CONFIG_ENV
) $< $(CONFIG_CONFIG_IN
)
725 oldconfig
: $(BUILD_DIR
)/buildroot-config
/conf outputmakefile
726 mkdir
-p
$(BUILD_DIR
)/buildroot-config
727 @
$(COMMON_CONFIG_ENV
) $< --oldconfig
$(CONFIG_CONFIG_IN
)
729 randconfig
: $(BUILD_DIR
)/buildroot-config
/conf outputmakefile
730 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
731 @
$(COMMON_CONFIG_ENV
) $< --randconfig
$(CONFIG_CONFIG_IN
)
733 allyesconfig
: $(BUILD_DIR
)/buildroot-config
/conf outputmakefile
734 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
735 @
$(COMMON_CONFIG_ENV
) $< --allyesconfig
$(CONFIG_CONFIG_IN
)
737 allnoconfig
: $(BUILD_DIR
)/buildroot-config
/conf outputmakefile
738 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
739 @
$(COMMON_CONFIG_ENV
) $< --allnoconfig
$(CONFIG_CONFIG_IN
)
741 randpackageconfig
: $(BUILD_DIR
)/buildroot-config
/conf outputmakefile
742 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
743 @grep
-v BR2_PACKAGE_
$(BR2_CONFIG
) > $(CONFIG_DIR
)/.config.nopkg
744 @grep
'^config BR2_PACKAGE_' Config.in.legacy | \
745 while read config pkg
; do \
746 echo
"# $$pkg is not set" >> $(CONFIG_DIR
)/.config.nopkg
; done
747 @
$(COMMON_CONFIG_ENV
) \
748 KCONFIG_ALLCONFIG
=$(CONFIG_DIR
)/.config.nopkg \
749 $< --randconfig
$(CONFIG_CONFIG_IN
)
750 @
rm -f
$(CONFIG_DIR
)/.config.nopkg
752 allyespackageconfig
: $(BUILD_DIR
)/buildroot-config
/conf outputmakefile
753 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
754 @grep
-v BR2_PACKAGE_
$(BR2_CONFIG
) > $(CONFIG_DIR
)/.config.nopkg
755 @grep
'^config BR2_PACKAGE_' Config.in.legacy | \
756 while read config pkg
; do \
757 echo
"# $$pkg is not set" >> $(CONFIG_DIR
)/.config.nopkg
; done
758 @
$(COMMON_CONFIG_ENV
) \
759 KCONFIG_ALLCONFIG
=$(CONFIG_DIR
)/.config.nopkg \
760 $< --allyesconfig
$(CONFIG_CONFIG_IN
)
761 @
rm -f
$(CONFIG_DIR
)/.config.nopkg
763 allnopackageconfig
: $(BUILD_DIR
)/buildroot-config
/conf outputmakefile
764 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
765 @grep
-v BR2_PACKAGE_
$(BR2_CONFIG
) > $(CONFIG_DIR
)/.config.nopkg
766 @
$(COMMON_CONFIG_ENV
) \
767 KCONFIG_ALLCONFIG
=$(CONFIG_DIR
)/.config.nopkg \
768 $< --allnoconfig
$(CONFIG_CONFIG_IN
)
769 @
rm -f
$(CONFIG_DIR
)/.config.nopkg
771 silentoldconfig
: $(BUILD_DIR
)/buildroot-config
/conf outputmakefile
772 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
773 $(COMMON_CONFIG_ENV
) $< --silentoldconfig
$(CONFIG_CONFIG_IN
)
775 olddefconfig
: $(BUILD_DIR
)/buildroot-config
/conf outputmakefile
776 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
777 $(COMMON_CONFIG_ENV
) $< --olddefconfig
$(CONFIG_CONFIG_IN
)
779 defconfig
: $(BUILD_DIR
)/buildroot-config
/conf outputmakefile
780 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
781 @
$(COMMON_CONFIG_ENV
) $< --defconfig
$(if
$(DEFCONFIG
),=$(DEFCONFIG
)) $(CONFIG_CONFIG_IN
)
783 %_defconfig
: $(BUILD_DIR
)/buildroot-config
/conf
$(TOPDIR
)/configs
/%_defconfig outputmakefile
784 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
785 @
$(COMMON_CONFIG_ENV
) $< --defconfig
=$(TOPDIR
)/configs
/$@
$(CONFIG_CONFIG_IN
)
787 %_defconfig
: $(BUILD_DIR
)/buildroot-config
/conf
$(BR2_EXTERNAL
)/configs
/%_defconfig outputmakefile
788 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
789 @
$(COMMON_CONFIG_ENV
) $< --defconfig
=$(BR2_EXTERNAL
)/configs
/$@
$(CONFIG_CONFIG_IN
)
791 savedefconfig
: $(BUILD_DIR
)/buildroot-config
/conf outputmakefile
792 @mkdir
-p
$(BUILD_DIR
)/buildroot-config
793 @
$(COMMON_CONFIG_ENV
) $< \
794 --savedefconfig
=$(if
$(DEFCONFIG
),$(DEFCONFIG
),$(CONFIG_DIR
)/defconfig
) \
797 # check if download URLs are outdated
799 $(MAKE1
) DL_MODE
=SOURCE_CHECK
$(EXTRAMAKEARGS
) source
801 .PHONY
: defconfig savedefconfig
803 ################################################################################
805 # Cleanup and misc junk
807 ################################################################################
809 # outputmakefile generates a Makefile in the output directory, if using a
810 # separate output directory. This allows convenient use of make in the
813 ifeq ($(NEED_WRAPPER
),y
)
814 $(Q
)$(TOPDIR
)/support
/scripts
/mkmakefile
$(TOPDIR
) $(O
)
817 # printvars prints all the variables currently defined in our Makefiles
820 $(sort $(.VARIABLES
)), \
821 $(if
$(filter-out environment
% default automatic
, \
823 $(info $V=$($V) ($(value
$V)))))
826 rm -rf
$(TARGET_DIR
) $(BINARIES_DIR
) $(HOST_DIR
) \
827 $(BUILD_DIR
) $(BASE_DIR
)/staging \
831 ifeq ($(DL_DIR
),$(TOPDIR
)/dl
)
837 rm -rf
$(BR2_CONFIG
) $(CONFIG_DIR
)/.config.old
$(CONFIG_DIR
)/.auto.deps
841 @echo
' clean - delete all files created by build'
842 @echo
' distclean - delete all non-source files (including .config)'
845 @echo
' all - make world'
846 @echo
' toolchain - build toolchain'
847 @echo
' <package>-rebuild - force recompile <package>'
848 @echo
' <package>-reconfigure - force reconfigure <package>'
849 @echo
' <package>-graph-depends - generate graph of the dependency tree for package'
851 @echo
'Configuration:'
852 @echo
' menuconfig - interactive curses-based configurator'
853 @echo
' nconfig - interactive ncurses-based configurator'
854 @echo
' xconfig - interactive Qt-based configurator'
855 @echo
' gconfig - interactive GTK-based configurator'
856 @echo
' oldconfig - resolve any unresolved symbols in .config'
857 @echo
' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
858 @echo
' olddefconfig - Same as silentoldconfig but sets new symbols to their default value'
859 @echo
' randconfig - New config with random answer to all options'
860 @echo
' defconfig - New config with default answer to all options'
861 @echo
' BR2_DEFCONFIG, if set, is used as input'
862 @echo
' savedefconfig - Save current config as ./defconfig (minimal config)'
863 @echo
' allyesconfig - New config where all options are accepted with yes'
864 @echo
' allnoconfig - New config where all options are answered with no'
865 @echo
' randpackageconfig - New config with random answer to package options'
866 @echo
' allyespackageconfig - New config where pkg options are accepted with yes'
867 @echo
' allnopackageconfig - New config where package options are answered with no'
868 ifeq ($(BR2_PACKAGE_BUSYBOX
),y
)
869 @echo
' busybox-menuconfig - Run BusyBox menuconfig'
871 ifeq ($(BR2_LINUX_KERNEL
),y
)
872 @echo
' linux-menuconfig - Run Linux kernel menuconfig'
873 @echo
' linux-savedefconfig - Run Linux kernel savedefconfig'
875 ifeq ($(BR2_TOOLCHAIN_BUILDROOT
),y
)
876 @echo
' uclibc-menuconfig - Run uClibc menuconfig'
878 ifeq ($(BR2_TARGET_BAREBOX
),y
)
879 @echo
' barebox-menuconfig - Run barebox menuconfig'
880 @echo
' barebox-savedefconfig - Run barebox savedefconfig'
883 @echo
'Documentation:'
884 @echo
' manual - build manual in all formats'
885 @echo
' manual-html - build manual in HTML'
886 @echo
' manual-split-html - build manual in split HTML'
887 @echo
' manual-pdf - build manual in PDF'
888 @echo
' manual-text - build manual in text'
889 @echo
' manual-epub - build manual in ePub'
890 @echo
' graph-build - generate graphs of the build times'
891 @echo
' graph-depends - generate graph of the dependency tree'
893 @echo
'Miscellaneous:'
894 @echo
' source - download all sources needed for offline-build'
895 @echo
' source-check - check selected packages for valid download URLs'
896 @echo
' external-deps - list external packages used'
897 @echo
' legal-info - generate info about license compliance'
899 @echo
' make V=0|1 - 0 => quiet build (default), 1 => verbose build'
900 @echo
' make O=dir - Locate all output files in "dir", including .config'
902 @echo
'Built-in configs:'
903 @
$(foreach b
, $(sort $(notdir $(wildcard $(TOPDIR
)/configs
/*_defconfig
))), \
904 printf
" %-35s - Build for %s\\n" $(b
) $(b
:_defconfig
=);)
905 ifneq ($(wildcard $(BR2_EXTERNAL
)/configs
/*_defconfig
),)
907 @echo
'User-provided configs:'
908 @
$(foreach b
, $(sort $(notdir $(wildcard $(BR2_EXTERNAL
)/configs
/*_defconfig
))), \
909 printf
" %-35s - Build for %s\\n" $(b
) $(b
:_defconfig
=);)
912 @echo
'See docs/README, or generate the Buildroot manual for further details'
915 release
: OUT
=buildroot-
$(BR2_VERSION
)
917 # Create release tarballs. We need to fiddle a bit to add the generated
918 # documentation to the git output
920 git archive
--format
=tar --prefix=$(OUT
)/ HEAD
> $(OUT
).
tar
921 $(MAKE
) O
=$(OUT
) manual-html manual-text manual-pdf
922 tar rf
$(OUT
).
tar $(OUT
)
923 gzip
-9 -c
< $(OUT
).
tar > $(OUT
).
tar.gz
924 bzip2
-9 -c
< $(OUT
).
tar > $(OUT
).
tar.bz2
925 rm -rf
$(OUT
) $(OUT
).
tar
928 @echo
$(BR2_VERSION_FULL
)
930 include docs
/manual
/manual.mk
932 .PHONY
: $(noconfig_targets
)