aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 02196c091e10c5dafa2a36145aef88060e08af6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
EX_SOURCES:=$(shell find lib -name '*.ex')

deps: mix.exs
	mix deps.get

.PHONY: build
build: $(EX_SOURCES) deps
	mix compile

exgit: build
	mix escript.build

.PHONY: credo
credo: deps
	mix credo --strict

.PHONY: test
test:
	mix test --cover