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