mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-24 20:52:22 +00:00
11 lines
132 B
Makefile
11 lines
132 B
Makefile
|
|
run:
|
|
@go build -o a.out && ./a.out
|
|
-@rm ./a.out
|
|
|
|
gen:
|
|
protoc -I . --go_out=plugins=grpc:. helloworld.proto
|
|
|
|
clean:
|
|
-rm *.pb.go
|