kernel: update linux 3.3 to 3.3.1
[openwrt/staging/mkresin.git] / include / toplevel.mk
1 # Makefile for OpenWrt
2 #
3 # Copyright (C) 2007-2011 OpenWrt.org
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 RELEASE:=Attitude Adjustment
10 PREP_MK= OPENWRT_BUILD= QUIET=0
11
12 include $(TOPDIR)/include/verbose.mk
13
14 ifeq ($(SDK),1)
15 include $(TOPDIR)/include/version.mk
16 else
17 REVISION:=$(shell $(TOPDIR)/scripts/getver.sh)
18 endif
19
20 OPENWRTVERSION:=$(RELEASE)$(if $(REVISION), ($(REVISION)))
21 export RELEASE
22 export REVISION
23 export OPENWRTVERSION
24 export IS_TTY=$(shell tty -s && echo 1 || echo 0)
25 export LD_LIBRARY_PATH:=$(if $(LD_LIBRARY_PATH),$(LD_LIBRARY_PATH):)$(STAGING_DIR_HOST)/lib
26 export DYLD_LIBRARY_PATH:=$(if $(DYLD_LIBRARY_PATH),$(DYLD_LIBRARY_PATH):)$(STAGING_DIR_HOST)/lib
27
28 # prevent perforce from messing with the patch utility
29 unexport P4PORT P4USER P4CONFIG P4CLIENT
30
31 # prevent user defaults for quilt from interfering
32 unexport QUILT_PATCHES QUILT_PATCH_OPTS
33
34 unexport C_INCLUDE_PATH
35
36 # prevent distro default LPATH from interfering
37 unexport LPATH
38
39 # make sure that a predefined CFLAGS variable does not disturb packages
40 export CFLAGS=
41
42 ifeq ($(FORCE),)
43 .config scripts/config/conf scripts/config/mconf: tmp/.prereq-build
44 endif
45
46 SCAN_COOKIE?=$(shell echo $$$$)
47 export SCAN_COOKIE
48
49 SUBMAKE:=umask 022; $(SUBMAKE)
50
51 prepare-mk: FORCE ;
52
53 prepare-tmpinfo: FORCE
54 mkdir -p tmp/info
55 $(_SINGLE)$(NO_TRACE_MAKE) -j1 -r -s -f include/scan.mk SCAN_TARGET="packageinfo" SCAN_DIR="package" SCAN_NAME="package" SCAN_DEPS="$(TOPDIR)/include/package*.mk $(TOPDIR)/overlay/*/*.mk" SCAN_DEPTH=5 SCAN_EXTRA=""
56 $(_SINGLE)$(NO_TRACE_MAKE) -j1 -r -s -f include/scan.mk SCAN_TARGET="targetinfo" SCAN_DIR="target/linux" SCAN_NAME="target" SCAN_DEPS="profiles/*.mk $(TOPDIR)/include/kernel*.mk $(TOPDIR)/include/target.mk" SCAN_DEPTH=2 SCAN_EXTRA="" SCAN_MAKEOPTS="TARGET_BUILD=1"
57 for type in package target; do \
58 f=tmp/.$${type}info; t=tmp/.config-$${type}.in; \
59 [ "$$t" -nt "$$f" ] || ./scripts/metadata.pl $${type}_config "$$f" > "$$t" || { rm -f "$$t"; echo "Failed to build $$t"; false; break; }; \
60 done
61 ./scripts/metadata.pl package_mk tmp/.packageinfo > tmp/.packagedeps || { rm -f tmp/.packagedeps; false; }
62 touch $(TOPDIR)/tmp/.build
63
64 .config: ./scripts/config/conf $(if $(CONFIG_HAVE_DOT_CONFIG),,prepare-tmpinfo)
65 @+if [ \! -e .config ] || ! grep CONFIG_HAVE_DOT_CONFIG .config >/dev/null; then \
66 [ -e $(HOME)/.openwrt/defconfig ] && cp $(HOME)/.openwrt/defconfig .config; \
67 $(_SINGLE)$(NO_TRACE_MAKE) menuconfig $(PREP_MK); \
68 fi
69
70 scripts/config/mconf:
71 @$(_SINGLE)$(SUBMAKE) -s -C scripts/config all
72
73 $(eval $(call rdep,scripts/config,scripts/config/mconf))
74
75 scripts/config/conf:
76 @$(_SINGLE)$(SUBMAKE) -s -C scripts/config conf
77
78 config: scripts/config/conf prepare-tmpinfo FORCE
79 $< Config.in
80
81 config-clean: FORCE
82 $(_SINGLE)$(NO_TRACE_MAKE) -C scripts/config clean
83
84 defconfig: scripts/config/conf prepare-tmpinfo FORCE
85 touch .config
86 $< -D .config Config.in
87
88 oldconfig: scripts/config/conf prepare-tmpinfo FORCE
89 $< -$(if $(CONFDEFAULT),$(CONFDEFAULT),o) Config.in
90
91 menuconfig: scripts/config/mconf prepare-tmpinfo FORCE
92 if [ \! -e .config -a -e $(HOME)/.openwrt/defconfig ]; then \
93 cp $(HOME)/.openwrt/defconfig .config; \
94 fi
95 $< Config.in
96
97 prepare_kernel_conf: .config FORCE
98
99 ifeq ($(wildcard staging_dir/host/bin/quilt),)
100 prepare_kernel_conf:
101 @+$(SUBMAKE) -r tools/quilt/install
102 else
103 prepare_kernel_conf: ;
104 endif
105
106 kernel_oldconfig: prepare_kernel_conf
107 $(_SINGLE)$(NO_TRACE_MAKE) -C target/linux oldconfig
108
109 kernel_menuconfig: prepare_kernel_conf
110 $(_SINGLE)$(NO_TRACE_MAKE) -C target/linux menuconfig
111
112 kernel_nconfig: prepare_kernel_conf
113 $(_SINGLE)$(NO_TRACE_MAKE) -C target/linux nconfig
114
115 tmp/.prereq-build: include/prereq-build.mk
116 mkdir -p tmp
117 rm -f tmp/.host.mk
118 @$(_SINGLE)$(NO_TRACE_MAKE) -j1 -r -s -f $(TOPDIR)/include/prereq-build.mk prereq 2>/dev/null || { \
119 echo "Prerequisite check failed. Use FORCE=1 to override."; \
120 false; \
121 }
122 touch $@
123
124 printdb: FORCE
125 @$(_SINGLE)$(NO_TRACE_MAKE) -p $@ V=99 DUMP_TARGET_DB=1 2>&1
126
127 download: .config FORCE
128 @+$(SUBMAKE) tools/download
129 @+$(SUBMAKE) toolchain/download
130 @+$(SUBMAKE) package/download
131 @+$(SUBMAKE) target/download
132
133 clean dirclean: .config
134 @+$(SUBMAKE) -r $@
135
136 prereq:: prepare-tmpinfo .config
137 @+$(MAKE) -r -s tmp/.prereq-build $(PREP_MK)
138 @+$(NO_TRACE_MAKE) -r -s $@
139
140 %::
141 @+$(PREP_MK) $(NO_TRACE_MAKE) -r -s prereq
142 @( \
143 cp .config tmp/.config; \
144 ./scripts/config/conf -D tmp/.config -w tmp/.config Config.in > /dev/null 2>&1; \
145 if ./scripts/kconfig.pl '>' .config tmp/.config | grep -q CONFIG; then \
146 echo "WARNING: your configuration is out of sync. Please run make menuconfig, oldconfig or defconfig!"; \
147 fi \
148 )
149 @+$(SUBMAKE) -r $@
150
151 help:
152 cat README
153
154 docs docs/compile: FORCE
155 @$(_SINGLE)$(SUBMAKE) -C docs compile
156
157 docs/clean: FORCE
158 @$(_SINGLE)$(SUBMAKE) -C docs clean
159
160 distclean:
161 rm -rf tmp build_dir staging_dir dl .config* feeds package/feeds package/openwrt-packages bin
162 @$(_SINGLE)$(SUBMAKE) -C scripts/config clean
163
164 ifeq ($(findstring v,$(DEBUG)),)
165 .SILENT: symlinkclean clean dirclean distclean config-clean download help tmpinfo-clean .config scripts/config/mconf scripts/config/conf menuconfig tmp/.prereq-build tmp/.prereq-package prepare-tmpinfo
166 endif
167 .PHONY: help FORCE
168 .NOTPARALLEL:
169