psql-migration/Makefile

15 lines
139 B
Makefile
Raw Normal View History

2019-12-15 11:14:42 +00:00
.PHONY: compile
REBAR=./rebar3
compile:
$(REBAR) escriptize
typecheck:
$(REBAR) do dialyzer,xref
clean:
$(REBAR) clean
2019-12-15 11:34:28 +00:00
ci: compile