forked from sharp/omniauth_oauth2_wechat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
43 lines (31 loc) · 838 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
42
43
.PHONY: clean dialyzer_warnings xref_warnings deps test
REBAR=$(PWD)/rebar
RETEST=$(PWD)/deps/retest/retest
all: compile
run:
ERL_LIBS=apps:deps
erl +K true +A 4 -name [email protected] -pa ebin -pa deps/*/ebin -boot start_clean -s sharp_pusher -env mode development
compile:
./rebar get-deps
./rebar compile
clean:
./rebar clean
debug:
./rebar debug
check: debug xref dialyzer deps test
xref:
./rebar xref
dialyzer: dialyzer_warnings
@diff -U0 dialyzer_reference dialyzer_warnings
dialyzer_warnings:
-@dialyzer -q -n ebin -Wunmatched_returns -Werror_handling \
-Wrace_conditions > dialyzer_warnings
binary: VSN = $(shell ./rebar -V)
binary: clean all
@cp rebar ../rebar.wiki/rebar
(cd ../rebar.wiki && git commit -m "Update $(VSN)" rebar)
deps:
./rebar get-deps
test:
@$(REBAR) eunit
@$(RETEST) inttest