blob: 8a924670a259f1a66ec0853feb019ec6c518009b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
all: podman podman-remote
BUILD_TAGS='ABISupport systemd varlink seccomp selinux exclude_graphdriver_devicemapper'
podman:
CGO_ENABLED=1 GO111MODULE=off go build -tags $(BUILD_TAGS)
podman-remote:
CGO_ENABLED=1 GO111MODULE=off go build -tags '!ABISupport systemd seccomp selinux' -o podmanV2-remote
clean:
rm podmanV2 podmanV2-remote
|