1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

add target/download

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4030 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2006-06-20 23:56:49 +00:00
parent 14ace0ca94
commit 97f419b809
8 changed files with 21 additions and 2 deletions

View File

@@ -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