aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEliseo Martínez <eliseomarmol@gmail.com>2014-05-12 15:50:37 +0200
committerEliseo Martínez <eliseomarmol@gmail.com>2014-05-15 20:46:01 +0200
commita6734844ca88d2a85de6be10b60e75d48f64747f (patch)
treeb24866559a7fc2bbc064f4ee1b43ac2f07672407 /Makefile
parentda51dc9cf202772f60bd2da975dbef257bd9237c (diff)
downloadrneovim-a6734844ca88d2a85de6be10b60e75d48f64747f.tar.gz
rneovim-a6734844ca88d2a85de6be10b60e75d48f64747f.tar.bz2
rneovim-a6734844ca88d2a85de6be10b60e75d48f64747f.zip
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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
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