Skip to content
Snippets Groups Projects
Select Git revision
  • 81b9607c49c5703bef5fd44b54cdf4b2e8cce286
  • main default protected
2 results

Makefile

Blame
  • Makefile 192 B
    PB = $(wildcard *.proto)
    GO = $(PB:.proto=.pb.go)
    
    all: $(GO)
    
    %.pb.go: %.proto
    		protoc --gogo_out=. --proto_path=../../../../../../:/usr/local/opt/protobuf/include:. $<
    
    clean:
    		rm *.pb.go