File: Makefile

package info (click to toggle)
golang-github-containers-luksy 0.0~git20240812.2e7307c%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 248 kB
  • sloc: makefile: 14
file content (14 lines) | stat: -rw-r--r-- 227 bytes parent folder | download
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