projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
don't generate invalid dependency lines in sdk mode
[openwrt.git]
/
target
/
Makefile
diff --git
a/target/Makefile
b/target/Makefile
index
52b2e60
..
9205f5b
100644
(file)
--- a/
target/Makefile
+++ b/
target/Makefile
@@
-1,33
+1,32
@@
include $(TOPDIR)/rules.mk
include $(TOPDIR)/rules.mk
-# Default target skeleton stuff, may be overridden
-TARGET_SKEL_DIR=default/target_skeleton
-
all: install
$(BIN_DIR):
mkdir -p $(BIN_DIR)
all: install
$(BIN_DIR):
mkdir -p $(BIN_DIR)
-linux-compile: utils-install lzma-install
+TARGETS:=linux utils
+
+linux-compile: utils-install
linux-install: $(BIN_DIR)
linux-install: $(BIN_DIR)
-prepare:
+download: $(patsubst %,%-source,$(TARGETS))
+prepare: linux-prepare
compile: linux-compile
install: image_clean linux-install
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:
+%-clean:
FORCE
$(MAKE) -C $(patsubst %-clean,%,$@) clean
$(MAKE) -C $(patsubst %-clean,%,$@) clean
-%-prepare:
+%-source: FORCE
+ $(MAKE) -C $(patsubst %-source,%,$@) source
+%-prepare: FORCE
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
%-compile: %-prepare
$(MAKE) -C $(patsubst %-compile,%,$@) compile
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
%-compile: %-prepare
$(MAKE) -C $(patsubst %-compile,%,$@) compile
-%-rebuild:
- $(MAKE) -C $(patsubst %-rebuild,%,$@) rebuild
%-install: %-compile
$(MAKE) -C $(patsubst %-install,%,$@) install
%-install: %-compile
$(MAKE) -C $(patsubst %-install,%,$@) install
-
This page took
0.020135 seconds
and
4
git commands to generate.