diff --git a/Makefile b/Makefile index 4ba2df1..e2c8066 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,9 @@ -all: build test +.PHONY: build test + +all: test build: python setup.py build -test: +test: build cd tests && python -m unittest