]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - Makefile
Prepare for 2013.08-rc1
[coffee/buildroot.git] / Makefile
1 # Makefile for buildroot2
2 #
3 # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
4 # Copyright (C) 2006-2013 by the Buildroot developers <buildroot@uclibc.org>
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # 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.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # General Public License for more details.
15 #
16 # 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 #
20
21 #--------------------------------------------------------------
22 # Just run 'make menuconfig', configure stuff, then run 'make'.
23 # You shouldn't need to mess with anything beyond this point...
24 #--------------------------------------------------------------
25
26 # Set and export the version string
27 export BR2_VERSION:=2013.08-rc1
28
29 # Check for minimal make version (note: this check will break at make 10.x)
30 MIN_MAKE_VERSION=3.81
31 ifneq ($(firstword $(sort $(MAKE_VERSION) $(MIN_MAKE_VERSION))),$(MIN_MAKE_VERSION))
32 $(error You have make '$(MAKE_VERSION)' installed. GNU make >= $(MIN_MAKE_VERSION) is required)
33 endif
34
35 export 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
45 # This top-level Makefile can *not* be executed in parallel
46 .NOTPARALLEL:
47
48 # absolute path
49 TOPDIR:=$(shell pwd)
50 CONFIG_CONFIG_IN=Config.in
51 CONFIG=support/kconfig
52 DATE:=$(shell date +%Y%m%d)
53
54 # 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)
56 export BR2_VERSION_FULL:=$(BR2_VERSION)$(shell $(TOPDIR)/support/scripts/setlocalversion)
57
58 noconfig_targets:=menuconfig nconfig gconfig xconfig config oldconfig randconfig \
59         %_defconfig allyesconfig allnoconfig silentoldconfig release \
60         randpackageconfig allyespackageconfig allnopackageconfig \
61         source-check print-version olddefconfig
62
63 # Strip quotes and then whitespaces
64 qstrip=$(strip $(subst ",,$(1)))
65 #"))
66
67 # Variables for use in Make constructs
68 comma:=,
69 empty:=
70 space:=$(empty) $(empty)
71
72 ifneq ("$(origin O)", "command line")
73 O:=output
74 CONFIG_DIR:=$(TOPDIR)
75 NEED_WRAPPER=
76 else
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
81 MAKEOVERRIDES =
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.
87 override O:=$(O)
88 CONFIG_DIR:=$(O)
89 # we need to pass O= everywhere we call back into the toplevel makefile
90 EXTRAMAKEARGS = O=$(O)
91 NEED_WRAPPER=y
92 endif
93
94 BUILDROOT_CONFIG=$(CONFIG_DIR)/.config
95
96 # Pull in the user's configuration file
97 ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
98 -include $(BUILDROOT_CONFIG)
99 endif
100
101 # To put more focus on warnings, be less verbose as default
102 # Use 'make V=1' to see the full commands
103 ifdef V
104   ifeq ("$(origin V)", "command line")
105     KBUILD_VERBOSE=$(V)
106   endif
107 endif
108 ifndef KBUILD_VERBOSE
109   KBUILD_VERBOSE=0
110 endif
111
112 ifeq ($(KBUILD_VERBOSE),1)
113   quiet=
114   Q=
115 ifndef VERBOSE
116   VERBOSE=1
117 endif
118 else
119   quiet=quiet_
120   Q=@
121 endif
122
123 # we want bash as shell
124 SHELL:=$(shell if [ -x "$$BASH" ]; then echo $$BASH; \
125         else if [ -x /bin/bash ]; then echo /bin/bash; \
126         else echo sh; fi; fi)
127
128 # kconfig uses CONFIG_SHELL
129 CONFIG_SHELL:=$(SHELL)
130
131 export SHELL CONFIG_SHELL quiet Q KBUILD_VERBOSE VERBOSE
132
133 ifndef HOSTAR
134 HOSTAR:=ar
135 endif
136 ifndef HOSTAS
137 HOSTAS:=as
138 endif
139 ifndef HOSTCC
140 HOSTCC:=gcc
141 HOSTCC:=$(shell which $(HOSTCC) || type -p $(HOSTCC) || echo gcc)
142 endif
143 HOSTCC_NOCCACHE:=$(HOSTCC)
144 ifndef HOSTCXX
145 HOSTCXX:=g++
146 HOSTCXX:=$(shell which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++)
147 endif
148 HOSTCXX_NOCCACHE:=$(HOSTCXX)
149 ifndef HOSTFC
150 HOSTFC:=gfortran
151 endif
152 ifndef HOSTCPP
153 HOSTCPP:=cpp
154 endif
155 ifndef HOSTLD
156 HOSTLD:=ld
157 endif
158 ifndef HOSTLN
159 HOSTLN:=ln
160 endif
161 ifndef HOSTNM
162 HOSTNM:=nm
163 endif
164 HOSTAR:=$(shell which $(HOSTAR) || type -p $(HOSTAR) || echo ar)
165 HOSTAS:=$(shell which $(HOSTAS) || type -p $(HOSTAS) || echo as)
166 HOSTFC:=$(shell which $(HOSTLD) || type -p $(HOSTLD) || echo || which g77 || type -p g77 || echo gfortran)
167 HOSTCPP:=$(shell which $(HOSTCPP) || type -p $(HOSTCPP) || echo cpp)
168 HOSTLD:=$(shell which $(HOSTLD) || type -p $(HOSTLD) || echo ld)
169 HOSTLN:=$(shell which $(HOSTLN) || type -p $(HOSTLN) || echo ln)
170 HOSTNM:=$(shell which $(HOSTNM) || type -p $(HOSTNM) || echo nm)
171
172 export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTFC HOSTLD
173 export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE
174
175 # Make sure pkg-config doesn't look outside the buildroot tree
176 unexport PKG_CONFIG_PATH
177 unexport PKG_CONFIG_SYSROOT_DIR
178
179 # Having DESTDIR set in the environment confuses the installation
180 # steps of some packages.
181 unexport DESTDIR
182
183 # Causes breakage with packages that needs host-ruby
184 unexport RUBYOPT
185
186 # bash prints the name of the directory on 'cd <dir>' if CDPATH is
187 # set, so unset it here to not cause problems. Notice that the export
188 # line doesn't affect the environment of $(shell ..) calls, so
189 # explictly throw away any output from 'cd' here.
190 export CDPATH:=
191 BASE_DIR := $(shell mkdir -p $(O) && cd $(O) >/dev/null && pwd)
192 $(if $(BASE_DIR),, $(error output directory "$(O)" does not exist))
193
194 BUILD_DIR:=$(BASE_DIR)/build
195
196
197 ifeq ($(BR2_HAVE_DOT_CONFIG),y)
198
199 ################################################################################
200 #
201 # Hide troublesome environment variables from sub processes
202 #
203 ################################################################################
204 unexport CROSS_COMPILE
205 unexport ARCH
206 unexport CC
207 unexport CXX
208 unexport CPP
209 unexport CFLAGS
210 unexport CXXFLAGS
211 unexport GREP_OPTIONS
212 unexport CONFIG_SITE
213 unexport QMAKESPEC
214 unexport TERMINFO
215
216 GNU_HOST_NAME:=$(shell support/gnuconfig/config.guess)
217
218 ################################################################################
219 #
220 # The list of stuff to build for the target toolchain
221 # along with the packages to build for the target.
222 #
223 ################################################################################
224
225 ifeq ($(BR2_CCACHE),y)
226 BASE_TARGETS += host-ccache
227 endif
228
229 ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
230 BASE_TARGETS += toolchain-buildroot
231 else ifeq ($(BR2_TOOLCHAIN_EXTERNAL),y)
232 BASE_TARGETS += toolchain-external
233 else ifeq ($(BR2_TOOLCHAIN_CTNG),y)
234 BASE_TARGETS += toolchain-crosstool-ng
235 endif
236
237 TARGETS:=
238
239 # silent mode requested?
240 QUIET:=$(if $(findstring s,$(MAKEFLAGS)),-q)
241
242 # Strip off the annoying quoting
243 ARCH:=$(call qstrip,$(BR2_ARCH))
244
245 KERNEL_ARCH:=$(shell echo "$(ARCH)" | sed -e "s/-.*//" \
246         -e s/i.86/i386/ -e s/sun4u/sparc64/ \
247         -e s/arcle/arc/ \
248         -e s/arceb/arc/ \
249         -e s/arm.*/arm/ -e s/sa110/arm/ \
250         -e s/aarch64/arm64/ \
251         -e s/bfin/blackfin/ \
252         -e s/parisc64/parisc/ \
253         -e s/powerpc64/powerpc/ \
254         -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
255         -e s/sh.*/sh/)
256
257 ZCAT:=$(call qstrip,$(BR2_ZCAT))
258 BZCAT:=$(call qstrip,$(BR2_BZCAT))
259 XZCAT:=$(call qstrip,$(BR2_XZCAT))
260 TAR_OPTIONS=$(call qstrip,$(BR2_TAR_OPTIONS)) -xf
261
262 # packages compiled for the host go here
263 HOST_DIR:=$(call qstrip,$(BR2_HOST_DIR))
264
265 # locales to generate
266 GENERATE_LOCALE=$(call qstrip,$(BR2_GENERATE_LOCALE))
267
268 # stamp (dependency) files go here
269 STAMP_DIR:=$(BASE_DIR)/stamps
270
271 BINARIES_DIR:=$(BASE_DIR)/images
272 TARGET_DIR:=$(BASE_DIR)/target
273 TARGET_SKELETON=$(TOPDIR)/system/skeleton
274
275 LEGAL_INFO_DIR=$(BASE_DIR)/legal-info
276 REDIST_SOURCES_DIR=$(LEGAL_INFO_DIR)/sources
277 LICENSE_FILES_DIR=$(LEGAL_INFO_DIR)/licenses
278 LEGAL_MANIFEST_CSV=$(LEGAL_INFO_DIR)/manifest.csv
279 LEGAL_LICENSES_TXT=$(LEGAL_INFO_DIR)/licenses.txt
280 LEGAL_WARNINGS=$(LEGAL_INFO_DIR)/.warnings
281 LEGAL_REPORT=$(LEGAL_INFO_DIR)/README
282
283 # Location of a file giving a big fat warning that output/target
284 # should not be used as the root filesystem.
285 TARGET_DIR_WARNING_FILE=$(TARGET_DIR)/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM
286
287 ifeq ($(BR2_CCACHE),y)
288 CCACHE:=$(HOST_DIR)/usr/bin/ccache
289 BUILDROOT_CACHE_DIR = $(call qstrip,$(BR2_CCACHE_DIR))
290 export BUILDROOT_CACHE_DIR
291 HOSTCC  := $(CCACHE) $(HOSTCC)
292 HOSTCXX := $(CCACHE) $(HOSTCXX)
293 endif
294
295 # Scripts in support/ or post-build scripts may need to reference
296 # these locations, so export them so it is easier to use
297 export BUILDROOT_CONFIG
298 export TARGET_DIR
299 export STAGING_DIR
300 export HOST_DIR
301 export BINARIES_DIR
302 export BASE_DIR
303
304 ################################################################################
305 #
306 # You should probably leave this stuff alone unless you know
307 # what you are doing.
308 #
309 ################################################################################
310
311 all: world
312
313 # Include legacy before the other things, because package .mk files
314 # may rely on it.
315 ifneq ($(BR2_DEPRECATED),y)
316 include Makefile.legacy
317 endif
318
319 include package/Makefile.in
320 include support/dependencies/dependencies.mk
321
322 # We also need the various per-package makefiles, which also add
323 # each selected package to TARGETS if that package was selected
324 # in the .config file.
325 ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
326 include toolchain/toolchain-buildroot.mk
327 else ifeq ($(BR2_TOOLCHAIN_EXTERNAL),y)
328 include toolchain/toolchain-external.mk
329 else ifeq ($(BR2_TOOLCHAIN_CTNG),y)
330 include toolchain/toolchain-crosstool-ng.mk
331 endif
332
333 # Include the package override file if one has been provided in the
334 # configuration.
335 PACKAGE_OVERRIDE_FILE=$(call qstrip,$(BR2_PACKAGE_OVERRIDE_FILE))
336 ifneq ($(PACKAGE_OVERRIDE_FILE),)
337 -include $(PACKAGE_OVERRIDE_FILE)
338 endif
339
340 include package/*/*.mk
341
342 include boot/common.mk
343 include linux/linux.mk
344 include system/system.mk
345
346 TARGETS+=target-finalize
347
348 ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
349 TARGETS+=target-purgelocales
350 endif
351
352 ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y)
353 ifneq ($(GENERATE_LOCALE),)
354 TARGETS+=target-generatelocales
355 endif
356 endif
357
358 ifeq ($(BR2_ECLIPSE_REGISTER),y)
359 TARGETS+=toolchain-eclipse-register
360 endif
361
362 include fs/common.mk
363
364 TARGETS+=target-post-image
365
366 TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
367 TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS) $(BASE_TARGETS))
368 TARGETS_DIRCLEAN:=$(patsubst %,%-dirclean,$(TARGETS))
369 TARGETS_ALL:=$(patsubst %,__real_tgt_%,$(TARGETS))
370
371 # host-* dependencies have to be handled specially, as those aren't
372 # visible in Kconfig and hence not added to a variable like TARGETS.
373 # instead, find all the host-* targets listed in each <PKG>_DEPENDENCIES
374 # variable for each enabled target.
375 # Notice: this only works for newstyle gentargets/autotargets packages
376 TARGETS_HOST_DEPS = $(sort $(filter host-%,$(foreach dep,\
377                 $(addsuffix _DEPENDENCIES,$(call UPPERCASE,$(TARGETS))),\
378                 $($(dep)))))
379 # Host packages can in turn have their own dependencies. Likewise find
380 # all the package names listed in the HOST_<PKG>_DEPENDENCIES for each
381 # host package found above. Ideally this should be done recursively until
382 # no more packages are found, but that's hard to do in make, so limit to
383 # 1 level for now.
384 HOST_DEPS = $(sort $(foreach dep,\
385                 $(addsuffix _DEPENDENCIES,$(call UPPERCASE,$(TARGETS_HOST_DEPS))),\
386                 $($(dep))))
387 HOST_SOURCE += $(addsuffix -source,$(sort $(TARGETS_HOST_DEPS) $(HOST_DEPS)))
388
389 TARGETS_LEGAL_INFO:=$(patsubst %,%-legal-info,\
390                 $(TARGETS) $(BASE_TARGETS) $(TARGETS_HOST_DEPS) $(HOST_DEPS))))
391
392 # all targets depend on the crosscompiler and it's prerequisites
393 $(TARGETS_ALL): __real_tgt_%: $(BASE_TARGETS) %
394
395 dirs: $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
396         $(HOST_DIR) $(BINARIES_DIR) $(STAMP_DIR)
397
398 $(BASE_TARGETS): dirs $(HOST_DIR)/usr/share/buildroot/toolchainfile.cmake
399
400 $(BUILD_DIR)/buildroot-config/auto.conf: $(BUILDROOT_CONFIG)
401         $(MAKE) $(EXTRAMAKEARGS) HOSTCC="$(HOSTCC_NOCCACHE)" HOSTCXX="$(HOSTCXX_NOCCACHE)" silentoldconfig
402
403 prepare: $(BUILD_DIR)/buildroot-config/auto.conf
404
405 toolchain: prepare dirs dependencies $(BASE_TARGETS)
406
407 world: toolchain $(TARGETS_ALL)
408
409 .PHONY: all world toolchain dirs clean distclean source outputmakefile \
410         legal-info legal-info-prepare legal-info-clean printvars \
411         $(BASE_TARGETS) $(TARGETS) $(TARGETS_ALL) \
412         $(TARGETS_CLEAN) $(TARGETS_DIRCLEAN) $(TARGETS_SOURCE) $(TARGETS_LEGAL_INFO) \
413         $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
414         $(HOST_DIR) $(BINARIES_DIR) $(STAMP_DIR)
415
416 ################################################################################
417 #
418 # staging and target directories do NOT list these as
419 # dependencies anywhere else
420 #
421 ################################################################################
422 $(BUILD_DIR) $(HOST_DIR) $(BINARIES_DIR) $(STAMP_DIR) $(LEGAL_INFO_DIR) $(REDIST_SOURCES_DIR):
423         @mkdir -p $@
424
425 $(STAGING_DIR):
426         @mkdir -p $(STAGING_DIR)/bin
427         @mkdir -p $(STAGING_DIR)/lib
428         @mkdir -p $(STAGING_DIR)/usr/lib
429         @mkdir -p $(STAGING_DIR)/usr/include
430         @mkdir -p $(STAGING_DIR)/usr/bin
431         @ln -snf $(STAGING_DIR) $(BASE_DIR)/staging
432
433 ifeq ($(BR2_ROOTFS_SKELETON_CUSTOM),y)
434 TARGET_SKELETON=$(BR2_ROOTFS_SKELETON_CUSTOM_PATH)
435 endif
436
437 $(BUILD_DIR)/.root:
438         mkdir -p $(TARGET_DIR)
439         rsync -a \
440                 --exclude .empty --exclude .svn --exclude .git \
441                 --exclude .hg --exclude=CVS --exclude '*~' \
442                 $(TARGET_SKELETON)/ $(TARGET_DIR)/
443         cp support/misc/target-dir-warning.txt $(TARGET_DIR_WARNING_FILE)
444         touch $@
445
446 $(TARGET_DIR): $(BUILD_DIR)/.root
447
448 STRIP_FIND_CMD = find $(TARGET_DIR)
449 ifneq (,$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS)))
450 STRIP_FIND_CMD += \( $(call finddirclauses,$(TARGET_DIR),$(call qstrip,$(BR2_STRIP_EXCLUDE_DIRS))) \) -prune -o
451 endif
452 STRIP_FIND_CMD += -type f -perm /111
453 STRIP_FIND_CMD += -not \( $(call findfileclauses,libpthread*.so* $(call qstrip,$(BR2_STRIP_EXCLUDE_FILES))) \) -print
454
455 target-finalize:
456         rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/share/aclocal \
457                 $(TARGET_DIR)/usr/lib/pkgconfig $(TARGET_DIR)/usr/share/pkgconfig \
458                 $(TARGET_DIR)/usr/lib/cmake $(TARGET_DIR)/usr/share/cmake
459         find $(TARGET_DIR)/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f
460         find $(TARGET_DIR)/lib \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
461         find $(TARGET_DIR)/usr/lib \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f
462 ifneq ($(BR2_PACKAGE_GDB),y)
463         rm -rf $(TARGET_DIR)/usr/share/gdb
464 endif
465 ifneq ($(BR2_HAVE_DOCUMENTATION),y)
466         rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/man
467         rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info
468         rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc
469         rm -rf $(TARGET_DIR)/usr/share/gtk-doc
470         -rmdir $(TARGET_DIR)/usr/share 2>/dev/null
471 endif
472 ifeq ($(BR2_PACKAGE_PYTHON_PY_ONLY),y)
473         find $(TARGET_DIR)/usr/lib/ -name '*.pyc' -print0 | xargs -0 rm -f
474 endif
475 ifeq ($(BR2_PACKAGE_PYTHON_PYC_ONLY),y)
476         find $(TARGET_DIR)/usr/lib/ -name '*.py' -print0 | xargs -0 rm -f
477 endif
478         $(STRIP_FIND_CMD) | xargs $(STRIPCMD) 2>/dev/null || true
479         find $(TARGET_DIR)/lib/modules -type f -name '*.ko' | \
480                 xargs -r $(KSTRIPCMD) || true
481
482 # See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads
483 # besides the one in which crash occurred; or SIGTRAP kills my program when
484 # I set a breakpoint"
485 ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
486         find $(TARGET_DIR)/lib -type f -name 'libpthread*.so*' | \
487                 xargs $(STRIPCMD) $(STRIP_STRIP_DEBUG) || true
488 endif
489
490         mkdir -p $(TARGET_DIR)/etc
491         # Mandatory configuration file and auxilliary cache directory
492         # for recent versions of ldconfig
493         touch $(TARGET_DIR)/etc/ld.so.conf
494         mkdir -p $(TARGET_DIR)/var/cache/ldconfig
495         if [ -x "$(TARGET_CROSS)ldconfig" ]; \
496         then \
497                 $(TARGET_CROSS)ldconfig -r $(TARGET_DIR); \
498         else \
499                 /sbin/ldconfig -r $(TARGET_DIR); \
500         fi
501         ( \
502                 echo "NAME=Buildroot"; \
503                 echo "VERSION=$(BR2_VERSION_FULL)"; \
504                 echo "ID=buildroot"; \
505                 echo "VERSION_ID=$(BR2_VERSION)"; \
506                 echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \
507         ) >  $(TARGET_DIR)/etc/os-release
508
509         @$(foreach d, $(call qstrip,$(BR2_ROOTFS_OVERLAY)), \
510                 $(call MESSAGE,"Copying overlay $(d)"); \
511                 rsync -a \
512                         --exclude .empty --exclude .svn --exclude .git \
513                         --exclude .hg --exclude=CVS --exclude '*~' \
514                         $(d)/ $(TARGET_DIR)$(sep))
515
516         @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \
517                 $(call MESSAGE,"Executing post-build script $(s)"); \
518                 $(s) $(TARGET_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
519
520 ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
521 LOCALE_WHITELIST=$(BUILD_DIR)/locales.nopurge
522 LOCALE_NOPURGE=$(call qstrip,$(BR2_ENABLE_LOCALE_WHITELIST))
523
524 target-purgelocales:
525         rm -f $(LOCALE_WHITELIST)
526         for i in $(LOCALE_NOPURGE); do echo $$i >> $(LOCALE_WHITELIST); done
527
528         for dir in $(wildcard $(addprefix $(TARGET_DIR),/usr/share/locale /usr/share/X11/locale /usr/man /usr/share/man)); \
529         do \
530                 for lang in $$(cd $$dir; ls .|grep -v man); \
531                 do \
532                         grep -qx $$lang $(LOCALE_WHITELIST) || rm -rf $$dir/$$lang; \
533                 done; \
534         done
535 endif
536
537 ifneq ($(GENERATE_LOCALE),)
538 # Generate locale data. Basically, we call the localedef program
539 # (built by the host-localedef package) for each locale. The input
540 # data comes preferably from the toolchain, or if the toolchain does
541 # not have them (Linaro toolchains), we use the ones available on the
542 # host machine.
543 target-generatelocales: host-localedef
544         $(Q)mkdir -p $(TARGET_DIR)/usr/lib/locale/
545         $(Q)for locale in $(GENERATE_LOCALE) ; do \
546                 inputfile=`echo $${locale} | cut -f1 -d'.'` ; \
547                 charmap=`echo $${locale} | cut -f2 -d'.'` ; \
548                 if test -z "$${charmap}" ; then \
549                         charmap="UTF-8" ; \
550                 fi ; \
551                 echo "Generating locale $${inputfile}.$${charmap}" ; \
552                 I18NPATH=$(STAGING_DIR)/usr/share/i18n:/usr/share/i18n \
553                 $(HOST_DIR)/usr/bin/localedef \
554                         --prefix=$(TARGET_DIR) \
555                         --`echo $(BR2_ENDIAN) | tr [A-Z] [a-z]`-endian \
556                         -i $${inputfile} -f $${charmap} \
557                         $${locale} ; \
558         done
559 endif
560
561 target-post-image:
562         @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_IMAGE_SCRIPT)), \
563                 $(call MESSAGE,"Executing post-image script $(s)"); \
564                 $(s) $(BINARIES_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep))
565
566 toolchain-eclipse-register:
567         ./support/scripts/eclipse-register-toolchain `readlink -f $(O)` $(notdir $(TARGET_CROSS)) $(BR2_ARCH)
568
569 source: dirs $(TARGETS_SOURCE) $(HOST_SOURCE)
570
571 external-deps:
572         @$(MAKE) -Bs DL_MODE=SHOW_EXTERNAL_DEPS $(EXTRAMAKEARGS) source | sort -u
573
574 legal-info-clean:
575         @rm -fr $(LEGAL_INFO_DIR)
576
577 legal-info-prepare: $(LEGAL_INFO_DIR)
578         @$(call MESSAGE,"Collecting legal info")
579         @$(call legal-license-file,buildroot,COPYING,COPYING)
580         @$(call legal-manifest,PACKAGE,VERSION,LICENSE,LICENSE FILES,SOURCE ARCHIVE)
581         @$(call legal-manifest,buildroot,$(BR2_VERSION_FULL),GPLv2+,COPYING,not saved)
582         @$(call legal-warning,the Buildroot source code has not been saved)
583         @$(call legal-warning,the toolchain has not been saved)
584         @cp $(BUILDROOT_CONFIG) $(LEGAL_INFO_DIR)/buildroot.config
585
586 legal-info: dirs legal-info-clean legal-info-prepare $(REDIST_SOURCES_DIR) \
587                 $(TARGETS_LEGAL_INFO)
588         @cat support/legal-info/README.header >>$(LEGAL_REPORT)
589         @if [ -r $(LEGAL_WARNINGS) ]; then \
590                 cat support/legal-info/README.warnings-header \
591                         $(LEGAL_WARNINGS) >>$(LEGAL_REPORT); \
592                 cat $(LEGAL_WARNINGS); fi
593         @echo "Legal info produced in $(LEGAL_INFO_DIR)"
594         @rm -f $(LEGAL_WARNINGS)
595
596 show-targets:
597         @echo $(TARGETS)
598
599 else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
600
601 all: menuconfig
602
603 endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
604
605 # configuration
606 # ---------------------------------------------------------------------------
607
608 HOSTCFLAGS=$(CFLAGS_FOR_BUILD)
609 export HOSTCFLAGS
610
611 $(BUILD_DIR)/buildroot-config/%onf:
612         mkdir -p $(@D)/lxdialog
613         $(MAKE) CC="$(HOSTCC_NOCCACHE)" HOSTCC="$(HOSTCC_NOCCACHE)" obj=$(@D) -C $(CONFIG) -f Makefile.br $(@F)
614
615 DEFCONFIG = $(call qstrip,$(BR2_DEFCONFIG))
616
617 # We don't want to fully expand BR2_DEFCONFIG here, so Kconfig will
618 # recognize that if it's still at its default $(CONFIG_DIR)/defconfig
619 COMMON_CONFIG_ENV = \
620         BR2_DEFCONFIG='$(call qstrip,$(value BR2_DEFCONFIG))' \
621         KCONFIG_AUTOCONFIG=$(BUILD_DIR)/buildroot-config/auto.conf \
622         KCONFIG_AUTOHEADER=$(BUILD_DIR)/buildroot-config/autoconf.h \
623         KCONFIG_TRISTATE=$(BUILD_DIR)/buildroot-config/tristate.config \
624         BUILDROOT_CONFIG=$(BUILDROOT_CONFIG)
625
626 xconfig: $(BUILD_DIR)/buildroot-config/qconf outputmakefile
627         @mkdir -p $(BUILD_DIR)/buildroot-config
628         @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
629
630 gconfig: $(BUILD_DIR)/buildroot-config/gconf outputmakefile
631         @mkdir -p $(BUILD_DIR)/buildroot-config
632         @$(COMMON_CONFIG_ENV) srctree=$(TOPDIR) $< $(CONFIG_CONFIG_IN)
633
634 menuconfig: $(BUILD_DIR)/buildroot-config/mconf outputmakefile
635         @mkdir -p $(BUILD_DIR)/buildroot-config
636         @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
637
638 nconfig: $(BUILD_DIR)/buildroot-config/nconf outputmakefile
639         @mkdir -p $(BUILD_DIR)/buildroot-config
640         @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
641
642 config: $(BUILD_DIR)/buildroot-config/conf outputmakefile
643         @mkdir -p $(BUILD_DIR)/buildroot-config
644         @$(COMMON_CONFIG_ENV) $< $(CONFIG_CONFIG_IN)
645
646 oldconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
647         mkdir -p $(BUILD_DIR)/buildroot-config
648         @$(COMMON_CONFIG_ENV) $< --oldconfig $(CONFIG_CONFIG_IN)
649
650 randconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
651         @mkdir -p $(BUILD_DIR)/buildroot-config
652         @$(COMMON_CONFIG_ENV) $< --randconfig $(CONFIG_CONFIG_IN)
653
654 allyesconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
655         @mkdir -p $(BUILD_DIR)/buildroot-config
656         @$(COMMON_CONFIG_ENV) $< --allyesconfig $(CONFIG_CONFIG_IN)
657
658 allnoconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
659         @mkdir -p $(BUILD_DIR)/buildroot-config
660         @$(COMMON_CONFIG_ENV) $< --allnoconfig $(CONFIG_CONFIG_IN)
661
662 randpackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
663         @mkdir -p $(BUILD_DIR)/buildroot-config
664         @grep -v BR2_PACKAGE_ $(BUILDROOT_CONFIG) > $(CONFIG_DIR)/.config.nopkg
665         @grep '^config BR2_PACKAGE_' Config.in.legacy | \
666                 while read config pkg; do \
667                 echo "# $$pkg is not set" >> $(CONFIG_DIR)/.config.nopkg; done
668         @$(COMMON_CONFIG_ENV) \
669                 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
670                 $< --randconfig $(CONFIG_CONFIG_IN)
671         @rm -f $(CONFIG_DIR)/.config.nopkg
672
673 allyespackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
674         @mkdir -p $(BUILD_DIR)/buildroot-config
675         @grep -v BR2_PACKAGE_ $(BUILDROOT_CONFIG) > $(CONFIG_DIR)/.config.nopkg
676         @grep '^config BR2_PACKAGE_' Config.in.legacy | \
677                 while read config pkg; do \
678                 echo "# $$pkg is not set" >> $(CONFIG_DIR)/.config.nopkg; done
679         @$(COMMON_CONFIG_ENV) \
680                 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
681                 $< --allyesconfig $(CONFIG_CONFIG_IN)
682         @rm -f $(CONFIG_DIR)/.config.nopkg
683
684 allnopackageconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
685         @mkdir -p $(BUILD_DIR)/buildroot-config
686         @grep -v BR2_PACKAGE_ $(BUILDROOT_CONFIG) > $(CONFIG_DIR)/.config.nopkg
687         @$(COMMON_CONFIG_ENV) \
688                 KCONFIG_ALLCONFIG=$(CONFIG_DIR)/.config.nopkg \
689                 $< --allnoconfig $(CONFIG_CONFIG_IN)
690         @rm -f $(CONFIG_DIR)/.config.nopkg
691
692 silentoldconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
693         @mkdir -p $(BUILD_DIR)/buildroot-config
694         $(COMMON_CONFIG_ENV) $< --silentoldconfig $(CONFIG_CONFIG_IN)
695
696 olddefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
697         @mkdir -p $(BUILD_DIR)/buildroot-config
698         $(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN)
699
700 defconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
701         @mkdir -p $(BUILD_DIR)/buildroot-config
702         @$(COMMON_CONFIG_ENV) $< --defconfig$(if $(DEFCONFIG),=$(DEFCONFIG)) $(CONFIG_CONFIG_IN)
703
704 %_defconfig: $(BUILD_DIR)/buildroot-config/conf $(TOPDIR)/configs/%_defconfig outputmakefile
705         @mkdir -p $(BUILD_DIR)/buildroot-config
706         @$(COMMON_CONFIG_ENV) $< --defconfig=$(TOPDIR)/configs/$@ $(CONFIG_CONFIG_IN)
707
708 savedefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
709         @mkdir -p $(BUILD_DIR)/buildroot-config
710         @$(COMMON_CONFIG_ENV) $< \
711                 --savedefconfig=$(if $(DEFCONFIG),$(DEFCONFIG),$(CONFIG_DIR)/defconfig) \
712                 $(CONFIG_CONFIG_IN)
713
714 # check if download URLs are outdated
715 source-check:
716         $(MAKE) DL_MODE=SOURCE_CHECK $(EXTRAMAKEARGS) source
717
718 .PHONY: defconfig savedefconfig
719
720 ################################################################################
721 #
722 # Cleanup and misc junk
723 #
724 ################################################################################
725
726 # outputmakefile generates a Makefile in the output directory, if using a
727 # separate output directory. This allows convenient use of make in the
728 # output directory.
729 outputmakefile:
730 ifeq ($(NEED_WRAPPER),y)
731         $(Q)$(TOPDIR)/support/scripts/mkmakefile $(TOPDIR) $(O)
732 endif
733
734 # printvars prints all the variables currently defined in our Makefiles
735 printvars:
736         @$(foreach V, \
737                 $(sort $(.VARIABLES)), \
738                 $(if $(filter-out environment% default automatic, \
739                                 $(origin $V)), \
740                 $(info $V=$($V) ($(value $V)))))
741
742 clean:
743         rm -rf $(STAGING_DIR) $(TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) \
744                 $(STAMP_DIR) $(BUILD_DIR) $(BASE_DIR)/staging \
745                 $(LEGAL_INFO_DIR)
746
747 distclean: clean
748 ifeq ($(DL_DIR),$(TOPDIR)/dl)
749         rm -rf $(DL_DIR)
750 endif
751 ifeq ($(O),output)
752         rm -rf $(O)
753 endif
754         rm -rf $(BUILDROOT_CONFIG) $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/.auto.deps
755
756 help:
757         @echo 'Cleaning:'
758         @echo '  clean                  - delete all files created by build'
759         @echo '  distclean              - delete all non-source files (including .config)'
760         @echo
761         @echo 'Build:'
762         @echo '  all                    - make world'
763         @echo '  toolchain              - build toolchain'
764         @echo '  <package>-rebuild      - force recompile <package>'
765         @echo '  <package>-reconfigure  - force reconfigure <package>'
766         @echo
767         @echo 'Configuration:'
768         @echo '  menuconfig             - interactive curses-based configurator'
769         @echo '  nconfig                - interactive ncurses-based configurator'
770         @echo '  xconfig                - interactive Qt-based configurator'
771         @echo '  gconfig                - interactive GTK-based configurator'
772         @echo '  oldconfig              - resolve any unresolved symbols in .config'
773         @echo '  silentoldconfig        - Same as oldconfig, but quietly, additionally update deps'
774         @echo '  olddefconfig           - Same as silentoldconfig but sets new symbols to their default value'
775         @echo '  randconfig             - New config with random answer to all options'
776         @echo '  defconfig              - New config with default answer to all options'
777         @echo '                             BR2_DEFCONFIG, if set, is used as input'
778         @echo '  savedefconfig          - Save current config as ./defconfig (minimal config)'
779         @echo '  allyesconfig           - New config where all options are accepted with yes'
780         @echo '  allnoconfig            - New config where all options are answered with no'
781         @echo '  randpackageconfig      - New config with random answer to package options'
782         @echo '  allyespackageconfig    - New config where pkg options are accepted with yes'
783         @echo '  allnopackageconfig     - New config where package options are answered with no'
784 ifeq ($(BR2_PACKAGE_BUSYBOX),y)
785         @echo '  busybox-menuconfig     - Run BusyBox menuconfig'
786 endif
787 ifeq ($(BR2_LINUX_KERNEL),y)
788         @echo '  linux-menuconfig       - Run Linux kernel menuconfig'
789         @echo '  linux-savedefconfig    - Run Linux kernel savedefconfig'
790 endif
791 ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
792         @echo '  uclibc-menuconfig      - Run uClibc menuconfig'
793 endif
794 ifeq ($(BR2_TOOLCHAIN_CTNG),y)
795         @echo '  ctng-menuconfig        - Run crosstool-NG menuconfig'
796 endif
797 ifeq ($(BR2_TARGET_BAREBOX),y)
798         @echo '  barebox-menuconfig     - Run barebox menuconfig'
799         @echo '  barebox-savedefconfig  - Run barebox savedefconfig'
800 endif
801         @echo
802         @echo 'Documentation:'
803         @echo '  manual                 - build manual in HTML, split HTML, PDF and txt'
804         @echo '  manual-html            - build manual in HTML'
805         @echo '  manual-split-html      - build manual in split HTML'
806         @echo '  manual-pdf             - build manual in PDF'
807         @echo '  manual-txt             - build manual in txt'
808         @echo '  manual-epub            - build manual in ePub'
809         @echo
810         @echo 'Miscellaneous:'
811         @echo '  source                 - download all sources needed for offline-build'
812         @echo '  source-check           - check selected packages for valid download URLs'
813         @echo '  external-deps          - list external packages used'
814         @echo '  legal-info             - generate info about license compliance'
815         @echo
816         @echo '  make V=0|1             - 0 => quiet build (default), 1 => verbose build'
817         @echo '  make O=dir             - Locate all output files in "dir", including .config'
818         @echo
819         @$(foreach b, $(sort $(notdir $(wildcard $(TOPDIR)/configs/*_defconfig))), \
820           printf "  %-35s - Build for %s\\n" $(b) $(b:_defconfig=);)
821         @echo
822         @echo 'See docs/README, or generate the Buildroot manual for further details'
823         @echo
824
825 release: OUT=buildroot-$(BR2_VERSION)
826
827 # Create release tarballs. We need to fiddle a bit to add the generated
828 # documentation to the git output
829 release:
830         git archive --format=tar --prefix=$(OUT)/ master > $(OUT).tar
831         $(MAKE) O=$(OUT) manual-html manual-txt manual-pdf
832         tar rf $(OUT).tar $(OUT)
833         gzip -9 -c < $(OUT).tar > $(OUT).tar.gz
834         bzip2 -9 -c < $(OUT).tar > $(OUT).tar.bz2
835         rm -rf $(OUT) $(OUT).tar
836
837 print-version:
838         @echo $(BR2_VERSION_FULL)
839
840 include docs/manual/manual.mk
841
842 .PHONY: $(noconfig_targets)