696b1e44f3f417251826b4ddecfdd028d619ee4b
[khome.git] / deps / neovim / Makefile
1 .PHONY: all
2 all: deps
3 $(MAKE) clone
4 $(MAKE) build
5
6 .PHONY: deps
7 deps:
8 sudo apt install \
9 cmake \
10 libtool-bin
11
12 .PHONY: clone
13 clone:
14 mkdir -p data
15 cd data && git clone https://github.com/neovim/neovim.git
16
17 .PHONY: build
18 build:
19 cd data/neovim && make CMAKE_BUILD_TYPE=RelWithDebInfo
20
21 .PHONY: install
22 install:
23 cd data/neovim && make install
This page took 0.077698 seconds and 3 git commands to generate.