From 7df9ef049cda713d46bf91f57a0c49ebff860ed8 Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Fri, 19 Jul 2019 17:54:03 +0300 Subject: [PATCH] chore: repair 'make all' Target 'binaries' was referencing non-existent `Dockerfile` target, so any `make all` failed. Signed-off-by: Andrey Smirnov --- Makefile | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index f208ab125..eacbbe102 100644 --- a/Makefile +++ b/Makefile @@ -108,12 +108,7 @@ endif endif .PHONY: binaries -binaries: buildkitd - @$(BINDIR)/buildctl --addr $(BUILDKIT_HOST) \ - build \ - --output type=local,dest=build \ - --opt target=$@ \ - $(COMMON_ARGS) +binaries: osctl-linux osctl-darwin base: buildkitd @$(BINDIR)/buildctl --addr $(BUILDKIT_HOST) \ @@ -222,7 +217,7 @@ lint: buildkitd --opt target=$@ \ $(COMMON_ARGS) -.PHONY: osctl-linux-amd64 +.PHONY: osctl-linux osctl-linux: buildkitd @$(BINDIR)/buildctl --addr $(BUILDKIT_HOST) \ build \