X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/02cdebbb91a33d8e24da1c94a9d93ac39be168a7..06f88f2a1584969fcf20ace162a00d239a5d4cc2:/target/Makefile

diff --git a/target/Makefile b/target/Makefile
index 2c1861193..dc21033e5 100644
--- a/target/Makefile
+++ b/target/Makefile
@@ -17,10 +17,9 @@ TARGETS-$(CONFIG_SDK) += sdk
 
 linux-compile: utils-install
 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 +37,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