diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-06-05 14:42:57 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-06-05 14:42:57 +0000 |
commit | d703a241d3e23944af9d50a9abcbe635f443ceb2 (patch) | |
tree | f15b4448aedd2f9021a2571f29f62b7f33d2defb /target/Makefile | |
parent | 941f587141cc3013117dba3fe0be65b1ead853f7 (diff) | |
download | upstream-d703a241d3e23944af9d50a9abcbe635f443ceb2.tar.gz upstream-d703a241d3e23944af9d50a9abcbe635f443ceb2.tar.bz2 upstream-d703a241d3e23944af9d50a9abcbe635f443ceb2.zip |
add rebuild target for the linux directory
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1149 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/Makefile')
-rw-r--r-- | target/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/target/Makefile b/target/Makefile index 05d0023d7b..88476a7993 100644 --- a/target/Makefile +++ b/target/Makefile @@ -45,7 +45,9 @@ $(foreach fs,$(TARGET_FS),$(eval $(call BIN_template,$(fs)))) INSTALL_TARGET_DIRS:=$(patsubst %,%-install,$(TARGET_DIRS)) $(INSTALL_TARGET_DIRS): image_clean $(TARGET_DIR)/etc/sysconf $(BIN_DIR) -prepare: $(patsubst %,%-prepare,$(TARGET_DIRS)) +prepare: $(patsubst %,%-prepare,$(TARGET_DIRS)) $(TARGET_DIR) + +$(TARGET_DIR): mkdir -p $(TARGET_DIR) if [ -f "$(TARGET_SKELETON)" ] ; then \ zcat $(TARGET_SKELETON) | tar -C $(BUILD_DIR) -xf -; \ @@ -88,6 +90,8 @@ $(TARGET_DIR)/etc/sysconf: $(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 |