From 82a81707d83ea55c1ead149fbceee231e54bf998 Mon Sep 17 00:00:00 2001 From: nbd Date: Mon, 4 Jun 2007 11:14:08 +0000 Subject: 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 --- package/Makefile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'package/Makefile') diff --git a/package/Makefile b/package/Makefile index 0713e8d23..94241dbc3 100644 --- a/package/Makefile +++ b/package/Makefile @@ -26,12 +26,16 @@ ifeq ($(QUIET),1) %-compile %-install: FORCE $(MAKE) -C $* $(patsubst $*-%,%,$@) || { $(call MESSAGE, "*** $* $(patsubst $*-%,%,$@) failed"); false; } -%-prepare %-prereq %-download %-clean %-refresh: FORCE +%-prepare %-prereq %-download %-clean: FORCE else -%-prepare %-prereq %-download %-clean %-compile %-install %-refresh: FORCE +%-prepare %-prereq %-download %-clean %-compile %-install: FORCE endif $(MAKE) -C $* $(patsubst $*-%,%,$@) +%-refresh %-update: + -$(MAKE) -C $* $(patsubst $*-%,%,$@) + + # .IGNORE: $(COMPILE_PACKAGES) $(TMP_DIR)/.packagedeps: $(TMP_DIR)/.packageinfo @@ -42,6 +46,9 @@ clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m)) prereq: $(PREREQ_PACKAGES) download: $(DOWNLOAD_PACKAGES) compile: $(COMPILE_PACKAGES) +ifneq ($(QUILT),) + refresh: $(patsubst %,%-refresh,$(package-y) $(package-m) $(package-)) +endif install-targets: $(INSTALL_PACKAGES) install: -- cgit v1.2.3