Current section
Files
Jump to
Current section
Files
pact_erlang
Makefile
Makefile
REBAR?=rebar3
all: compile
compile:
@$(REBAR) compile
clean:
@$(REBAR) clean
@rm -rf doc
test:
@$(REBAR) ct -v -c
@$(REBAR) cover -v
dialyzer:
@$(REBAR) as dialyzer dialyzer
xref:
@$(REBAR) xref
check-format:
@echo "Checking format..."
@$(REBAR) format -v
format:
@$(REBAR) format
checks: xref dialyzer check-format
hex-build:
@$(REBAR) hex build
.PHONY: all compile clean test dialyzer xref checks format check-format