X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=Makefile;h=8b0ef0d57d53e972995ce513ee67e39d0dbbfbb6;hb=c435eff5625a8fb63aea5d8f1bae662f9ad1e2ee;hp=77660bb8d7e11ed8d8dababd146ea6759a1bcce9;hpb=ee1854cb6807bd513158c127d7b524bf4fc7c065;p=10.03%2Fopenwrt.git diff --git a/Makefile b/Makefile index 77660bb8d..8b0ef0d57 100644 --- a/Makefile +++ b/Makefile @@ -57,10 +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 update - cd package; ln -sf ../feeds/packages openwrt-packages + $(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