diff --git a/.vimrc b/.vimrc index 08ce8a5..29a44e2 100644 --- a/.vimrc +++ b/.vimrc @@ -1,6 +1,4 @@ nnoremap :Make nnoremap :Make clean -au FileType c,h setl makeprg=make\ -C\ build - let g:syntastic_c_include_dirs = [ 'build' ] diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..759f0cf --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +all: + @make -sC build +.PHONY: all + +clean: + @make clean -sC build +.PHONY: clean + +test: + @make test -sC build +.PHONY: test