X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=Makefile;h=8b0ef0d57d53e972995ce513ee67e39d0dbbfbb6;hb=2058b8096491f4976710ecbd1d70d82c4ffaae13;hp=970b0896ca80b3ae3548b15cbcdf31da1600e0e6;hpb=edc74f8cc3f810b03a39b5f98bd0c3908d5c9303;p=oweals%2Fopenwrt.git diff --git a/Makefile b/Makefile index 970b0896ca..8b0ef0d57d 100644 --- a/Makefile +++ b/Makefile @@ -57,9 +57,20 @@ prepare: .config $(tools/stamp-install) $(toolchain/stamp-install) world: prepare $(target/stamp-compile) $(package/stamp-cleanup) $(package/stamp-compile) $(package/stamp-install) $(package/stamp-rootfs-prepare) $(target/stamp-install) FORCE $(MAKE) package/index +# update all feeds, re-create index files, install symlinks package/symlinks: - $(SCRIPT_DIR)/feeds.sh $(CONFIG_SOURCE_FEEDS) $(CONFIG_SOURCE_FEEDS_REV) + $(SCRIPT_DIR)/feeds update -a + $(SCRIPT_DIR)/feeds install -a -.PHONY: clean dirclean prereq prepare world package/symlinks +# re-create index files, install symlinks +package/symlinks-install: + $(SCRIPT_DIR)/feeds update -i + $(SCRIPT_DIR)/feeds install -a + +# remove all symlinks, don't touch ./feeds +package/symlinks-clean: + $(SCRIPT_DIR)/feeds uninstall -a + +.PHONY: clean dirclean prereq prepare world package/symlinks package/symlinks-install package/symlinks-clean endif