This repository has been archived by the owner on Mar 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Makefile
89 lines (69 loc) · 2.31 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
DIRS = rel/ucengine/data/files
# Try to find yaws include dir for Debian/Ubuntu users
# If you have a custom yaws install, you can change it with for example:
# make rel ERL_LIBS=/usr/local/lib/yaws
ifeq ($(shell test -d /usr/lib/yaws && echo found),found)
ERL_LIBS:=/usr/lib/yaws
$(warning Found directory /usr/lib/yaws)
$(warning Using ERL_LIBS=${ERL_LIBS})
export ERL_LIBS
endif
all: compile
$(DIRS):
mkdir -p $(DIRS)
###############################################################################
# Build
###############################################################################
compile:
./rebar get-deps
./rebar compile
rel: compile
./rebar generate force=1
###############################################################################
# Usual targets
###############################################################################
dev: rel $(DIRS)
wwwroot: $(DIRS)
-@rm rel/ucengine/wwwroot/ -fr
-@cp -r wwwroot rel/ucengine/.
run: dev
rel/ucengine/bin/ucengine console
start: dev
rel/ucengine/bin/ucengine start
stop:
rel/ucengine/bin/ucengine stop
restart: dev
rel/ucengine/bin/ucengine restart
tests: dev
rel/ucengine/bin/ucengine-admin tests
./rebar skip_deps=true eunit
mnesia_tests: dev
sed -i 's/db, mongodb/db, mnesia/' rel/ucengine/etc/uce.cfg
rel/ucengine/bin/ucengine-admin tests
./rebar skip_deps=true eunit
mongodb_tests: dev
sed -i 's/db, mnesia/db, mongodb/' rel/ucengine/etc/uce.cfg
sed -i 's/database, "ucengine"}/database, "ucengine_test"},{index, 0}/' rel/ucengine/etc/uce.cfg
rel/ucengine/bin/ucengine-admin tests
./rebar skip_deps=true eunit
dialyze: compile
./rebar skip_deps=true check-plt
./rebar skip_deps=true dialyze
###############################################################################
# Benchmark
###############################################################################
populate:
./benchmarks/scenarii/$(SCENARIO).sh localhost
bench:
@mkdir -p benchmarks/ebin/
@erlc -o benchmarks/ebin/ benchmarks/tsung_utils.erl
@mkdir -p benchmarks/results
@./utils/benchmark $(SCENARIO) $(LEVEL)
@rm -rf benchmarks/ebin
###############################################################################
# Cleanup
###############################################################################
clean:
-@rm -v erl_crash.dump -f
./rebar clean
.PHONY: clean bench