summaryrefslogtreecommitdiff
path: root/package/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-06-04 11:14:08 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-06-04 11:14:08 +0000
commit9abbe7a03331e090354effabae026992dc962332 (patch)
tree81a84364087dfcdbdf390d024d3037d8bb1455d1 /package/Makefile
parentf082d1fddf936c406eed2eeeeef89972cf64bd22 (diff)
downloadmtk-20170518-9abbe7a03331e090354effabae026992dc962332.zip
mtk-20170518-9abbe7a03331e090354effabae026992dc962332.tar.gz
mtk-20170518-9abbe7a03331e090354effabae026992dc962332.tar.bz2
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
SVN-Revision: 7488
Diffstat (limited to 'package/Makefile')
-rw-r--r--package/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/package/Makefile b/package/Makefile
index 0713e8d..94241db 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: