diff options
Diffstat (limited to 'target')
-rw-r--r-- | target/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/Makefile b/target/Makefile index 2c1861193..195878e66 100644 --- a/target/Makefile +++ b/target/Makefile @@ -20,7 +20,7 @@ linux-install: $(BIN_DIR) sdk-compile: linux-install image_install: linux-install -download: $(patsubst %,%-source,$(TARGETS-y)) +download: $(patsubst %,%-download,$(TARGETS-y)) prepare: linux-prepare compile: linux-compile image_compile install: image_clean $(patsubst %,%-install,$(TARGETS-y)) image_install @@ -38,8 +38,8 @@ image_install: image_compile %-clean: FORCE $(MAKE) -C $(patsubst %-clean,%,$@) clean -%-source: FORCE - $(MAKE) -C $(patsubst %-source,%,$@) source +%-download: FORCE + $(MAKE) -C $(patsubst %-download,%,$@) download %-prepare: FORCE $(MAKE) -C $(patsubst %-prepare,%,$@) prepare %-compile: %-prepare |