From 2c532000ba39013ffe1acf9eaefb83560442b04e Mon Sep 17 00:00:00 2001 From: nyagamunene Date: Mon, 13 Jan 2025 16:45:48 +0300 Subject: [PATCH] update makefile Signed-off-by: nyagamunene --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 9b222b2..cacfdd5 100644 --- a/Makefile +++ b/Makefile @@ -11,9 +11,9 @@ SERVICES = manager proplet cli proxy define compile_service CGO_ENABLED=$(CGO_ENABLED) GOOS=$(GOOS) GOARCH=$(GOARCH) \ go build -ldflags "-s -w \ - -X 'github.com/absmach/magistrala.BuildTime=$(TIME)' \ - -X 'github.com/absmach/magistrala.Version=$(VERSION)' \ - -X 'github.com/absmach/magistrala.Commit=$(COMMIT)'" \ + -X 'github.com/absmach/supermq.BuildTime=$(TIME)' \ + -X 'github.com/absmach/supermq.Version=$(VERSION)' \ + -X 'github.com/absmach/supermq.Commit=$(COMMIT)'" \ -o ${BUILD_DIR}/$(1) cmd/$(1)/main.go endef @@ -34,10 +34,10 @@ clean: lint: golangci-lint run --config .golangci.yaml -start-magistrala: +start-supermq: docker compose -f docker/compose.yaml up -d -stop-magistrala: +stop-supermq: docker compose -f docker/compose.yaml down $(EXAMPLES): @@ -52,6 +52,6 @@ help: @echo " all: build the binary" @echo " clean: clean the build directory" @echo " lint: run golangci-lint" - @echo " start-magistrala: start the magistrala docker compose" - @echo " stop-magistrala: stop the magistrala docker compose" + @echo " start-supermq: start the supermq docker compose" + @echo " stop-supermq: stop the supermq docker compose" @echo " help: display this help message"