From 1ebe188cdcb7be981240c47fba0d995050451c6f Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Sat, 16 Oct 2021 15:28:30 +0300 Subject: [PATCH] [#926] Makefile: declare `images` target as phony Signed-off-by: Evgenii Stratonikov --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7aa5aef5..83dcbcd3 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ DIRS = $(BIN) $(RELEASE) CMDS = $(notdir $(basename $(wildcard cmd/*))) BINS = $(addprefix $(BIN)/, $(CMDS)) -.PHONY: help all dep clean fmts fmt imports test lint docker/lint prepare-release +.PHONY: help all images dep clean fmts fmt imports test lint docker/lint prepare-release # To build a specific binary, use it's name prefix with bin/ as a target # For example `make bin/neofs-node` will build only storage node binary