neovim/Makefile

47 lines
1.0 KiB
Makefile
Raw Normal View History

-include local.mk
2014-02-26 14:16:54 -05:00
CMAKE_FLAGS := -DCMAKE_BUILD_TYPE=Debug -DCMAKE_PREFIX_PATH=.deps/usr -DLibUV_USE_STATIC=YES
# Extra CMake flags which extend the default set
2014-02-26 14:16:54 -05:00
CMAKE_EXTRA_FLAGS :=
# For use where we want to make sure only a single job is run. This also avoids
# any warnings from the sub-make.
SINGLE_MAKE = export MAKEFLAGS= ; $(MAKE)
build/bin/nvim: deps
$(MAKE) -C build
test: build/bin/nvim
$(SINGLE_MAKE) -C src/testdir
2014-02-01 09:27:24 -05:00
unittest: build/bin/nvim
sh -e scripts/unittest.sh
deps: .deps/usr/lib/libuv.a .deps/usr/lib/libluajit-5.1.a .deps/usr/bin/busted
2014-02-01 09:20:02 -05:00
.deps/usr/lib/libuv.a:
sh -e scripts/compile-libuv.sh
2014-02-01 09:20:02 -05:00
.deps/usr/lib/libluajit-5.1.a:
sh -e scripts/compile-lua.sh
.deps/usr/bin/busted:
sh -e scripts/setup-test-tools.sh
cmake: clean deps
mkdir build
cd build && cmake $(CMAKE_FLAGS) $(CMAKE_EXTRA_FLAGS) ../
2014-02-01 09:20:02 -05:00
clean:
rm -rf build
$(MAKE) -C src/testdir clean
$(MAKE) -C test/includes clean
2014-02-01 09:20:02 -05:00
install: build/bin/nvim
$(MAKE) -C build install
.PHONY: test unittest deps cmake install
2014-02-01 09:27:24 -05:00
.DEFAULT: build/bin/nvim