build: fix make defconfig
[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 RELEASE:=Barrier Breaker
10 PREP_MK= OPENWRT_BUILD= QUIET=0
11
12 export IS_TTY=$(shell tty -s && echo 1 || echo 0)
13
14 include $(TOPDIR)/include/verbose.mk
15
16 ifeq ($(SDK),1)
17   include $(TOPDIR)/include/version.mk
18 else
19   REVISION:=$(shell $(TOPDIR)/scripts/getver.sh)
20 endif
21
22 HOSTCC ?= gcc
23 OPENWRTVERSION:=$(RELEASE)$(if $(REVISION), ($(REVISION)))
24 export RELEASE
25 export REVISION
26 export OPENWRTVERSION
27 export LD_LIBRARY_PATH:=$(subst ::,:,$(if $(LD_LIBRARY_PATH),$(LD_LIBRARY_PATH):)$(STAGING_DIR_HOST)/lib)
28 export DYLD_LIBRARY_PATH:=$(subst ::,:,$(if $(DYLD_LIBRARY_PATH),$(DYLD_LIBRARY_PATH):)$(STAGING_DIR_HOST)/lib)
29 export GIT_CONFIG_PARAMETERS='core.autocrlf=false'
30 export MAKE_JOBSERVER=$(filter --jobserver%,$(MAKEFLAGS))
31
32 # prevent perforce from messing with the patch utility
33 unexport P4PORT P4USER P4CONFIG P4CLIENT
34
35 # prevent user defaults for quilt from interfering
36 unexport QUILT_PATCHES QUILT_PATCH_OPTS
37
38 unexport C_INCLUDE_PATH CROSS_COMPILE ARCH
39
40 # prevent distro default LPATH from interfering
41 unexport LPATH
42
43 # make sure that a predefined CFLAGS variable does not disturb packages
44 export CFLAGS=
45
46 ifeq ($(FORCE),)
47   .config scripts/config/conf scripts/config/mconf: tmp/.prereq-build
48 endif
49
50 SCAN_COOKIE?=$(shell echo $$$$)
51 export SCAN_COOKIE
52
53 SUBMAKE:=umask 022; $(SUBMAKE)
54
55 ULIMIT_FIX=_limit=`ulimit -n`; [ "$$_limit" = "unlimited" -o "$$_limit" -ge 1024 ] || ulimit -n 1024;
56
57 prepare-mk: FORCE ;
58
59 prepare-tmpinfo: FORCE
60         mkdir -p tmp/info
61         $(_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=""
62         $(_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"
63         for type in package target; do \
64                 f=tmp/.$${type}info; t=tmp/.config-$${type}.in; \
65                 [ "$$t" -nt "$$f" ] || ./scripts/metadata.pl $${type}_config "$$f" > "$$t" || { rm -f "$$t"; echo "Failed to build $$t"; false; break; }; \
66         done
67         ./scripts/metadata.pl package_mk tmp/.packageinfo > tmp/.packagedeps || { rm -f tmp/.packagedeps; false; }
68         touch $(TOPDIR)/tmp/.build
69
70 .config: ./scripts/config/conf $(if $(CONFIG_HAVE_DOT_CONFIG),,prepare-tmpinfo)
71         @+if [ \! -e .config ] || ! grep CONFIG_HAVE_DOT_CONFIG .config >/dev/null; then \
72                 [ -e $(HOME)/.openwrt/defconfig ] && cp $(HOME)/.openwrt/defconfig .config; \
73                 $(_SINGLE)$(NO_TRACE_MAKE) menuconfig $(PREP_MK); \
74         fi
75
76 scripts/config/mconf:
77         @$(_SINGLE)$(SUBMAKE) -s -C scripts/config all CC="$(HOSTCC)"
78
79 $(eval $(call rdep,scripts/config,scripts/config/mconf))
80
81 scripts/config/conf:
82         @$(_SINGLE)$(SUBMAKE) -s -C scripts/config conf CC="$(HOSTCC)"
83
84 config: scripts/config/conf prepare-tmpinfo FORCE
85         $< Config.in
86
87 config-clean: FORCE
88         $(_SINGLE)$(NO_TRACE_MAKE) -C scripts/config clean
89
90 defconfig: scripts/config/conf prepare-tmpinfo FORCE
91         touch .config
92         $< --defconfig=.config Config.in
93
94 confdefault-y=allyes
95 confdefault-m=allmod
96 confdefault-n=allno
97 confdefault:=$(confdefault-$(CONFDEFAULT))
98
99 oldconfig: scripts/config/conf prepare-tmpinfo FORCE
100         $< --$(if $(confdefault),$(confdefault),old)config Config.in
101
102 menuconfig: scripts/config/mconf prepare-tmpinfo FORCE
103         if [ \! -e .config -a -e $(HOME)/.openwrt/defconfig ]; then \
104                 cp $(HOME)/.openwrt/defconfig .config; \
105         fi
106         $< Config.in
107
108 prepare_kernel_conf: .config FORCE
109
110 ifeq ($(wildcard staging_dir/host/bin/quilt),)
111   prepare_kernel_conf:
112         @+$(SUBMAKE) -r tools/quilt/install
113 else
114   prepare_kernel_conf: ;
115 endif
116
117 kernel_oldconfig: prepare_kernel_conf
118         $(_SINGLE)$(NO_TRACE_MAKE) -C target/linux oldconfig
119
120 kernel_menuconfig: prepare_kernel_conf
121         $(_SINGLE)$(NO_TRACE_MAKE) -C target/linux menuconfig
122
123 kernel_nconfig: prepare_kernel_conf
124         $(_SINGLE)$(NO_TRACE_MAKE) -C target/linux nconfig
125
126 tmp/.prereq-build: include/prereq-build.mk
127         mkdir -p tmp
128         rm -f tmp/.host.mk
129         @$(_SINGLE)$(NO_TRACE_MAKE) -j1 -r -s -f $(TOPDIR)/include/prereq-build.mk prereq 2>/dev/null || { \
130                 echo "Prerequisite check failed. Use FORCE=1 to override."; \
131                 false; \
132         }
133         touch $@
134
135 printdb: FORCE
136         @$(_SINGLE)$(NO_TRACE_MAKE) -p $@ V=99 DUMP_TARGET_DB=1 2>&1
137
138 download: .config FORCE
139         @+$(SUBMAKE) tools/download
140         @+$(SUBMAKE) toolchain/download
141         @+$(SUBMAKE) package/download
142         @+$(SUBMAKE) target/download
143
144 clean dirclean: .config
145         @+$(SUBMAKE) -r $@ 
146
147 prereq:: prepare-tmpinfo .config
148         @+$(MAKE) -r -s tmp/.prereq-build $(PREP_MK)
149         @+$(NO_TRACE_MAKE) -r -s $@
150
151 %::
152         @+$(PREP_MK) $(NO_TRACE_MAKE) -r -s prereq
153         @( \
154                 cp .config tmp/.config; \
155                 ./scripts/config/conf --defconfig tmp/.config -w tmp/.config Config.in > /dev/null 2>&1; \
156                 if ./scripts/kconfig.pl '>' .config tmp/.config | grep -q CONFIG; then \
157                         printf "$(_R)WARNING: your configuration is out of sync. Please run make menuconfig, oldconfig or defconfig!$(_N)\n" >&2; \
158                 fi \
159         )
160         @+$(ULIMIT_FIX) $(SUBMAKE) -r $@
161
162 help:
163         cat README
164
165 docs docs/compile: FORCE
166         @$(_SINGLE)$(SUBMAKE) -C docs compile
167
168 docs/clean: FORCE
169         @$(_SINGLE)$(SUBMAKE) -C docs clean
170
171 distclean:
172         rm -rf tmp build_dir staging_dir dl .config* feeds package/feeds package/openwrt-packages bin
173         @$(_SINGLE)$(SUBMAKE) -C scripts/config clean
174
175 ifeq ($(findstring v,$(DEBUG)),)
176   .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
177 endif
178 .PHONY: help FORCE
179 .NOTPARALLEL:
180