From b6d8e7a982080907e18c32ee93ef2e89d8bd0fdb Mon Sep 17 00:00:00 2001 From: mgrl39 <170405410+mgrl39@users.noreply.github.com> Date: Sat, 5 Apr 2025 19:45:49 +0200 Subject: [PATCH] Add .PHONY declaration to Makefile Avoid potential conflicts with files/directories of the same name. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 03ad8d9a..7024d2d2 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,8 @@ GO_VER := 1.22.3 LIBC_GO_VER := $(GO_VER)-bullseye MUSL_GO_VER := $(GO_VER)-alpine +.PHONY: all fmt test build build-libc build-musl build-docker-image vendor-update clean + all: fmt test build fmt: