Set-up testing skeleton.
[hope.git] / Makefile
index 1420ddf..3104462 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,22 @@
-.PHONY: all compile clean
+.PHONY: \
+       fresh-build \
+       compile \
+       clean \
+       dialyze \
+       test
 
-all: clean compile
+fresh-build: \
+       clean \
+       compile
 
 compile:
        @rebar compile
 
 clean:
        @rebar clean
+
+dialyze:
+       @dialyzer ebin
+
+test:
+       @rebar ct skip_deps=true --verbose=0
This page took 0.018041 seconds and 4 git commands to generate.