fork_serde_bare/Makefile
2020-07-17 15:32:44 -06:00

12 lines
222 B
Makefile

# Provided so users not familiar with Go don't need to know the go bench invocation
.PHONY: bench go-bench bench-all
bench:
cargo bench
go-bench:
cd benches/go-reference && go test -bench=.
bench-all: bench go-bench