summaryrefslogtreecommitdiff
path: root/vendor/github.com/seccomp/containers-golang/Makefile
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2020-09-11 13:34:59 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2020-09-11 13:37:37 -0400
commit08cc87636e456a084f6c4e70fe183bbec956b561 (patch)
tree011f74eca8389c5f5bf4c5344a86e8eb810b0628 /vendor/github.com/seccomp/containers-golang/Makefile
parent4f040070b6e9e2213b1fb6daa1502353c90e172d (diff)
downloadpodman-08cc87636e456a084f6c4e70fe183bbec956b561.tar.gz
podman-08cc87636e456a084f6c4e70fe183bbec956b561.tar.bz2
podman-08cc87636e456a084f6c4e70fe183bbec956b561.zip
Vendor in containers/buildah 1.16.1
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'vendor/github.com/seccomp/containers-golang/Makefile')
-rw-r--r--vendor/github.com/seccomp/containers-golang/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/vendor/github.com/seccomp/containers-golang/Makefile b/vendor/github.com/seccomp/containers-golang/Makefile
deleted file mode 100644
index 2d91917f9..000000000
--- a/vendor/github.com/seccomp/containers-golang/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-export GO111MODULE=off
-
-TAGS ?= seccomp
-BUILDFLAGS := -tags "$(AUTOTAGS) $(TAGS)"
-GO := go
-PACKAGE := github.com/seccomp/containers-golang
-
-sources := $(wildcard *.go)
-
-.PHONY: seccomp.json
-seccomp.json: $(sources)
- $(GO) build -compiler gc $(BUILDFLAGS) ./cmd/generate.go
- $(GO) build -compiler gc ./cmd/generate.go
- $(GO) run ${BUILDFLAGS} cmd/generate.go
-
-all: seccomp.json
-
-.PHONY: test-unit
-test-unit:
- $(GO) test -v $(BUILDFLAGS) $(shell $(GO) list ./... | grep -v ^$(PACKAGE)/vendor)
- $(GO) test -v $(shell $(GO) list ./... | grep -v ^$(PACKAGE)/vendor)
-
-.PHONY: vendor
-vendor:
- export GO111MODULE=on \
- $(GO) mod tidy && \
- $(GO) mod vendor && \
- $(GO) mod verify
-
-.PHONY: clean
-clean:
- rm -f generate