diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d96681d --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +CC := gcc + +all: + @./waf build + +clean: + @./waf clean + +distclean: + @./waf distclean + @rm tags + +ctags: + @ctags `find -name \*.[ch]`