Current section

Files

Jump to
em Makefile
Raw

Makefile

REBAR="./rebar3"
SHELL = /bin/sh
.DEFAULT_GOAL := compile
.PHONY: publish test dialyzer compile clean
publish: clean compile dialyzer test
$(REBAR) hex publish
$(REBAR) hex docs
test: compile
$(REBAR) eunit
dialyzer: compile
$(REBAR) dialyzer
compile:
$(REBAR) compile
clean:
$(REBAR) clean
rm -f doc/*.html
rm -f doc/*.css
rm -f doc/*.png
rm -f TEST-*.xml