From 51f2bcb6ef8d48957bae385d01d2bdc0196b0b50 Mon Sep 17 00:00:00 2001 From: gearnode Date: Fri, 14 Mar 2025 10:00:18 +0100 Subject: [PATCH] Remove unused make target Signed-off-by: gearnode --- GNUmakefile | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index bd6d3ac5c..62f6540d3 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -16,8 +16,6 @@ GCFLAGS= -gcflags="-e" GO_BUILD= CGO_ENABLED=$(CGO_ENABLED) GOOS=$(GOOS) $(GO) build $(LDFLAGS) $(GCFLAGS) GO_GENERATE= $(GO) generate -CONTROL_SRC:= $(shell find ./controls -type f -name "*.md") - DOCKER_IMAGE_NAME= ghcr.io/getprobo/probo DOCKER_TAG_NAME?= latest @@ -57,20 +55,12 @@ pkg/server/api/console/v1/v1_resolver.go: pkg/server/api/console/v1/gqlgen.yaml $(GO_GENERATE) ./pkg/server/api/console/v1 .PHONY: fmt -fmt: fmt-markdown fmt-go +fmt: fmt-go .PHONY: fmt-go fmt-go: go fmt ./... -.PHONY: fmt-markdown -fmt-markdown: - $(PRETTIER) --write --prose-wrap always $(CONTROL_SRC) - -.PHONY: fmt-check -fmt-check: - $(PRETTIER) --check --prose-wrap always $(CONTROL_SRC) - .PHONY: clean clean: $(RM) -rf bin/*