X-Git-Url: https://git.xandkar.net/?a=blobdiff_plain;f=Makefile;h=3104462445c7e93ce229d2d4671eb258723fd315;hb=39273fbe5d3bb9501b22e98d313a72d9fb4ea2ea;hp=1420ddfc134991d58802feadc9c17a7597c507d3;hpb=599f5f4f9cbd1542801668184fbfd0e255411e10;p=hope.git diff --git a/Makefile b/Makefile index 1420ddf..3104462 100644 --- 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