๐Ÿ“ฆ juise / sherly

๐Ÿ“„ Makefile ยท 37 lines
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.PHONY: all deps compile rel run clean

REBAR=$(shell which rebar || echo ./rebar)


all: $(REBAR) deps compile

deps:
		$(REBAR) get-deps

compile:
		$(REBAR) compile

rel: $(REBAR) deps compile
		$(REBAR) generate -f

run:
		erl +Bd -noinput -noshell -sname sherly -heart -config sys.config \
			-boot start_sasl -s crypto -s lager -run sherly

clean:
		$(REBAR) clean
		rm -rf ./rebar
		rm -rf ./ebin
		rm -rf ./rel/sherly
		rm -rf ./erl_crash.dump

# Get rebar if it doesn't exist

REBAR_URL=https://cloud.github.com/downloads/basho/rebar/rebar

./rebar:
	erl -noinput -noshell -s inets -s ssl \
		-eval '{ok, _} = httpc:request(get, {"${REBAR_URL}", []}, [], [{stream, "${REBAR}"}])' \
		-s init stop
	chmod +x ${REBAR}