aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjdiez17 <jose.manuel.diez@gmail.com>2014-02-22 15:30:50 +0000
committerThiago de Arruda <tpadilha84@gmail.com>2014-02-24 14:45:07 -0300
commitbe3ce617c718cee0cbd418cd1b014f9e9480a0b9 (patch)
tree9a4ee1441286d389202417be432d89297ab7de2d /Makefile
parent1df4ec20976ad0d6c52eb1207c40e06589ce54da (diff)
downloadrneovim-be3ce617c718cee0cbd418cd1b014f9e9480a0b9.tar.gz
rneovim-be3ce617c718cee0cbd418cd1b014f9e9480a0b9.tar.bz2
rneovim-be3ce617c718cee0cbd418cd1b014f9e9480a0b9.zip
Changed binary output directory from src/ to bin/
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6e456022c2..ef609b0a49 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
CMAKE_FLAGS := -DCMAKE_BUILD_TYPE=Debug
-build/src/vim: deps
+build/bin/vim: deps
cd build && make
-test: build/src/vim
+test: build/bin/vim
cd src/testdir && make
deps: .deps/usr/lib/libuv.a
@@ -23,4 +23,4 @@ clean:
.PHONY: test deps cmake
-.DEFAULT: build/src/vim
+.DEFAULT: build/bin/vim