mirror of
https://github.com/neovim/neovim.git
synced 2026-03-26 10:22:00 +00:00
- Cleanup source tree, leaving only files necessary for compilation/testing - Process files through unifdef to remove tons of FEAT_* macros - Process files through uncrustify to normalize source code formatting. - Port the build system to cmake
15 lines
212 B
Makefile
15 lines
212 B
Makefile
CMAKE_FLAGS := -DCMAKE_BUILD_TYPE=Debug
|
|
|
|
test: build/src/vim
|
|
cd src/testdir && make
|
|
|
|
build/src/vim:
|
|
cd build && make
|
|
|
|
cmake:
|
|
rm -rf build
|
|
mkdir build
|
|
cd build && cmake $(CMAKE_FLAGS) ../
|
|
|
|
.PHONY: test cmake
|