add empty /tmp dir also for the huge skeleton
[buildroot.git] / Makefile
blob7fdbf689407a51eb9b13a816e9f0a57e4b4dde32
1 # Makefile for buildroot2
3 # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #--------------------------------------------------------------
21 # Just run 'make menuconfig', configure stuff, then run 'make'.
22 # You shouldn't need to mess with anything beyond this point...
23 #--------------------------------------------------------------
24 TOPDIR=./
25 CONFIG_CONFIG_IN=Config.in
26 CONFIG_DEFCONFIG=.defconfig
27 CONFIG=package/config
28 DATE:=$(shell date -u +%Y%m%d)
30 noconfig_targets:=menuconfig config oldconfig randconfig \
31 defconfig allyesconfig allnoconfig release tags \
32 source-check help
34 # $(shell find . -name *_defconfig |sed 's/.*\///')
36 # Pull in the user's configuration file
37 ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
38 ifeq ($(BOARD),)
39 -include $(TOPDIR).config
40 else
41 -include $(TOPDIR)/local/$(BOARD)/$(BOARD).config
42 endif
43 endif
44 ifneq ($(BUILDROOT_DL_DIR),)
45 BR2_DL_DIR:=$(BUILDROOT_DL_DIR)
46 endif
47 ifneq ($(BUILDROOT_LOCAL),)
48 LOCAL:=$(BUILDROOT_LOCAL)
49 else
50 LOCAL:=local
51 endif
53 # To put more focus on warnings, be less verbose as default
54 # Use 'make V=1' to see the full commands
55 ifdef V
56 ifeq ("$(origin V)", "command line")
57 KBUILD_VERBOSE=$(V)
58 endif
59 endif
60 ifndef KBUILD_VERBOSE
61 KBUILD_VERBOSE=0
62 endif
64 ifeq ($(KBUILD_VERBOSE),1)
65 quiet=
67 ifndef VERBOSE
68 VERBOSE=1
69 endif
70 else
71 quiet=quiet_
72 Q=@
73 endif
75 CONFIG_SHELL:=$(shell if [ -x "$$BASH" ]; then echo $$BASH; \
76 else if [ -x /bin/bash ]; then echo /bin/bash; \
77 else echo sh; fi; fi)
79 export CONFIG_SHELL quiet Q KBUILD_VERBOSE VERBOSE
81 ifndef HOSTAR
82 HOSTAR:=ar
83 endif
84 ifndef HOSTAS
85 HOSTAS:=as
86 endif
87 ifndef HOSTCC
88 HOSTCC:=gcc
89 else
90 endif
91 ifndef HOSTCXX
92 HOSTCXX:=g++
93 endif
94 ifndef HOSTFC
95 HOSTFC:=gfortran
96 endif
97 ifndef HOSTCPP
98 HOSTCPP:=cpp
99 endif
100 ifndef HOSTLD
101 HOSTLD:=ld
102 endif
103 ifndef HOSTLN
104 HOSTLN:=ln
105 endif
106 ifndef HOSTNM
107 HOSTNM:=nm
108 endif
109 HOSTAR:=$(shell $(CONFIG_SHELL) -c "which $(HOSTAR)" || type -p $(HOSTAR) || echo ar)
110 HOSTAS:=$(shell $(CONFIG_SHELL) -c "which $(HOSTAS)" || type -p $(HOSTAS) || echo as)
111 HOSTCC:=$(shell $(CONFIG_SHELL) -c "which $(HOSTCC)" || type -p $(HOSTCC) || echo gcc)
112 HOSTCXX:=$(shell $(CONFIG_SHELL) -c "which $(HOSTCXX)" || type -p $(HOSTCXX) || echo g++)
113 HOSTFC:=$(shell $(CONFIG_SHELL) -c "which $(HOSTLD)" || type -p $(HOSTLD) || echo || which g77 || type -p g77 || echo gfortran)
114 HOSTCPP:=$(shell $(CONFIG_SHELL) -c "which $(HOSTCPP)" || type -p $(HOSTCPP) || echo cpp)
115 HOSTLD:=$(shell $(CONFIG_SHELL) -c "which $(HOSTLD)" || type -p $(HOSTLD) || echo ld)
116 HOSTLN:=$(shell $(CONFIG_SHELL) -c "which $(HOSTLN)" || type -p $(HOSTLN) || echo ln)
117 HOSTNM:=$(shell $(CONFIG_SHELL) -c "which $(HOSTNM)" || type -p $(HOSTNM) || echo nm)
118 ifndef CFLAGS_FOR_BUILD
119 CFLAGS_FOR_BUILD:=-g -O2
120 endif
121 ifndef CXXFLAGS_FOR_BUILD
122 CXXFLAGS_FOR_BUILD:=-g -O2
123 endif
124 ifndef FCFLAGS_FOR_BUILD
125 FCFLAGS_FOR_BUILD:=-g -O2
126 endif
127 export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTFC HOSTLD
130 ifeq ($(BR2_HAVE_DOT_CONFIG),y)
132 # cc-option
133 # Usage: cflags-y+=$(call cc-option, -march=winchip-c6, -march=i586)
134 # sets -march=winchip-c6 if supported else falls back to -march=i586
135 # without checking the latter.
136 cc-option=$(shell if $(TARGET_CC) $(TARGET_CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
137 > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
139 #############################################################
141 # Hide troublesome environment variables from sub processes
143 #############################################################
144 unexport CROSS_COMPILE
145 unexport ARCH
147 #############################################################
149 # Setup the proper filename extensions for the host
151 ##############################################################
152 ifneq ($(findstring linux,$(BR2_GNU_BUILD_SUFFIX)),)
153 HOST_EXEEXT:=
154 HOST_LIBEXT:=.a
155 HOST_SHREXT:=.so
156 endif
157 ifneq ($(findstring apple,$(BR2_GNU_BUILD_SUFFIX)),)
158 HOST_EXEEXT:=
159 HOST_LIBEXT:=.a
160 HOST_SHREXT:=.dylib
161 endif
162 ifneq ($(findstring cygwin,$(BR2_GNU_BUILD_SUFFIX)),)
163 HOST_EXEEXT:=.exe
164 HOST_LIBEXT:=.lib
165 HOST_SHREXT:=.dll
166 endif
167 ifneq ($(findstring mingw,$(BR2_GNU_BUILD_SUFFIX)),)
168 HOST_EXEEXT:=.exe
169 HOST_LIBEXT:=.lib
170 HOST_SHREXT:=.dll
171 endif
173 # The preferred type of libs we build for the target
174 ifeq ($(BR2_PREFER_STATIC_LIB),y)
175 LIBTGTEXT=.a
176 #PREFERRED_LIB_FLAGS:=--disable-shared --enable-static
177 else
178 LIBTGTEXT=.so
179 #PREFERRED_LIB_FLAGS:=--disable-static --enable-shared
180 endif
181 PREFERRED_LIB_FLAGS:=--enable-static --enable-shared
183 ##############################################################
185 # The list of stuff to build for the target toolchain
186 # along with the packages to build for the target.
188 ##############################################################
189 ifeq ($(BR2_TOOLCHAIN_SOURCE),y)
190 BASE_TARGETS:=uclibc-configured binutils cross_compiler uclibc-target-utils
191 else
192 BASE_TARGETS:=uclibc
193 endif
194 TARGETS:=
196 # setup our pathes
197 include project/Makefile.in
199 BR2_DEPENDS_DIR=$(PROJECT_BUILD_DIR)/buildroot-config
201 include toolchain/Makefile.in
202 include package/Makefile.in
204 #############################################################
206 # You should probably leave this stuff alone unless you know
207 # what you are doing.
209 #############################################################
211 all: world
213 # In this section, we need .config
214 include .config.cmd
216 include project/*.mk
218 # We also need the various per-package makefiles, which also add
219 # each selected package to TARGETS if that package was selected
220 # in the .config file.
221 ifeq ($(BR2_TOOLCHAIN_SOURCE),y)
222 # avoid pulling in external toolchain which is broken for toplvl parallel builds
223 # Explicit ordering:
224 include toolchain/dependencies/dependencies.mk
225 include toolchain/binutils/binutils.mk
226 include toolchain/ccache/ccache.mk
227 include toolchain/elf2flt/elf2flt.mk
228 include toolchain/gcc/gcc-uclibc-3.x.mk
229 include toolchain/gcc/gcc-uclibc-4.x.mk
230 include toolchain/gdb/gdb.mk
231 include toolchain/kernel-headers/kernel-headers.mk
232 include toolchain/mklibs/mklibs.mk
233 include toolchain/sstrip/sstrip.mk
234 include toolchain/uClibc/uclibc.mk
235 else
236 include toolchain/*/*.mk
237 endif
239 ifeq ($(BR2_PACKAGE_LINUX),y)
240 TARGETS+=linux26-modules
241 endif
243 include package/*/*.mk
245 # target stuff is last so it can override anything else
246 include target/Makefile.in
248 TARGETS+=erase-fakeroots
250 TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
251 TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS) $(BASE_TARGETS))
252 TARGETS_DIRCLEAN:=$(patsubst %,%-dirclean,$(TARGETS))
253 TARGETS_ALL:=$(patsubst %,__real_tgt_%,$(TARGETS))
254 # all targets depend on the crosscompiler and it's prerequisites
255 $(TARGETS_ALL): __real_tgt_%: $(BASE_TARGETS) %
257 $(BR2_DEPENDS_DIR): .config
258 rm -rf $@
259 mkdir -p $(@D)
260 cp -dpRf $(CONFIG)/buildroot-config $@
262 dirs: $(DL_DIR) $(TOOL_BUILD_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
263 $(BR2_DEPENDS_DIR) \
264 $(BINARIES_DIR) $(PROJECT_BUILD_DIR)
266 $(BASE_TARGETS): dirs
268 world: dependencies dirs target-host-info $(BASE_TARGETS) $(TARGETS_ALL)
271 .PHONY: all world dirs clean dirclean distclean source \
272 $(BASE_TARGETS) $(TARGETS) $(TARGETS_ALL) \
273 $(TARGETS_CLEAN) $(TARGETS_DIRCLEAN) $(TARGETS_SOURCE) \
274 $(DL_DIR) $(TOOL_BUILD_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) \
275 $(BR2_DEPENDS_DIR) \
276 $(BINARIES_DIR) $(PROJECT_BUILD_DIR)
278 #############################################################
280 # staging and target directories do NOT list these as
281 # dependencies anywhere else
283 #############################################################
284 $(DL_DIR) $(TOOL_BUILD_DIR) $(BUILD_DIR) \
285 $(PROJECT_BUILD_DIR) $(BINARIES_DIR):
286 @mkdir -p $@
288 $(STAGING_DIR):
289 @mkdir -p $(STAGING_DIR)/bin
290 @mkdir -p $(STAGING_DIR)/lib
291 ifeq ($(BR2_TOOLCHAIN_SYSROOT),y)
292 @mkdir -p $(STAGING_DIR)/usr/lib
293 else
294 @if test -d $(STAGING_DIR)/usr; then \
295 echo "You seem to be coming from a toolchain with sysroot support."; \
296 echo "Reconfiguring without wiping your rootfs will not work, sorry.";\
297 echo "Please 'rm -rf $(STAGING_DIR)'"; \
298 echo "Then run 'make' again."; \
299 echo ""; \
300 exit 1; \
302 ln -snf . $(STAGING_DIR)/usr
303 @mkdir -p $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)
304 ln -snf ../lib $(STAGING_DIR)/usr/lib
305 ln -snf ../lib $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/lib
306 endif
307 @mkdir -p $(STAGING_DIR)/usr/include
309 $(PROJECT_BUILD_DIR)/.root:
310 mkdir -p $(TARGET_DIR)
311 if ! [ -d "$(TARGET_DIR)/bin" ]; then \
312 if [ -d "$(TARGET_SKELETON)" ]; then \
313 cp -fa $(TARGET_SKELETON)/* $(TARGET_DIR)/; \
314 fi; \
315 touch $(STAGING_DIR)/.fakeroot.00000; \
317 -find $(TARGET_DIR) -type d -name CVS | xargs rm -rf
318 -find $(TARGET_DIR) -type d -name .svn | xargs rm -rf
319 -find $(TARGET_DIR) -type d -name .gitignore | xargs rm -rf
320 touch $@
322 $(TARGET_DIR): $(PROJECT_BUILD_DIR)/.root
324 erase-fakeroots:
325 rm -f $(PROJECT_BUILD_DIR)/.fakeroot*
327 source: $(TARGETS_SOURCE) $(HOST_SOURCE)
329 _source-check:
330 $(MAKE) SPIDER=--spider source
332 #############################################################
334 # Cleanup and misc junk
336 #############################################################
337 clean: $(TARGETS_CLEAN)
338 rm -rf $(STAGING_DIR) $(TARGET_DIR) $(IMAGE)
340 dirclean: $(TARGETS_DIRCLEAN)
341 rm -rf $(STAGING_DIR) $(TARGET_DIR) $(IMAGE)
343 distclean:
344 ifeq ($(DL_DIR),$(BASE_DIR)/dl)
345 rm -rf $(DL_DIR)
346 endif
347 rm -rf $(BUILD_DIR) $(PROJECT_BUILD_DIR) $(BINARIES_DIR) \
348 $(LINUX_KERNEL) $(IMAGE) $(BASE_DIR)/include \
349 .config* .auto.deps
350 $(MAKE) -C $(CONFIG) clean distclean
352 sourceball:
353 rm -rf $(BUILD_DIR) $(PROJECT_BUILD_DIR) $(BINARIES_DIR)
354 set -e; \
355 cd ..; \
356 rm -f buildroot.tar.bz2; \
357 tar -cvf buildroot.tar buildroot; \
358 bzip2 -9 buildroot.tar; \
361 else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
363 all: menuconfig
365 # configuration
366 # ---------------------------------------------------------------------------
368 HOSTCFLAGS=$(CFLAGS_FOR_BUILD)
369 export HOSTCFLAGS
371 $(CONFIG)/conf:
372 @mkdir -p $(CONFIG)/buildroot-config
373 $(MAKE) CC="$(HOSTCC)" -C $(CONFIG) conf
374 -@if [ ! -f .config ]; then \
375 cp $(CONFIG_DEFCONFIG) .config; \
377 $(CONFIG)/mconf:
378 @mkdir -p $(CONFIG)/buildroot-config
379 $(MAKE) CC="$(HOSTCC)" -C $(CONFIG) conf mconf
380 -@if [ ! -f .config ]; then \
381 cp $(CONFIG_DEFCONFIG) .config; \
384 menuconfig: $(CONFIG)/mconf
385 @mkdir -p $(CONFIG)/buildroot-config
386 @if ! KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
387 KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
388 $(CONFIG)/mconf $(CONFIG_CONFIG_IN); then \
389 test -f .config.cmd || rm -f .config; \
392 config: $(CONFIG)/conf
393 @mkdir -p $(CONFIG)/buildroot-config
394 @KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
395 KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
396 $(CONFIG)/conf $(CONFIG_CONFIG_IN)
398 oldconfig: $(CONFIG)/conf
399 @mkdir -p $(CONFIG)/buildroot-config
400 @KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
401 KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
402 $(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
404 randconfig: $(CONFIG)/conf
405 @mkdir -p $(CONFIG)/buildroot-config
406 @KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
407 KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
408 $(CONFIG)/conf -r $(CONFIG_CONFIG_IN)
410 allyesconfig: $(CONFIG)/conf
411 cat $(CONFIG_DEFCONFIG) > .config
412 @mkdir -p $(CONFIG)/buildroot-config
413 @KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
414 KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
415 $(CONFIG)/conf -y $(CONFIG_CONFIG_IN)
416 #sed -i -e "s/^CONFIG_DEBUG.*/# CONFIG_DEBUG is not set/" .config
418 allnoconfig: $(CONFIG)/conf
419 @mkdir -p $(CONFIG)/buildroot-config
420 @KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
421 KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
422 $(CONFIG)/conf -n $(CONFIG_CONFIG_IN)
424 defconfig: $(CONFIG)/conf
425 @mkdir -p $(CONFIG)/buildroot-config
426 @KCONFIG_AUTOCONFIG=$(CONFIG)/buildroot-config/auto.conf \
427 KCONFIG_AUTOHEADER=$(CONFIG)/buildroot-config/autoconf.h \
428 $(CONFIG)/conf -d $(CONFIG_CONFIG_IN)
430 # check if download URLs are outdated
431 source-check: allyesconfig
432 $(MAKE) _source-check
434 #############################################################
436 # Cleanup and misc junk
438 #############################################################
439 clean:
440 rm -f .config .config.old .config.cmd .tmpconfig.h
441 -$(MAKE) -C $(CONFIG) clean
443 distclean: clean
444 rm -rf sources/*
446 endif # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
448 %_defconfig: $(CONFIG)/conf
449 cp $(shell find ./target/ -name $@) .config
450 -@$(MAKE) oldconfig
452 configured: dirs host-sed kernel-headers uclibc-config busybox-config linux26-config
454 cross: $(BASE_TARGETS)
456 help:
457 @echo 'Cleaning:'
458 @echo ' clean - delete temporary files created by build'
459 @echo ' distclean - delete all non-source files (including .config)'
460 @echo
461 @echo 'Build:'
462 @echo ' all - make world'
463 @echo
464 @echo 'Configuration:'
465 @echo ' menuconfig - interactive curses-based configurator'
466 @echo ' oldconfig - resolve any unresolved symbols in .config'
467 @echo
468 @echo 'Miscellaneous:'
469 @echo ' source - download all sources needed for offline-build'
470 @echo ' source-check - check all packages for valid download URLs'
471 @echo
472 @echo 'See docs/README and docs/buildroot.html for further details'
473 @echo
475 .PHONY: dummy subdirs release distclean clean config oldconfig \
476 menuconfig tags check test depend defconfig help