projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add target/download
[openwrt.git]
/
target
/
Makefile
diff --git
a/target/Makefile
b/target/Makefile
index
e6ebbaa
..
d64053c
100644
(file)
--- a/
target/Makefile
+++ b/
target/Makefile
@@
-5,33
+5,33
@@
all: install
$(BIN_DIR):
mkdir -p $(BIN_DIR)
$(BIN_DIR):
mkdir -p $(BIN_DIR)
+TARGETS:=linux utils lzma
+
linux-compile: utils-install lzma-install
linux-install: $(BIN_DIR)
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
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:
+image_clean:
FORCE
rm -f $(BIN_DIR)/openwrt-*
rm -f $(BIN_DIR)/openwrt-*
-%-clean:
- @$(TRACE) target/$(patsubst %-clean,%,$@)/clean
+%-clean: FORCE
$(MAKE) -C $(patsubst %-clean,%,$@) clean
$(MAKE) -C $(patsubst %-clean,%,$@) clean
-%-prepare:
- @$(TRACE) target/$(patsubst %-prepare,%,$@)/prepare
+%-source: FORCE
+ $(MAKE) -C $(patsubst %-source,%,$@) source
+%-prepare: FORCE
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
%-compile: %-prepare
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
%-compile: %-prepare
- @$(TRACE) target/$(patsubst %-compile,%,$@)/compile
$(MAKE) -C $(patsubst %-compile,%,$@) compile
$(MAKE) -C $(patsubst %-compile,%,$@) compile
-%-rebuild:
- @$(TRACE) target/$(patsubst %-rebuild,%,$@)/rebuild
+%-rebuild: FORCE
$(MAKE) -C $(patsubst %-rebuild,%,$@) rebuild
%-install: %-compile
$(MAKE) -C $(patsubst %-rebuild,%,$@) rebuild
%-install: %-compile
- @$(TRACE) target/$(patsubst %-install,%,$@)/install
$(MAKE) -C $(patsubst %-install,%,$@) install
$(MAKE) -C $(patsubst %-install,%,$@) install
-linux-imagebuilder:
- @$(TRACE) target/linux/imagebuilder
+linux-imagebuilder: FORCE
$(MAKE) -C linux imagebuilder
$(MAKE) -C linux imagebuilder
+
This page took
0.025151 seconds
and
4
git commands to generate.