mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-09 09:07:54 +00:00
Also includes a small change to make us of https://github.com/containers/buildah/pull/5039 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
14 lines
162 B
Makefile
14 lines
162 B
Makefile
GO = go
|
|
BATS = bats
|
|
|
|
all: luksy
|
|
|
|
luksy: cmd/luksy/*.go *.go
|
|
$(GO) build -o luksy ./cmd/luksy
|
|
|
|
clean:
|
|
$(RM) luksy luksy.test
|
|
|
|
test:
|
|
$(GO) test
|
|
$(BATS) ./tests
|