summaryrefslogtreecommitdiff
path: root/vendor/github.com/checkpoint-restore/go-criu/Makefile
diff options
context:
space:
mode:
authorAdrian Reber <areber@redhat.com>2021-07-08 15:31:51 +0000
committerAdrian Reber <adrian@lisas.de>2021-07-27 16:10:44 +0200
commit3375cbb198c74e895624eada148edff514b64d35 (patch)
tree4aa8679fddfe9221ab1560c3d06a9a0ce72efdb0 /vendor/github.com/checkpoint-restore/go-criu/Makefile
parent92dce3e2febc752434c08574cbb394545c7fef47 (diff)
downloadpodman-3375cbb198c74e895624eada148edff514b64d35.tar.gz
podman-3375cbb198c74e895624eada148edff514b64d35.tar.bz2
podman-3375cbb198c74e895624eada148edff514b64d35.zip
Vendor in go-criu v5.1.0 for Pod checkpoint/restore support
Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to 'vendor/github.com/checkpoint-restore/go-criu/Makefile')
-rw-r--r--vendor/github.com/checkpoint-restore/go-criu/Makefile60
1 files changed, 0 insertions, 60 deletions
diff --git a/vendor/github.com/checkpoint-restore/go-criu/Makefile b/vendor/github.com/checkpoint-restore/go-criu/Makefile
deleted file mode 100644
index ee44ee448..000000000
--- a/vendor/github.com/checkpoint-restore/go-criu/Makefile
+++ /dev/null
@@ -1,60 +0,0 @@
-GO ?= go
-CC ?= gcc
-ifeq ($(GOPATH),)
-export GOPATH := $(shell $(GO) env GOPATH)
-endif
-FIRST_GOPATH := $(firstword $(subst :, ,$(GOPATH)))
-GOBIN := $(shell $(GO) env GOBIN)
-ifeq ($(GOBIN),)
- GOBIN := $(FIRST_GOPATH)/bin
-endif
-
-all: build test phaul phaul-test
-
-lint:
- @golint . test phaul
-build:
- @$(GO) build -v
-
-test/piggie: test/piggie.c
- @$(CC) $^ -o $@
-
-test/test: test/main.go
- @$(GO) build -v -o test/test test/main.go
-
-test: test/test test/piggie
- mkdir -p image
- test/piggie
- test/test dump `pidof piggie` image
- test/test restore image
- pkill -9 piggie || :
-
-phaul:
- @cd phaul; go build -v
-
-test/phaul: test/phaul-main.go
- @$(GO) build -v -o test/phaul test/phaul-main.go
-
-phaul-test: test/phaul test/piggie
- rm -rf image
- test/piggie
- test/phaul `pidof piggie`
- pkill -9 piggie || :
-
-clean:
- @rm -f test/test test/piggie test/phaul
- @rm -rf image
- @rm -f rpc/rpc.proto
-
-install.tools:
- if [ ! -x "$(GOBIN)/golint" ]; then \
- $(GO) get -u golang.org/x/lint/golint; \
- fi
-
-rpc/rpc.proto:
- curl -s https://raw.githubusercontent.com/checkpoint-restore/criu/master/images/rpc.proto -o $@
-
-rpc/rpc.pb.go: rpc/rpc.proto
- protoc --go_out=. $^
-
-.PHONY: build test clean lint phaul