add missing BuildPackage lines, convert install-dev: to Build/InstallDev
[openwrt.git] / Makefile
index 9b9d1c9..b1bcf91 100644 (file)
--- 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:
This page took 0.025066 seconds and 4 git commands to generate.