X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=Makefile;h=f5d49fed270d5a44a4e4b3476115abde1dbf4e39;hb=16237fb8e1df1a8344704538e4b67f02b24271f8;hp=8a2e6bbb8e2c90064bdf2f03ca607410091c4b2c;hpb=fd2ae84776684707c93853355e719f373c1c6189;p=10.03%2Fopenwrt.git diff --git a/Makefile b/Makefile index 8a2e6bbb8..f5d49fed2 100644 --- a/Makefile +++ b/Makefile @@ -26,6 +26,7 @@ RELEASE:=Kamikaze #-------------------------------------------------------------- TOPDIR=${shell pwd} export TOPDIR +include $(TOPDIR)/include/verbose.mk OPENWRTVERSION:=$(RELEASE) ifneq ($(VERSION),) @@ -38,14 +39,14 @@ endif endif export OPENWRTVERSION -all: +all: world .pkginfo: FORCE ifneq ($(shell ./scripts/timestamp.pl -p .pkginfo package Makefile),.pkginfo) @echo Collecting package info... @-for dir in package/*/; do \ echo Source-Makefile: $${dir}Makefile; \ - $(MAKE) --no-print-dir DUMP=1 -C $$dir 2>&- || true; \ + $(NO_TRACE_MAKE) --no-print-dir DUMP=1 -C $$dir 2>&- || true; \ done > $@ endif @@ -55,29 +56,61 @@ endif pkginfo-clean: FORCE -rm -f .pkginfo .config.in -scripts/config/mconf: .config.in +./scripts/config/mconf: .config.in $(MAKE) -C scripts/config all -scripts/config/conf: .config.in +./scripts/config/conf: .config.in $(MAKE) -C scripts/config conf -menuconfig: scripts/config/mconf +config: ./scripts/config/conf FORCE $< Config.in -config: scripts/config/conf +defconfig: ./scripts/config/conf FORCE + touch .config + $< -D .config Config.in + +oldconfig: ./scripts/config/conf FORCE + $< -o Config.in + +menuconfig: ./scripts/config/mconf FORCE $< Config.in -config-clean: +config-clean: FORCE $(MAKE) -C scripts/config clean -package/%: +package/%: .pkginfo FORCE $(MAKE) -C package $(patsubst package/%,%,$@) -target/%: +target/%: .pkginfo FORCE $(MAKE) -C target $(patsubst target/%,%,$@) -toolchain/%: +toolchain/%: FORCE $(MAKE) -C toolchain $(patsubst toolchain/%,%,$@) +.config: ./scripts/config/conf FORCE + @[ -f .config ] || $(NO_TRACE_MAKE) menuconfig + $< -D .config Config.in >/dev/null 2>/dev/null + +download: .config FORCE + $(MAKE) toolchain/download + $(MAKE) package/download + $(MAKE) target/download + +world: .config FORCE + $(MAKE) toolchain/install + $(MAKE) target/compile + $(MAKE) package/compile + $(MAKE) package/install + $(MAKE) target/install + +clean: FORCE + rm -rf build_* bin + +dirclean: clean + rm -rf staging_dir_* toolchain_build_* + +distclean: dirclean config-clean + rm -rf dl .*config* .pkg* + .PHONY: FORCE FORCE: