mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
9db0fc3582
Also updated affected config files and test49.vim
27 lines
434 B
Makefile
27 lines
434 B
Makefile
CMAKE_FLAGS := -DCMAKE_BUILD_TYPE=Debug
|
|
|
|
build/bin/nvim: deps
|
|
cd build && make
|
|
|
|
test: build/bin/nvim
|
|
cd src/testdir && make
|
|
|
|
deps: .deps/usr/lib/libuv.a
|
|
|
|
.deps/usr/lib/libuv.a:
|
|
sh -e scripts/get-libuv.sh
|
|
|
|
cmake: clean
|
|
mkdir build
|
|
cd build && cmake $(CMAKE_FLAGS) ../
|
|
|
|
clean:
|
|
rm -rf build
|
|
for file in lua mbyte mzscheme small tiny; do \
|
|
rm -f src/testdir/$$file.vim; \
|
|
done
|
|
|
|
.PHONY: test deps cmake
|
|
|
|
.DEFAULT: build/bin/nvim
|