mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-07-16 09:38:49 +02:00
16 lines
352 B
Makefile
16 lines
352 B
Makefile
run-data-manager:
|
|
@go run data-manager/main.go serve
|
|
|
|
run-ical:
|
|
@go run ical/main.go
|
|
|
|
build-ical:
|
|
@go build ical/main.go
|
|
|
|
gen:
|
|
@protoc \
|
|
--proto_path=protobuf "protobuf/modules.proto" \
|
|
--go_out="common/genproto/modules" \
|
|
--go_opt=paths=source_relative \
|
|
--go-grpc_out="common/genproto/modules" \
|
|
--go-grpc_opt=paths=source_relative
|