From 0f9f7d1d74729646ab33af95dc996bc3336792ff Mon Sep 17 00:00:00 2001 From: bunny winter Date: Tue, 11 Feb 2025 19:59:27 -0600 Subject: [PATCH] chore: verbose build --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bd65d3c..adb4a13 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +GOFLAGS = -v + BIN = bin BINS += $(BIN)/cherry @@ -18,4 +20,4 @@ $(BIN): mkdir -p $(BIN) $(BIN)/cherry: $(BIN) $(SRC) - go build -o $@ . + go build $(GOFLAGS) -o $@ .