Add makefile for :make in vim.

This commit is contained in:
bitlair 2013-01-21 00:04:17 +01:00
parent 6c66a29b0a
commit 42522109b5

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
CC := gcc
all:
@./waf build
clean:
@./waf clean
distclean:
@./waf distclean
@rm tags
ctags:
@ctags `find -name \*.[ch]`