Files
podman/vendor/github.com/containers/luksy/Makefile
2023-10-16 11:55:53 +05:30

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