mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-22 02:47:26 +08:00
12 lines
184 B
Makefile
12 lines
184 B
Makefile
PB = $(wildcard *.proto)
|
|
GO = $(PB:.proto=.pb.go)
|
|
PWD = $(pwd)
|
|
|
|
all: $(GO)
|
|
|
|
%.pb.go: %.proto
|
|
protoc -I=. --go_out=paths=source_relative:. *.proto
|
|
|
|
clean:
|
|
rm -f *.pb.go
|
|
rm -f *.go
|