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/linux/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/linux/Makefile')
-rw-r--r-- | target/linux/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/target/linux/Makefile b/target/linux/Makefile index ced6dca005..d1b4d545a8 100644 --- a/target/linux/Makefile +++ b/target/linux/Makefile @@ -11,6 +11,9 @@ $(1)/$(2)-prepare: $(1)/$(2)-compile: $(MAKE) -C $(1) BOARD="$(2)" compile +$(1)/$(2)-rebuild: + $(MAKE) -C $(1) BOARD="$(2)" rebuild + $(1)/$(2)-install: $(MAKE) -C $(1) BOARD="$(2)" install @@ -18,15 +21,17 @@ ifeq ($(BR2_LINUX_$(3)),y) clean: $(1)/$(2)-clean prepare: $(1)/$(2)-prepare compile: $(1)/$(2)-compile +rebuild: $(1)/$(2)-rebuild install: $(1)/$(2)-install endif -.PHONY: $(1)/$(2)-clean $(1)/$(2)-prepare $(1)/$(2)-compile $(1)/$(2)-install +.PHONY: $(1)/$(2)-clean $(1)/$(2)-prepare $(1)/$(2)-compile $(1)/$(2)-rebuild $(1)/$(2)-install endef prepare: compile: install: +rebuild: clean: rm -rf $(BUILD_DIR)/kernel |