mirror of
https://github.com/apple/container.git
synced 2026-09-09 01:05:40 +00:00
+6








3407cc3f16
Co-authored-by: Aditya Ramani <a_ramani@apple.com> Co-authored-by: Agam Dua <agam_dua@apple.com> Co-authored-by: Danny Canter <danny_canter@apple.com> Co-authored-by: Dmitry Kovba <dkovba@apple.com> Co-authored-by: Eric Ernst <eric_ernst@apple.com> Co-authored-by: Evan Hazlett <ehazlett@apple.com> Co-authored-by: Gilbert Song <gilbertsong@apple.com> Co-authored-by: Hugh Bussell <hbussell@apple.com> Co-authored-by: John Logan <john_logan@apple.com> Co-authored-by: Kathryn Baldauf <k_baldauf@apple.com> Co-authored-by: Madhu Venugopal <mvenugopal@apple.com> Co-authored-by: Michael Crosby <michael_crosby@apple.com> Co-authored-by: Sidhartha Mani <sidhartha_mani@apple.com> Co-authored-by: Tanweer Noor <tnoor@apple.com> Co-authored-by: Ximena Perez Diaz <xperez528@gmail.com> Co-authored-by: Yibo Zhuang <yzhuang@apple.com>
38 lines
1.3 KiB
Makefile
38 lines
1.3 KiB
Makefile
LOCAL_DIR := $(ROOT_DIR)/.local
|
|
LOCALBIN := $(LOCAL_DIR)/bin
|
|
|
|
## Versions
|
|
PROTOC_VERSION=26.1
|
|
|
|
# protoc binary installation
|
|
PROTOC_ZIP = protoc-$(PROTOC_VERSION)-osx-universal_binary.zip
|
|
PROTOC = $(LOCALBIN)/protoc@$(PROTOC_VERSION)/protoc
|
|
$(PROTOC):
|
|
@echo Downloading protocol buffers...
|
|
@mkdir -p $(LOCAL_DIR)
|
|
@curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v$(PROTOC_VERSION)/$(PROTOC_ZIP)
|
|
@mkdir -p $(dir $@)
|
|
@unzip -jo $(PROTOC_ZIP) bin/protoc -d $(dir $@)
|
|
@unzip -o $(PROTOC_ZIP) 'include/*' -d $(dir $@)
|
|
@rm -f $(PROTOC_ZIP)
|
|
|
|
protoc_gen_grpc_swift:
|
|
swift build --product protoc-gen-grpc-swift
|
|
|
|
protoc-gen-swift:
|
|
swift build --product protoc-gen-swift
|
|
|
|
.PHONY: protos
|
|
protos: $(PROTOC) protoc_gen_grpc_swift protoc-gen-swift
|
|
@echo Generating protocol buffers source code...
|
|
@$(PROTOC) Sources/Containerization/SandboxContext/SandboxContext.proto \
|
|
--plugin=protoc-gen-grpc-swift=$(BUILD_BIN_DIR)/protoc-gen-grpc-swift \
|
|
--plugin=protoc-gen-swift=$(BUILD_BIN_DIR)/protoc-gen-swift \
|
|
--proto_path=Sources/Containerization/SandboxContext \
|
|
--grpc-swift_out="Sources/Containerization/SandboxContext" \
|
|
--grpc-swift_opt=Visibility=Public \
|
|
--swift_out="Sources/Containerization/SandboxContext" \
|
|
--swift_opt=Visibility=Public \
|
|
-I.
|
|
@"$(MAKE)" update-licenses
|