From 31da3360acff67719e5000d7a8efe4ae1e6fd535 Mon Sep 17 00:00:00 2001 From: Semyon Krestyaninov <krestyaninov@perx.ru> Date: Fri, 24 Nov 2023 12:24:09 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BC=D0=BE=D0=B4=D0=B8=D1=84=D0=B8=D1=86?= =?UTF-8?q?=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=20Makefile=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D0=B3=D0=B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D0=B8?= =?UTF-8?q?=20=D0=BB=D0=BE=D0=B3=D0=B3=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 12b9f083..c52dd2ad 100644 --- a/Makefile +++ b/Makefile @@ -10,12 +10,11 @@ PROTOFILES= $(filter-out $(PROTODIR)/status/status.proto, $(ALLPROTO)) PROTOGOFILES=$(PROTOFILES:.proto=.pb.go) PROTOGOGRPCFILES=$(PROTOFILES:.proto=_grpc.pb.go) -PKGDIR=pkg -ACCESSLOGGING=$(shell find $(PKGDIR) -name "logging_middleware.go" -type f) -ERRORLOGGING=$(shell find $(PKGDIR) -name "error_logging_middleware.go" -type f) -SERVICETELEMETRY=$(shell find $(PKGDIR) -name "telemetry_middleware.go" -type f) -SERVICEMIDDLEWARE=$(shell find $(PKGDIR) -name "middleware.go" -type f) -SERVICERECOVERING=$(shell find $(PKGDIR) -name "recovering_middleware.go" -type f) +ACCESSLOGGING=$(shell find -name "logging_middleware.go" -type f) +ERRORLOGGING=$(shell find -name "error_logging_middleware.go" -type f) +SERVICETELEMETRY=$(shell find -name "telemetry_middleware.go" -type f) +SERVICEMIDDLEWARE=$(shell find -name "middleware.go" -type f) +SERVICERECOVERING=$(shell find -name "recovering_middleware.go" -type f) # Генерация grpc-клиентов для go proto: protoc-check protoc-gen-go-check $(PROTOGOFILES) -- GitLab