This repository has been archived on 2026-06-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Firefly_Launcher/Makefile
T
2025-08-25 18:12:13 +07:00

7 lines
170 B
Makefile

PROTO_SRC=./proto
GEN_DEST=./pkg
build_proto:
@echo Compiling Protobuf files...
protoc --go_out=${GEN_DEST} --go-grpc_out=${GEN_DEST} ${PROTO_SRC}/*.proto
@echo Done!