kernel: update kernel 3.18 to version 3.18.43
[openwrt/openwrt.git] / include / toplevel.mk
1 # Makefile for OpenWrt
2 #
3 # Copyright (C) 2007-2012 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 PREP_MK= OPENWRT_BUILD= QUIET=0
10
11 export IS_TTY=$(shell tty -s && echo 1 || echo 0)
12
13 include $(TOPDIR)/include/verbose.mk
14
15 ifeq ($(SDK),1)
16 include $(TOPDIR)/include/version.mk
17 else
18 REVISION:=$(shell $(TOPDIR)/scripts/getver.sh)
19 SOURCE_DATE_EPOCH:=$(shell $(TOPDIR)/scripts/get_source_date_epoch.sh)
20 endif
21
22 HOSTCC ?= $(CC)
23 export REVISION
24 export SOURCE_DATE_EPOCH
25 export GIT_CONFIG_PARAMETERS='core.autocrlf=false'
26 export MAKE_JOBSERVER=$(filter --jobserver%,$(MAKEFLAGS))
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 CROSS_COMPILE ARCH
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 export LDFLAGS=
42
43 empty:=
44 space:= $(empty) $(empty)
45 path:=$(subst :,$(space),$(PATH))
46 path:=$(filter-out .%,$(path))
47 path:=$(subst $(space),:,$(path))
48 export PATH:=$(path)
49
50 unexport TAR_OPTIONS
51
52 ifneq ($(shell $(HOSTCC) 2>&1 | grep clang),)
53 export HOSTCC_REAL?=$(HOSTCC)
54 export HOSTCC_WRAPPER:=$(TOPDIR)/scripts/clang-gcc-wrapper
55 else
56 export HOSTCC_WRAPPER:=$(HOSTCC)
57 endif
58
59 ifeq ($(FORCE),)
60 .config scripts/config/conf scripts/config/mconf: staging_dir/host/.prereq-build
61 endif
62
63 SCAN_COOKIE?=$(shell echo $$$$)
64 export SCAN_COOKIE
65
66 SUBMAKE:=umask 022; $(SUBMAKE)
67
68 ULIMIT_FIX=_limit=`ulimit -n`; [ "$$_limit" = "unlimited" -o "$$_limit" -ge 1024 ] || ulimit -n 1024;
69
70 prepare-mk: FORCE ;
71
72 ifdef SDK
73 IGNORE_PACKAGES = linux
74 endif
75
76 _ignore = $(foreach p,$(IGNORE_PACKAGES),--ignore $(p))
77
78 prepare-tmpinfo: FORCE
79 @+$(MAKE) -r -s staging_dir/host/.prereq-build $(PREP_MK)
80 mkdir -p tmp/info
81 $(_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=""
82 $(_SINGLE)$(NO_TRACE_MAKE) -j1 -r -s -f include/scan.mk SCAN_TARGET="targetinfo" SCAN_DIR="target/linux" SCAN_NAME="target" SCAN_DEPS="image/Makefile profiles/*.mk $(TOPDIR)/include/kernel*.mk $(TOPDIR)/include/target.mk" SCAN_DEPTH=2 SCAN_EXTRA="" SCAN_MAKEOPTS="TARGET_BUILD=1"
83 for type in package target; do \
84 f=tmp/.$${type}info; t=tmp/.config-$${type}.in; \
85 [ "$$t" -nt "$$f" ] || ./scripts/$${type}-metadata.pl $(_ignore) config "$$f" > "$$t" || { rm -f "$$t"; echo "Failed to build $$t"; false; break; }; \
86 done
87 [ tmp/.config-feeds.in -nt tmp/.packagesubdirs ] || ./scripts/feeds feed_config > tmp/.config-feeds.in
88 ./scripts/package-metadata.pl mk tmp/.packageinfo > tmp/.packagedeps || { rm -f tmp/.packagedeps; false; }
89 ./scripts/package-metadata.pl subdirs tmp/.packageinfo > tmp/.packagesubdirs || { rm -f tmp/.packagesubdirs; false; }
90 touch $(TOPDIR)/tmp/.build
91
92 .config: ./scripts/config/conf $(if $(CONFIG_HAVE_DOT_CONFIG),,prepare-tmpinfo)
93 @+if [ \! -e .config ] || ! grep CONFIG_HAVE_DOT_CONFIG .config >/dev/null; then \
94 [ -e $(HOME)/.openwrt/defconfig ] && cp $(HOME)/.openwrt/defconfig .config; \
95 $(_SINGLE)$(NO_TRACE_MAKE) menuconfig $(PREP_MK); \
96 fi
97
98 scripts/config/mconf:
99 @$(_SINGLE)$(SUBMAKE) -s -C scripts/config all CC="$(HOSTCC_WRAPPER)"
100
101 $(eval $(call rdep,scripts/config,scripts/config/mconf))
102
103 scripts/config/conf:
104 @$(_SINGLE)$(SUBMAKE) -s -C scripts/config conf CC="$(HOSTCC_WRAPPER)"
105
106 config: scripts/config/conf prepare-tmpinfo FORCE
107 $< Config.in
108
109 config-clean: FORCE
110 $(_SINGLE)$(NO_TRACE_MAKE) -C scripts/config clean
111
112 defconfig: scripts/config/conf prepare-tmpinfo FORCE
113 touch .config
114 @if [ ! -s .config -a -e $(HOME)/.openwrt/defconfig ]; then cp $(HOME)/.openwrt/defconfig .config; fi
115 $< --defconfig=.config Config.in
116
117 confdefault-y=allyes
118 confdefault-m=allmod
119 confdefault-n=allno
120 confdefault:=$(confdefault-$(CONFDEFAULT))
121
122 oldconfig: scripts/config/conf prepare-tmpinfo FORCE
123 $< --$(if $(confdefault),$(confdefault),old)config Config.in
124
125 menuconfig: scripts/config/mconf prepare-tmpinfo FORCE
126 if [ \! -e .config -a -e $(HOME)/.openwrt/defconfig ]; then \
127 cp $(HOME)/.openwrt/defconfig .config; \
128 fi
129 $< Config.in
130
131 prepare_kernel_conf: .config FORCE
132
133 ifeq ($(wildcard staging_dir/host/bin/quilt),)
134 prepare_kernel_conf:
135 @+$(SUBMAKE) -r tools/quilt/install
136 else
137 prepare_kernel_conf: ;
138 endif
139
140 kernel_oldconfig: prepare_kernel_conf
141 $(_SINGLE)$(NO_TRACE_MAKE) -C target/linux oldconfig
142
143 kernel_menuconfig: prepare_kernel_conf
144 $(_SINGLE)$(NO_TRACE_MAKE) -C target/linux menuconfig
145
146 kernel_nconfig: prepare_kernel_conf
147 $(_SINGLE)$(NO_TRACE_MAKE) -C target/linux nconfig
148
149 staging_dir/host/.prereq-build: include/prereq-build.mk
150 mkdir -p tmp
151 rm -f tmp/.host.mk
152 @$(_SINGLE)$(NO_TRACE_MAKE) -j1 -r -s -f $(TOPDIR)/include/prereq-build.mk prereq 2>/dev/null || { \
153 echo "Prerequisite check failed. Use FORCE=1 to override."; \
154 false; \
155 }
156 ifneq ($(realpath $(TOPDIR)/include/prepare.mk),)
157 @$(_SINGLE)$(NO_TRACE_MAKE) -j1 -r -s -f $(TOPDIR)/include/prepare.mk prepare 2>/dev/null || { \
158 echo "Preparation failed."; \
159 false; \
160 }
161 endif
162 touch $@
163
164 printdb: FORCE
165 @$(_SINGLE)$(NO_TRACE_MAKE) -p $@ V=99 DUMP_TARGET_DB=1 2>&1
166
167 ifndef SDK
168 DOWNLOAD_DIRS = tools/download toolchain/download package/download target/download
169 else
170 DOWNLOAD_DIRS = package/download
171 endif
172
173 download: .config FORCE
174 @+$(foreach dir,$(DOWNLOAD_DIRS),$(SUBMAKE) $(dir);)
175
176 clean dirclean: .config
177 @+$(SUBMAKE) -r $@
178
179 prereq:: prepare-tmpinfo .config
180 @+$(NO_TRACE_MAKE) -r -s $@
181
182 WARN_PARALLEL_ERROR = $(if $(BUILD_LOG),,$(and $(filter -j,$(MAKEFLAGS)),$(findstring s,$(OPENWRT_VERBOSE))))
183
184 ifeq ($(SDK),1)
185
186 %::
187 @+$(PREP_MK) $(NO_TRACE_MAKE) -r -s prereq
188 @./scripts/config/conf --defconfig=.config Config.in
189 @+$(ULIMIT_FIX) $(SUBMAKE) -r $@
190
191 else
192
193 %::
194 @+$(PREP_MK) $(NO_TRACE_MAKE) -r -s prereq
195 @( \
196 cp .config tmp/.config; \
197 ./scripts/config/conf --defconfig=tmp/.config -w tmp/.config Config.in > /dev/null 2>&1; \
198 if ./scripts/kconfig.pl '>' .config tmp/.config | grep -q CONFIG; then \
199 printf "$(_R)WARNING: your configuration is out of sync. Please run make menuconfig, oldconfig or defconfig!$(_N)\n" >&2; \
200 fi \
201 )
202 @+$(ULIMIT_FIX) $(SUBMAKE) -r $@ $(if $(WARN_PARALLEL_ERROR), || { \
203 printf "$(_R)Build failed - please re-run with -j1 to see the real error message$(_N)\n" >&2; \
204 false; \
205 } )
206
207 endif
208
209 # update all feeds, re-create index files, install symlinks
210 package/symlinks:
211 ./scripts/feeds update -a
212 ./scripts/feeds install -a
213
214 # re-create index files, install symlinks
215 package/symlinks-install:
216 ./scripts/feeds update -i
217 ./scripts/feeds install -a
218
219 # remove all symlinks, don't touch ./feeds
220 package/symlinks-clean:
221 ./scripts/feeds uninstall -a
222
223 help:
224 cat README
225
226 docs docs/compile: FORCE
227 @$(_SINGLE)$(SUBMAKE) -C docs compile
228
229 docs/clean: FORCE
230 @$(_SINGLE)$(SUBMAKE) -C docs clean
231
232 distclean:
233 rm -rf bin build_dir .config* dl feeds key-build* logs package/feeds package/openwrt-packages staging_dir tmp
234 @$(_SINGLE)$(SUBMAKE) -C scripts/config clean
235
236 ifeq ($(findstring v,$(DEBUG)),)
237 .SILENT: symlinkclean clean dirclean distclean config-clean download help tmpinfo-clean .config scripts/config/mconf scripts/config/conf menuconfig staging_dir/host/.prereq-build tmp/.prereq-package prepare-tmpinfo
238 endif
239 .PHONY: help FORCE
240 .NOTPARALLEL:
241