diff options
author | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-07-20 17:28:05 +0000 |
---|---|---|
committer | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-07-20 17:28:05 +0000 |
commit | 121ce3b367ebfcd69d04a2d90d85b7df0d5233ca (patch) | |
tree | d897a38a9b8e36a263f182298f2a454bb90bcd27 /target/Makefile | |
parent | fa318fcede308a4a3f8214a5b5d2d3e015a7fa27 (diff) |
change 'source' to 'download'
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4176 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/Makefile')
-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 |