mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-24 12:32:21 +00:00
15 lines
232 B
Makefile
15 lines
232 B
Makefile
|
|
run:
|
|
@go build -o a.out && ./a.out
|
|
-@rm ./a.out
|
|
|
|
aa:
|
|
cd ../../.. && pwd
|
|
|
|
gen:
|
|
protoc -I=. -I=../../.. --go_out=plugins=grpc:. helloworld.proto
|
|
protoc -I=. -I=../../.. --govalidators_out=. helloworld.proto
|
|
|
|
clean:
|
|
-rm *.pb.go
|