diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-06-04 11:14:08 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-06-04 11:14:08 +0000 |
commit | 80d2beea9d2661d7bd6a97efda4957af2638619d (patch) | |
tree | 5253c0882061a2f8f32ec21193e1fc1dd30d283f /target | |
parent | 4bc7e0ca8a72fd0e2ffc8397393a5792a03cc2d6 (diff) | |
download | upstream-80d2beea9d2661d7bd6a97efda4957af2638619d.tar.gz upstream-80d2beea9d2661d7bd6a97efda4957af2638619d.tar.bz2 upstream-80d2beea9d2661d7bd6a97efda4957af2638619d.zip |
Rename 'refresh' to 'update' and make the new 'refresh' actually refresh all the patches.
Also added a target package/refresh which will do this to all packages in the buildroot
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7488 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/Makefile | 2 | ||||
-rw-r--r-- | target/linux/Makefile | 21 |
2 files changed, 3 insertions, 20 deletions
diff --git a/target/Makefile b/target/Makefile index 438d268b5e..a3b15b2659 100644 --- a/target/Makefile +++ b/target/Makefile @@ -51,5 +51,5 @@ image_install: image_compile imagebuilder_install: image_install $(MAKE) -C imagebuilder install -%-prereq %-prepare %-download %-clean %-compile %-install %-refresh: FORCE +%-prereq %-prepare %-download %-clean %-compile %-install %-refresh %-update: FORCE $(MAKE) -C $* $(patsubst $*-%,%,$@) diff --git a/target/linux/Makefile b/target/linux/Makefile index 275085448f..e124869150 100644 --- a/target/linux/Makefile +++ b/target/linux/Makefile @@ -7,23 +7,6 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/target.mk -download: - $(MAKE) -C $(BOARD)-$(KERNEL) download +clean download prepare compile install menuconfig update refresh: FORCE + $(MAKE) -C $(BOARD)-$(KERNEL) $@ -prepare: - $(MAKE) -C $(BOARD)-$(KERNEL) prepare - -compile: - $(MAKE) -C $(BOARD)-$(KERNEL) compile - -install: - $(MAKE) -C $(BOARD)-$(KERNEL) install - -refresh: - $(MAKE) -C $(BOARD)-$(KERNEL) refresh - -menuconfig: - $(MAKE) -C $(BOARD)-$(KERNEL) menuconfig - -clean: - $(MAKE) -C $(BOARD)-$(KERNEL) clean |