1
0

remove the Makefile

it is not needed any more, vim-plug handles plugins now
This commit is contained in:
valeth 2015-03-24 17:24:00 +01:00
parent 9f0c5908fb
commit ead776906f

View File

@ -1,21 +0,0 @@
SUBMODULES = bundle/*
CO_INFO = \e[1;34m
CO_CLEAR = \e[0m
.PHONY: $(SUBMODULES)
all: $(SUBMODULES) youcompleteme
youcompleteme: bundle/youcompleteme
@echo -e "$(CO_INFO)building submodule $@$(CO_CLEAR)"
@cd $< && \
git submodule update --init --recursive && \
bash ./install.sh --clang-completer --system-libclang
$(SUBMODULES):
@echo -e "$(CO_INFO)updating submodule $@$(CO_CLEAR)"
@cd $@ && \
git pull origin master