@@ -0,0 +1,12 @@
+all: test docs
+
+test:
+ phpunit
+docs:
+ phpdoc
+clean:
+ rm -rf build
+.PHONY: test docs clean