From b7bf95ebfbc98c3d31adb51385cb06ebba848f14 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 23 May 2023 17:41:39 -0700 Subject: [PATCH] Makefile: fix phony targets Quite a few were missing, one (lint) was out of (alphabetic) order. Signed-off-by: Kir Kolyshkin --- Makefile | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3b071e386..b0f21d683 100644 --- a/Makefile +++ b/Makefile @@ -3,11 +3,19 @@ export GOPROXY=https://proxy.golang.org .PHONY: \ all \ + binary \ clean \ + codespell \ + containers-storage \ + cross \ default \ docs \ + gccgo \ help \ + install \ + install.docs \ install.tools \ + lint \ local-binary \ local-cross \ local-gccgo \ @@ -15,8 +23,11 @@ export GOPROXY=https://proxy.golang.org local-test-integration \ local-test-unit \ local-validate \ - lint \ - vendor + test-integration \ + test-unit \ + validate \ + vendor \ + vendor-in-container PACKAGE := github.com/containers/storage GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)