From 72d69fc8308c92021ba388d15643ac28da886301 Mon Sep 17 00:00:00 2001 From: valeth Date: Fri, 13 Feb 2015 04:20:55 +0100 Subject: [PATCH] add Makefile for bundles --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3983aac --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +SUBMODULES = bundle/* + +.PHONY: $(SUBMODULES) + +all: $(SUBMODULES) + +$(SUBMODULES): + $(info updating submodule $@) + @cd $@ + @git pull origin master 1>/dev/null 2>/dev/null + +bundle/youcompleteme: + $(info updating submodule $@) + @cd $@ + @git pull origin master 1>/dev/null 2>/dev/null + @git submodule update --init --recursive + @bash ./install.sh --clang-completer