Accept a name for dl and include starter script file
[khome.git] / deps / neovim / Makefile
CommitLineData
a0710ab0
SK
1ifeq ($(shell uname),Darwin)
2 DEPS := brew install ninja libtool automake cmake pkg-config gettext
3else
4 DEPS := sudo apt install cmake libtool-bin
5endif
6
3994a3bc
SK
7.PHONY: all
8all: deps
9 $(MAKE) clone
10 $(MAKE) build
11
12.PHONY: deps
13deps:
a0710ab0 14 $(DEPS)
3994a3bc
SK
15
16.PHONY: clone
17clone:
18 mkdir -p data
a0710ab0 19 cd data && git clone https://github.com/neovim/neovim.git || true
3994a3bc
SK
20
21.PHONY: build
22build:
23 cd data/neovim && make CMAKE_BUILD_TYPE=RelWithDebInfo
24
25.PHONY: install
26install:
27 cd data/neovim && make install
This page took 0.069749 seconds and 4 git commands to generate.