forked from hpyhacking/openpoker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
41 lines (29 loc) · 802 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
REBAR = rebar
DIALYZER = dialyzer
DIALYZER_WARNINGS = -Wunmatched_returns -Werror_handling \
-Wrace_conditions -Wunderspecs
.PHONY: all compile test clean get-deps build-plt dialyze
all: compile
compile:
@$(REBAR) compile
test: compile
@$(REBAR) eunit skip_deps=true -v
qc: compile
@$(REBAR) qc skip_deps=true
clean:
@$(REBAR) clean
get-deps:
@$(REBAR) get-deps
build-plt:
@$(DIALYZER) --build_plt --output_plt .dialyzer_plt \
--apps kernel stdlib
dialyze: compile
@$(DIALYZER) --src src --plt .dialyzer_plt $(DIALYZER_WARNINGS) | \
fgrep -vf .dialyzer-ignore-warnings
generate:
./priv/generate_server_protocol.sh
./priv/generate_client_protocol.sh
console:
rm -rf rel/openpoker/Mnesia*
rebar compile generate
./rel/openpoker/bin/openpoker console