Skip to content

Commit

Permalink
fix: typos in makefile
Browse files Browse the repository at this point in the history
Signed-off-by: Arvindh <arvindh91@gmail.com>
  • Loading branch information
arvindh123 authored and dborovcanin committed Jul 13, 2023
1 parent 4b296ff commit 277ff34
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ ifneq ($(filter run_addons%,$(firstword $(MAKECMDGOALS))),)
$(eval $(RUN_ADDON_ARGS):;@)
endif

FILTERED_SERVICE = $(filter-out $(RUN_ADDON_ARGS), $(SERVICES))
FILTERED_SERVICES = $(filter-out $(RUN_ADDON_ARGS), $(SERVICES))

all: $(SERVICE)
all: $(SERVICES)

.PHONY: all $(SERVICE) dockers dockers_dev latest release gen_mtls_certs run run_grpc_mtls run_addons run_addons_grpc_mtls
.PHONY: all $(SERVICES) dockers dockers_dev latest release gen_mtls_certs run run_grpc_mtls run_addons run_addons_grpc_mtls

clean:
rm -rf ${BUILD_DIR}
Expand All @@ -108,7 +108,7 @@ proto:
protoc -I. --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative users/policies/*.proto
protoc -I. --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative things/policies/*.proto

$(FILTERED_SERVICE):
$(FILTERED_SERVICES):
$(call compile_service,$(@))

$(DOCKERS):
Expand Down

0 comments on commit 277ff34

Please sign in to comment.