Files
prometheus-android-exporter/client/Makefile
Martin Ptáček 7988660eb4 protobuf compiles
2023-06-04 10:03:06 +02:00

15 lines
489 B
Makefile

# Makefile for protobuf generation for "remote write" prometheus protocol
#
# Input: 'proto' folder
# Output: 'protogen' package
.PHONY: protobuf
SRC_DIR_PROTO=app/src/main/java/com/birdthedeveloper/prometheus/android/prometheus/android/exporter/proto
DST_DIR_PROTO=app/src/main/java/com/birdthedeveloper/prometheus/android/prometheus/android/exporter/
protobuf:
mkdir -p $(DST_DIR_PROTO)
protoc -I=$(SRC_DIR_PROTO) --kotlin_out=$(DST_DIR_PROTO) $(SRC_DIR_PROTO)/remote_write.proto