-
Notifications
You must be signed in to change notification settings - Fork 25
/
Makefile
57 lines (41 loc) · 931 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.PHONY: compile rel cover test typecheck doc
REBAR=./rebar3
SHORTSHA=`git rev-parse --short HEAD`
PKG_NAME_VER=${SHORTSHA}
OS_NAME=$(shell uname -s)
GRPC_SERVICES_DIR=src/grpc/autogen
ifeq (${OS_NAME},FreeBSD)
make="gmake"
else
MAKE="make"
endif
compile:
$(REBAR) get-deps
$(MAKE) grpc
$(REBAR) compile
shell:
$(REBAR) shell
clean:
$(MAKE) clean_grpc
$(REBAR) clean
cover:
$(REBAR) cover
test:
$(REBAR) as test do eunit,ct
typecheck:
$(REBAR) dialyzer
release:
$(REBAR) as prod release -n gateway_config
devrelease:
$(REBAR) as dev release
grpc: | $(GRPC_SERVICE_DIR)
@echo "generating gateway_config grpc services"
REBAR_CONFIG="config/grpc_client_gen_local.config" $(REBAR) grpc gen
$(GRPC_SERVICE_DIR):
@echo "gateway_config service directory $(directory) does not exist"
$(REBAR) get-deps
clean_grpc:
@echo "cleaning gateway_config grpc services"
rm -rf $(GRPC_SERVICE_DIR)
doc:
$(REBAR) edoc