diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..efab526 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +.PHONY: build +build: + ./waf build + +.PHONY: clean +clean: + ./waf clean + +.PHONY: distclean +distclean: + ./waf distclean diff --git a/configure b/configure new file mode 100755 index 0000000..a9d33b7 --- /dev/null +++ b/configure @@ -0,0 +1,2 @@ +#!/bin/sh +exec ./waf configure "$@"