X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=target%2FMakefile;h=24c34036de3334405aa15ef93d0712c80fd58bb1;hb=0bc141c3df946ffd2ae2b9854a5f3dc71b325bf2;hp=5e8c6f28cdc00f46e8f5dd41fbf35115b826efa5;hpb=1f8c7eef481a506990c1c81ec6b9dcbec4a2380b;p=openwrt.git diff --git a/target/Makefile b/target/Makefile index 5e8c6f28cd..24c34036de 100644 --- a/target/Makefile +++ b/target/Makefile @@ -8,7 +8,7 @@ $(BIN_DIR): linux-compile: utils-install lzma-install linux-install: $(BIN_DIR) -prepare: +prepare: linux-prepare compile: linux-compile install: image_clean linux-install clean: linux-clean utils-clean lzma-clean image_clean @@ -16,15 +16,26 @@ clean: linux-clean utils-clean lzma-clean image_clean image_clean: rm -f $(BIN_DIR)/openwrt-* +linux/package/%: + $(MAKE) -C $(TOPDIR)/target/linux $(patsubst linux/%,%,$@) + %-clean: + @$(TRACE) target/$(patsubst %-clean,%,$@)-clean $(MAKE) -C $(patsubst %-clean,%,$@) clean %-prepare: + @$(TRACE) target/$(patsubst %-prepare,%,$@)-prepare $(MAKE) -C $(patsubst %-prepare,%,$@) prepare %-compile: %-prepare + @$(TRACE) target/$(patsubst %-compile,%,$@)-compile $(MAKE) -C $(patsubst %-compile,%,$@) compile %-rebuild: + @$(TRACE) target/$(patsubst %-rebuild,%,$@)-rebuild $(MAKE) -C $(patsubst %-rebuild,%,$@) rebuild %-install: %-compile + @$(TRACE) target/$(patsubst %-install,%,$@)-install $(MAKE) -C $(patsubst %-install,%,$@) install +linux-imagebuilder: + @$(TRACE) target/linux/imagebuilder + $(MAKE) -C linux imagebuilder