add Makefile for bundles
This commit is contained in:
parent
fdbea47fc8
commit
72d69fc830
17
Makefile
Normal file
17
Makefile
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user