Add dictionary method: pop.
[hope.git] / Makefile
index 1420ddf..34c0fe9 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,27 @@
-.PHONY: all compile clean
+.PHONY: \
+       ci \
+       fresh-build \
+       compile \
+       clean \
+       dialyze \
+       test
 
-all: clean compile
+ci: \
+       compile \
+       test
+
+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.024826 seconds and 4 git commands to generate.