From 3cfc2a685409e59f0a0f028fdf4d9d7691334140 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Sat, 1 Feb 2025 18:52:26 -0500 Subject: [PATCH] Updated Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8b6fed2..252549f 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,6 @@ vet: fmt buildLib: vet go build -gcflags="-N -l" ./... buildCmd: buildLib - go build -gcflags="-N -l" -C cmd/ -o re ./... + go build -C cmd/ -gcflags="-N -l" -o re ./... test: buildCmd go test -v ./...