From 041fdff2a897ca2aef6a904c88e7011599d38cde Mon Sep 17 00:00:00 2001 From: George Date: Sun, 9 Feb 2020 04:27:16 -0500 Subject: [PATCH] Don't build meshname util by default --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 68c880c..2cd568a 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,8 @@ FLAGS := -ldflags "-s -w" all: GOARCH=$$GOARCH GOOS=$$GOOS go build $(FLAGS) ./cmd/meshnamed - GOARCH=$$GOARCH GOOS=$$GOOS go build $(FLAGS) ./cmd/meshname clean: - $(RM) meshnamed meshname meshnamed.exe meshname.exe + $(RM) meshnamed meshnamed.exe .PHONY: all clean