X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/960b21b516f519374168ee3703c8dd034c147843..97f419b809d897b74baad8044de4bfcd47dd4fa9:/target/Makefile diff --git a/target/Makefile b/target/Makefile index e6156b48b..d64053cbd 100644 --- a/target/Makefile +++ b/target/Makefile @@ -5,27 +5,33 @@ all: install $(BIN_DIR): mkdir -p $(BIN_DIR) +TARGETS:=linux utils lzma + linux-compile: utils-install lzma-install linux-install: $(BIN_DIR) -prepare: +download: $(patsubst %,%-source,$(TARGETS)) +prepare: linux-prepare compile: linux-compile install: image_clean linux-install -clean: linux-clean utils-clean lzma-clean image_clean +clean: $(patsubst %,%-clean,$(TARGETS)) image_clean -image_clean: +image_clean: FORCE rm -f $(BIN_DIR)/openwrt-* -%-clean: +%-clean: FORCE $(MAKE) -C $(patsubst %-clean,%,$@) clean -%-prepare: +%-source: FORCE + $(MAKE) -C $(patsubst %-source,%,$@) source +%-prepare: FORCE $(MAKE) -C $(patsubst %-prepare,%,$@) prepare %-compile: %-prepare $(MAKE) -C $(patsubst %-compile,%,$@) compile -%-rebuild: +%-rebuild: FORCE $(MAKE) -C $(patsubst %-rebuild,%,$@) rebuild %-install: %-compile $(MAKE) -C $(patsubst %-install,%,$@) install -linux-imagebuilder: +linux-imagebuilder: FORCE $(MAKE) -C linux imagebuilder +