From 746bd5b013e3c2cb2b5be7af8a19678ad950626d Mon Sep 17 00:00:00 2001 From: nightnoryu Date: Mon, 29 Jul 2024 00:13:38 +0300 Subject: [PATCH] Simplify Makefile --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 3567d9e..b7f9060 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,9 @@ all: build +.PHONY: build build: modules CGO_ENABLED=0 go build -o ./bin/anon3anon ./cmd/anon3anon +.PHONY: modules modules: go mod tidy - -test: - go test ./..