summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: b3563c2e54dd8d18953349428f62eda7a61ab28d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
GO = go
BATS = bats

all: luksy

luksy: cmd/luksy/*.go *.go
	$(GO) build -o luksy$(shell go env GOEXE) ./cmd/luksy

clean:
	$(RM) luksy$(shell go env GOEXE) luksy.test

test:
	$(GO) test -timeout 45m -v -cover
	$(BATS) ./tests