X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=Makefile;h=718053e006c9366692cb3ecdb36fd5198a172444;hp=2dcb72763613604b738241fd817e1e558f0ac9be;hb=c41e00ae34fdbf23c081c6439f2e689c55ae5ad6;hpb=a4fad88c0016a1057526734e190f8607ebf8e93b diff --git a/Makefile b/Makefile index 2dcb727636..718053e006 100644 --- a/Makefile +++ b/Makefile @@ -39,46 +39,50 @@ else endif export OPENWRTVERSION -ifneq ($(shell ./scripts/timestamp.pl -p tmp/.pkginfo package scripts include),tmp/.pkginfo) - tmp/.pkginfo: FORCE -endif - -ifneq ($(shell ./scripts/timestamp.pl -p tmp/.targetinfo target/linux scripts include),tmp/.targetinfo) - tmp/.targetinfo: FORCE -endif - ifeq ($(FORCE),) .config scripts/config/conf scripts/config/mconf: tmp/.prereq-build world: tmp/.prereq-packages tmp/.prereq-target endif -tmp/.pkginfo: - @mkdir -p tmp - @echo Collecting package info... - @-for dir in package/*/; do \ - [ -f "$${dir}/Makefile" ] || continue; \ - echo Source-Makefile: $${dir}Makefile; \ - $(NO_TRACE_MAKE) --no-print-dir DUMP=1 -C $$dir 3>/dev/null || echo "ERROR: please fix $${dir}Makefile" >&2; \ - echo; \ - done > $@ - -tmp/.targetinfo: - @mkdir -p tmp - @echo Collecting target info... - @-for dir in target/linux/*/; do \ - [ -f "$${dir}/Makefile" ] || continue; \ - ( cd "$$dir"; $(NO_TRACE_MAKE) --no-print-dir DUMP=1 3>/dev/null || echo "ERROR: please fix $${dir}Makefile" >&2 ); \ - echo; \ - done > $@ +define stamp +tmp/info/.stamp-$(1)-$(shell ls $(2)/*/Makefile $(5) | (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 $(5)), +tmp/.$(1): $(FILE) +$(FILE): +) + +ifneq ($(5),) +tmp/.$(1): $(shell ls $(5)) +endif + +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)" SCAN_EXTRA="$(5)" + +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,target/linux/*/profiles/*.mk)) tmpinfo-clean: FORCE @-rm -rf tmp/.pkginfo tmp/.targetinfo tmp/.config.in: tmp/.pkginfo - @./scripts/gen_package_config.pl < $< > $@ || rm -f $@ + @./scripts/metadata.pl package_config < $< > $@ || rm -f $@ tmp/.config-target.in: tmp/.targetinfo - @./scripts/gen_target_config.pl < $< > $@ || rm -f $@ + @./scripts/metadata.pl target_config < $< > $@ || rm -f $@ .config: ./scripts/config/conf tmp/.config.in tmp/.config-target.in @[ -f .config ] || $(NO_TRACE_MAKE) menuconfig @@ -106,10 +110,16 @@ oldconfig: scripts/config/conf tmp/.config.in tmp/.config-target.in FORCE menuconfig: scripts/config/mconf tmp/.config.in tmp/.config-target.in FORCE $< Config.in -package/%: tmp/.pkginfo tmp/.targetinfo FORCE +kernel_menuconfig: .config FORCE + -$(MAKE) target/linux-prepare + $(NO_TRACE_MAKE) -C target/linux menuconfig + +package/%: + @$(NO_TRACE_MAKE) -s tmp/.pkginfo tmp/.targetinfo $(MAKE) -C package $(patsubst package/%,%,$@) -target/%: tmp/.pkginfo tmp/.targetinfo FORCE +target/%: + @$(NO_TRACE_MAKE) -s tmp/.pkginfo tmp/.targetinfo $(MAKE) -C target $(patsubst target/%,%,$@) tools/%: FORCE @@ -168,13 +178,22 @@ clean: FORCE dirclean: clean rm -rf staging_dir_* toolchain_build_* tool_build -distclean: dirclean config-clean +distclean: dirclean config-clean symlinkclean docclean rm -rf dl help: cat README -.SILENT: clean dirclean distclean config-clean download world +doc: + $(MAKE) -C docs/ openwrt.pdf + +docclean: + $(MAKE) -C docs/ clean + +symlinkclean: + find package -type l | xargs rm -f + +.SILENT: clean dirclean distclean symlinkclean config-clean download world FORCE: ; .PHONY: FORCE help %: ;