X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=Makefile;h=9b341f1241a8246060e28cc78a0a3fd27a0447e0;hb=cd0d52cbccd8c66fd7b28a35eb69efdc4231201f;hp=b938c241f9f084b77c55e18188dc679751072d66;hpb=096afa4e695916a8068c82af6807f9b6de587c38;p=openwrt.git diff --git a/Makefile b/Makefile index b938c241f9..9b341f1241 100644 --- a/Makefile +++ b/Makefile @@ -38,21 +38,21 @@ endif endif export OPENWRTVERSION -ifeq ($(shell ./scripts/timestamp.pl -p .pkginfo package),package) -.pkginfo: pkginfo-clean -endif +all: -.pkginfo: +.pkginfo: FORCE +ifneq ($(shell ./scripts/timestamp.pl -p .pkginfo package Makefile),.pkginfo) @echo Collecting package info... - @-for makefile in package/*/Makefile; do \ - echo Source-Makefile: $$makefile; \ - $(MAKE) DUMP=1 -f $$makefile 2>&- || true; \ + @-for dir in package/*/; do \ + echo Source-Makefile: $${dir}Makefile; \ + $(MAKE) --no-print-dir DUMP=1 -C $$dir 2>&- || true; \ done > $@ - +endif + .config.in: .pkginfo ./scripts/gen_menuconfig.pl < $< > $@ || rm -f $@ -pkginfo-clean: +pkginfo-clean: FORCE -rm -f .pkginfo .config.in scripts/config/mconf: .config.in @@ -70,6 +70,5 @@ config: scripts/config/conf config-clean: $(MAKE) -C scripts/config clean -.PHONY: pkginfo-clean - - +.PHONY: FORCE +FORCE: