Current section
Files
Jump to
Current section
Files
pact_erlang
Makefile
Makefile
REBAR?=rebar3
all: compile
compile:
@$(REBAR) compile
clean:
@$(REBAR) clean
test:
@$(REBAR) eunit
dialyzer:
@$(REBAR) as dialyzer dialyzer
hex-build:
@$(REBAR) hex build
.PHONY: all compile clean test dialyzer