github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/event/query/Makefile (about)

     1  gen_query_parser:
     2  	@go get github.com/pointlander/peg
     3  	peg -inline -switch query.peg
     4  
     5  fuzzy_test:
     6  	@go get github.com/dvyukov/go-fuzz/go-fuzz
     7  	@go get github.com/dvyukov/go-fuzz/go-fuzz-build
     8  	go-fuzz-build github.com/tendermint/tendermint/libs/pubsub/query/fuzz_test
     9  	go-fuzz -bin=./fuzz_test-fuzz.zip -workdir=./fuzz_test/output
    10  
    11  .PHONY: gen_query_parser fuzzy_test