Files
Firefly_Launcher/Makefile
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!