diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-06-20 23:56:49 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-06-20 23:56:49 +0000 |
commit | 00ea655b03ee6aaeebd4a4cd952dad7ad2252e75 (patch) | |
tree | d7b1c1c038999f6836cd7e7f9a582f77663f63dd /target/Makefile | |
parent | 6243bf96493fb54ce5bd02592115d53e1fad0495 (diff) | |
download | upstream-00ea655b03ee6aaeebd4a4cd952dad7ad2252e75.tar.gz upstream-00ea655b03ee6aaeebd4a4cd952dad7ad2252e75.tar.bz2 upstream-00ea655b03ee6aaeebd4a4cd952dad7ad2252e75.zip |
add target/download
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4030 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/Makefile')
-rw-r--r-- | target/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/target/Makefile b/target/Makefile index 709a2080a5..d64053cbd4 100644 --- a/target/Makefile +++ b/target/Makefile @@ -5,19 +5,24 @@ all: install $(BIN_DIR): mkdir -p $(BIN_DIR) +TARGETS:=linux utils lzma + linux-compile: utils-install lzma-install linux-install: $(BIN_DIR) +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: FORCE rm -f $(BIN_DIR)/openwrt-* %-clean: FORCE $(MAKE) -C $(patsubst %-clean,%,$@) clean +%-source: FORCE + $(MAKE) -C $(patsubst %-source,%,$@) source %-prepare: FORCE $(MAKE) -C $(patsubst %-prepare,%,$@) prepare %-compile: %-prepare |