X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/93e50b06ca295bc34326f6221b48ff5e94ccaa12..c1bae219c1beaf44b2c71bcc3572707c8afa0069:/Makefile diff --git a/Makefile b/Makefile index 9b9d1c955..b1bcf91a1 100644 --- a/Makefile +++ b/Makefile @@ -38,14 +38,14 @@ endif endif export OPENWRTVERSION -all: +all: world .pkginfo: FORCE -ifeq ($(shell ./scripts/timestamp.pl -p .pkginfo package),package) +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) --no-print-dir 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 @@ -70,5 +70,21 @@ config: scripts/config/conf config-clean: $(MAKE) -C scripts/config clean +package/%: .pkginfo + $(MAKE) -C package $(patsubst package/%,%,$@) + +target/%: .pkginfo + $(MAKE) -C target $(patsubst target/%,%,$@) + +toolchain/%: + $(MAKE) -C toolchain $(patsubst toolchain/%,%,$@) + +world: + $(MAKE) toolchain/install + $(MAKE) target/compile + $(MAKE) package/compile + $(MAKE) package/install + $(MAKE) target/install + .PHONY: FORCE FORCE: