You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# See README.md in this dir for prerequisite setup.
|
|
|
|
|
|
|
|
PROTOC=protoc \
|
|
|
|
--plugin=/usr/local/bin/protoc-gen-objc \
|
|
|
|
--proto_path="${HOME}/src/signal/protobuf-objc/src/compiler/" \
|
|
|
|
--proto_path="${HOME}/src/signal/protobuf-objc/src/compiler/google/protobuf/" \
|
|
|
|
--proto_path='./'
|
|
|
|
|
|
|
|
all: signal_service_proto provisioning_protos fingerprint_protos
|
|
|
|
|
|
|
|
signal_service_proto: OWSSignalServiceProtos.proto
|
|
|
|
$(PROTOC) --objc_out=../src/Messages/ \
|
|
|
|
OWSSignalServiceProtos.proto
|
|
|
|
|
|
|
|
provisioning_protos: OWSProvisioningProtos.proto
|
|
|
|
$(PROTOC) --objc_out=../src/Devices/ \
|
|
|
|
OWSProvisioningProtos.proto
|
|
|
|
|
|
|
|
fingerprint_protos: OWSFingerprintProtos.proto
|
|
|
|
$(PROTOC) --objc_out=../src/Security/ \
|
|
|
|
OWSFingerprintProtos.proto
|
|
|
|
|