-export TOPDIR=${shell pwd}
-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
-
-ifneq ($(shell ./scripts/timestamp.pl -p .pkginfo package Makefile),.pkginfo)
- .pkginfo .config: FORCE
-endif
-
-ifeq ($(FORCE),)
- .config scripts/config/conf scripts/config/mconf: .prereq-build
- world: .prereq-packages
-endif
-
-.pkginfo:
- @echo Collecting package info...
- @-for dir in package/*/; do \
- echo Source-Makefile: $${dir}Makefile; \
- $(NO_TRACE_MAKE) --no-print-dir DUMP=1 -C $$dir || echo "ERROR: please fix $${dir}Makefile" >&2; \
- done > $@
-
-pkginfo-clean: FORCE
- -rm -f .pkginfo .config.in
-
-.config.in: .pkginfo
- @./scripts/gen_menuconfig.pl < $< > $@ || rm -f $@
-
-.config: ./scripts/config/conf
- @[ -f .config ] || $(NO_TRACE_MAKE) menuconfig
- @$< -D .config Config.in &> /dev/null
-
-scripts/config/mconf:
- @$(MAKE) -C scripts/config all