summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-12 03:13:19 +0100
committerGitHub <noreply@github.com>2019-02-12 03:13:19 +0100
commit89237033fd38d91308ff7e5b9511aff41f44e0e8 (patch)
tree188ddbf1f914a3e3040c7fede6e27a5ab17af31a /Makefile
parentea20ead35b69b1259f2ff3b00f558c473a921b95 (diff)
parenta1ab6788e4df5cf270e99befdd69026e5d7fcd3a (diff)
downloadpodman-89237033fd38d91308ff7e5b9511aff41f44e0e8.tar.gz
podman-89237033fd38d91308ff7e5b9511aff41f44e0e8.tar.bz2
podman-89237033fd38d91308ff7e5b9511aff41f44e0e8.zip
Merge pull request #2300 from baude/cleanupurfave
Remove urfave/cli from libpod
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 1 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 08dd586be..dfbe47171 100644
--- a/Makefile
+++ b/Makefile
@@ -105,11 +105,6 @@ gofmt: ## Verify the source code gofmt
find . -name '*.go' ! -path './vendor/*' -exec gofmt -s -w {} \+
git diff --exit-code
-test/bin2img/bin2img: .gopathok $(wildcard test/bin2img/*.go)
- $(GO) build -ldflags '$(LDFLAGS)' -tags "$(BUILDTAGS) containers_image_ostree_stub" -o $@ $(PROJECT)/test/bin2img
-
-test/copyimg/copyimg: .gopathok $(wildcard test/copyimg/*.go)
- $(GO) build -ldflags '$(LDFLAGS)' -tags "$(BUILDTAGS) containers_image_ostree_stub" -o $@ $(PROJECT)/test/copyimg
test/checkseccomp/checkseccomp: .gopathok $(wildcard test/checkseccomp/*.go)
$(GO) build -ldflags '$(LDFLAGS)' -tags "$(BUILDTAGS) containers_image_ostree_stub" -o $@ $(PROJECT)/test/checkseccomp
@@ -140,9 +135,7 @@ clean: ## Clean artifacts
_output \
bin \
build \
- test/bin2img/bin2img \
test/checkseccomp/checkseccomp \
- test/copyimg/copyimg \
test/goecho/goecho \
test/testdata/redis-image \
cmd/podman/varlink/iopodman.go \
@@ -210,7 +203,7 @@ binaries: varlink_generate podman podman-remote ## Build podman
install.catatonit:
./hack/install_catatonit.sh
-test-binaries: test/bin2img/bin2img test/copyimg/copyimg test/checkseccomp/checkseccomp test/goecho/goecho install.catatonit
+test-binaries: test/checkseccomp/checkseccomp test/goecho/goecho install.catatonit
MANPAGES_MD ?= $(wildcard docs/*.md pkg/*/docs/*.md)
MANPAGES ?= $(MANPAGES_MD:%.md=%)