-
-
Notifications
You must be signed in to change notification settings - Fork 142
/
Makefile
63 lines (47 loc) · 1.41 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
# See LICENSE for licensing information.
VSN = $(shell git describe --always --tags --abbrev=0 | sed 's/^v//')
PROJECT = $(notdir $(PWD))
TARBALL = $(PROJECT)-$(VSN)
DIALYZER = dialyzer
REBAR := $(shell which rebar3 2>/dev/null)
REBAR := $(if $(REBAR),$(REBAR),$(shell which rebar 2>/dev/null))
ifeq (,$(REBAR))
$(error rebar and rebar3 not found!)
endif
.PHONY : all clean test docs doc clean-docs dialyzer
all:
@$(REBAR) compile
clean:
@$(REBAR) $@
@rm -rf ebin erl_crash.dump _build
path:
@echo $(shell $(REBAR) $@)
doc:
mkdir -p $@
$(REBAR) ex_doc
test:
@$(REBAR) eunit
info:
@$(MAKE) -C c_src $@
test-debug:
@OPTIMIZE=0 $(REBAR) eunit
publish: docs clean
$(REBAR) hex $(if $(replace),publish --replace,cut)
deprecate:
@if [ -z $(vsn) ]; then \
echo "Usage: $(MAKE) $@ vsn=X.Y.Z - Deprecate version X.Y.Z"; \
exit 1; \
fi
$(REBAR) hex retire erlexec $(vsn) deprecated --message Deprecated
tar:
@rm -f $(TARBALL).tgz; \
cd ..; \
tar zcf $(TARBALL).tgz --exclude="core*" --exclude="erl_crash.dump" \
--exclude="*.tgz" --exclude="*.swp" --exclude="c_src" \
--exclude="Makefile" --exclude="rebar.*" --exclude="*.mk" \
--exclude="*.o" --exclude="_build" --exclude=".git*" $(PROJECT) && \
mv $(TARBALL).tgz $(PROJECT)/ && echo "Created $(TARBALL).tgz"
dialyzer: build.plt
$(DIALYZER) -nn --plt $< ebin
build.plt:
$(DIALYZER) -q --build_plt --apps erts kernel stdlib --output_plt $@