podman-build/vendor/github.com/containers/luksy/Makefile
2025-10-11 12:30:35 +09:00

15 lines
227 B
Makefile

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