spiegel_podman/vendor/github.com/containers/luksy/Makefile
Aditya R 64ff149324
vendor: bump buildah to v1.32.1-0.20231012130144-244170240d85
Signed-off-by: Aditya R <arajan@redhat.com>
2023-10-16 11:55:53 +05:30

14 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