-SHELL:=/usr/bin/env bash
-export LC_ALL=C
-export LANG=C
-export TOPDIR=${CURDIR}
-ifeq ($(KBUILD_VERBOSE),99)
- MAKE:=3>/dev/null $(MAKE)
-endif
-export IS_TTY=$(shell tty -s && echo 1 || echo 0)
-
-include $(TOPDIR)/include/verbose.mk
-
-OPENWRTVERSION:=$(RELEASE)
-ifneq ($(VERSION),)
- OPENWRTVERSION:=$(VERSION) ($(OPENWRTVERSION))
-else
- REV:=$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' )
- ifneq ($(REV),)
- OPENWRTVERSION:=$(OPENWRTVERSION)/r$(REV)
- endif
-endif
-export OPENWRTVERSION
-
-ifeq ($(FORCE),)
- .config scripts/config/conf scripts/config/mconf: tmp/.prereq-build
- world: tmp/.prereq-packages tmp/.prereq-target
-endif
-
-define stamp
-tmp/info/.stamp-$(1)-$(shell ls $(2)/*/Makefile | (md5sum || md5) 2>/dev/null | cut -d' ' -f1)
-endef
-
-STAMP_pkginfo=$(call stamp,pkginfo,package)
-STAMP_targetinfo=$(call stamp,targetinfo,target/linux)
-define scan_info
-
-$(STAMP_$(1)):
- @mkdir -p tmp/info
- @rm -f tmp/info/.stamp-$(1)*
- @touch $$@
-
-$(foreach FILE,$(shell ls $(2)/*/Makefile),
-tmp/.$(1): $(FILE)
-$(FILE):
-)
-
-tmp/.$(1): $(STAMP_$(1)) $(4)
- @echo -n Collecting $(3) info...
- @$(NO_TRACE_MAKE) -s -f include/scan.mk SCAN_TARGET="$(1)" SCAN_DIR="$(2)" SCAN_NAME="$(3)" SCAN_DEPS="$(4)"
-
-endef
-
-$(eval $(call scan_info,pkginfo,package,package,include/package.mk))
-$(eval $(call scan_info,targetinfo,target/linux,target,include/kernel-build.mk include/kernel-version.mk))
-
-tmpinfo-clean: FORCE
- @-rm -rf tmp/.pkginfo tmp/.targetinfo
-
-tmp/.config.in: tmp/.pkginfo
- @./scripts/metadata.pl package_config < $< > $@ || rm -f $@
-
-tmp/.config-target.in: tmp/.targetinfo
- @./scripts/metadata.pl target_config < $< > $@ || rm -f $@
-
-.config: ./scripts/config/conf tmp/.config.in tmp/.config-target.in
- @[ -f .config ] || $(NO_TRACE_MAKE) menuconfig
- @$< -D .config Config.in &> /dev/null
-
-scripts/config/mconf:
- @$(MAKE) -C scripts/config all
-
-scripts/config/conf:
- @$(MAKE) -C scripts/config conf
-
-config: scripts/config/conf tmp/.config.in tmp/.config-target.in FORCE
- $< Config.in
-
-config-clean: FORCE
- $(NO_TRACE_MAKE) -C scripts/config clean