18 lines
206 B
Makefile
18 lines
206 B
Makefile
REBAR = $(shell pwd)/rebar3
|
|
|
|
all: compile
|
|
|
|
compile:
|
|
$(REBAR) compile
|
|
|
|
test: compile
|
|
$(REBAR) eunit
|
|
|
|
run:
|
|
$(REBAR) shell
|
|
|
|
publish:
|
|
$(REBAR) as pkg upgrade
|
|
$(REBAR) as pkg hex publish
|
|
$(REBAR) upgrade
|
|
|