Files
neovim/Makefile
Thiago de Arruda 72cf89bce8 Import vim from changeset v5628:c9cad40b4181
- 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
2014-01-31 10:39:15 -03:00

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