chirpstack/api/grpc-web/Makefile

40 lines
1.2 KiB
Makefile
Raw Normal View History

2022-04-06 20:18:32 +00:00
.PHONY: common api google-api
PROTOC_PATH := ./node_modules/grpc-tools/bin/protoc
PROTOC_ARGS := -I=../proto --js_out=import_style=commonjs:. --grpc-web_out=import_style=commonjs+dts,mode=grpcwebtext:.
2022-04-06 20:18:32 +00:00
all: requirements common gw api integration google-api
requirements:
yarn install
2022-04-06 20:18:32 +00:00
common:
mkdir -p common
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/common/common.proto
2022-04-06 20:18:32 +00:00
gw:
mkdir -p gw
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/gw/gw.proto
2022-04-06 20:18:32 +00:00
api:
mkdir -p api
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/api/internal.proto
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/api/user.proto
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/api/tenant.proto
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/api/application.proto
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/api/device_profile.proto
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/api/device_profile_template.proto
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/api/device.proto
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/api/gateway.proto
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/api/multicast_group.proto
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/api/relay.proto
2022-04-06 20:18:32 +00:00
integration:
mkdir -p integration
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/integration/integration.proto
2022-04-06 20:18:32 +00:00
google-api:
$(PROTOC_PATH) $(PROTOC_ARGS) ../proto/google/api/*.proto