psql-migration/Makefile
2019-12-15 08:11:20 -04:00

15 lines
136 B
Makefile

.PHONY: compile
REBAR=./rebar3
compile:
$(REBAR) compile
typecheck:
$(REBAR) do dialyzer,xref
clean:
$(REBAR) clean
ci: compile