forked from saleyn/erlexec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
78 lines (62 loc) · 1.91 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
# 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 github-docs dialyzer
all:
@$(REBAR) compile
clean:
@$(REBAR) $@
path:
@echo $(shell $(REBAR) $@)
docs: doc ebin clean-docs
@$(REBAR) edoc skip_deps=true
doc ebin:
mkdir -p $@
test:
@$(REBAR) eunit
publish:
$(REBAR) hex cut
clean-docs:
rm -f doc/*.{css,html,png} doc/edoc-info
github-docs:
@if git branch | grep -q gh-pages ; then \
git checkout gh-pages; \
else \
git checkout -b gh-pages; \
fi
rm -f rebar.lock
git checkout master -- src include
git checkout master -- Makefile rebar.*
make docs
mv doc/*.* .
make clean
rm -fr src c_src include Makefile erl_crash.dump priv rebar.* README*
@FILES=`git st -uall --porcelain | sed -n '/^?? [A-Za-z0-9]/{s/?? //p}'`; \
for f in $$FILES ; do \
echo "Adding $$f"; git add $$f; \
done
@sh -c "ret=0; set +e; \
if git commit -a --amend -m 'Documentation updated'; \
then git push origin +gh-pages; echo 'Pushed gh-pages to origin'; \
else ret=1; git reset --hard; \
fi; \
set -e; git checkout master && echo 'Switched to master'; exit $$ret"
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 $@