From f74bc969ca1fe6e81bc949d711db1eeee96f1dbc Mon Sep 17 00:00:00 2001 From: James Shubin Date: Thu, 27 Feb 2025 17:01:37 -0500 Subject: [PATCH] make: Cleanup old targets --- Makefile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Makefile b/Makefile index e36d2df7..f938aeb0 100644 --- a/Makefile +++ b/Makefile @@ -191,13 +191,6 @@ path: ## create working paths deps: ## install system and golang dependencies ./misc/make-deps.sh -run: ## run mgmt - find . -maxdepth 1 -type f -name '*.go' -not -name '*_test.go' | xargs go run -ldflags "-X main.program=$(PROGRAM) -X main.version=$(SVERSION)" - -# include race flag -race: - find . -maxdepth 1 -type f -name '*.go' -not -name '*_test.go' | xargs go run -race -ldflags "-X main.program=$(PROGRAM) -X main.version=$(SVERSION)" - generate: go generate