Skip to content

Commit

Permalink
Set vim binary as default make target
Browse files Browse the repository at this point in the history
  • Loading branch information
tarruda committed Feb 1, 2014
1 parent 6b0b466 commit 9f380dd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Build/deps dir
build/
.deps/

Expand All @@ -10,10 +11,15 @@ build/
src/po/vim.pot

src/po/*.ck

# Files generated by the tests
src/testdir/mbyte.vim
src/testdir/mzscheme.vim
src/testdir/lua.vim
src/testdir/small.vim
src/testdir/tiny.vim
src/testdir/test*.out
src/testdir/test.log
src/testdir/test.ok
src/testdir/*.failed
src/testdir/X*
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
CMAKE_FLAGS := -DCMAKE_BUILD_TYPE=Debug

test: build/src/vim
cd src/testdir && make

build/src/vim: deps
cd build && make

test: build/src/vim
cd src/testdir && make

deps: .deps/usr/lib/libuv.a

.deps/usr/lib/libuv.a:
Expand All @@ -22,3 +22,5 @@ clean:
done

.PHONY: test deps cmake

.DEFAULT: build/src/vim

0 comments on commit 9f380dd

Please sign in to comment.