From 59974a4d29353de1e262d506666acb65bff01e6c Mon Sep 17 00:00:00 2001 From: Kharec Date: Wed, 26 Nov 2025 16:11:26 +0100 Subject: [PATCH] build: make all targets silent, test output will still appear anyway --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a3f055a..4663ed9 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ build: @$(GO) build -o $(BIN) ./cmd/aoc test: - $(GO) test ./... + @$(GO) test ./... clean: - rm -f $(BIN) + @rm -f $(BIN)