Set-up testing skeleton.
[hope.git] / Makefile
1 .PHONY: \
2 fresh-build \
3 compile \
4 clean \
5 dialyze \
6 test
7
8 fresh-build: \
9 clean \
10 compile
11
12 compile:
13 @rebar compile
14
15 clean:
16 @rebar clean
17
18 dialyze:
19 @dialyzer ebin
20
21 test:
22 @rebar ct skip_deps=true --verbose=0
This page took 0.057069 seconds and 5 git commands to generate.