Add dictionary method: pop.
[hope.git] / Makefile
1 .PHONY: \
2 ci \
3 fresh-build \
4 compile \
5 clean \
6 dialyze \
7 test
8
9 ci: \
10 compile \
11 test
12
13 fresh-build: \
14 clean \
15 compile
16
17 compile:
18 @rebar compile
19
20 clean:
21 @rebar clean
22
23 dialyze:
24 @dialyzer ebin
25
26 test:
27 @rebar ct skip_deps=true --verbose=0
This page took 0.045044 seconds and 4 git commands to generate.