From a6734844ca88d2a85de6be10b60e75d48f64747f Mon Sep 17 00:00:00 2001 From: Eliseo Martínez Date: Mon, 12 May 2014 15:50:37 +0200 Subject: Introduce nvim namespace: Fix build process. - Leave src as include dir (for includes to recognize 'nvim/' prefix). - Change subdirectory from src to src/nvim. - Fix msgpack generation. - Fix some other paths to new locations. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6cb7b57369..f55db1d234 100644 --- a/Makefile +++ b/Makefile @@ -60,14 +60,14 @@ deps: | .deps/build/third-party/.ran-cmake touch $@ test: | nvim - +$(SINGLE_MAKE) -C src/testdir + +$(SINGLE_MAKE) -C src/nvim/testdir unittest: | nvim +$(BUILD_CMD) -C build unittest clean: +test -d build && $(BUILD_CMD) -C build clean || true - $(MAKE) -C src/testdir clean + $(MAKE) -C src/nvim/testdir clean distclean: clean rm -rf .deps build -- cgit