Files
pgm/Makefile

10 lines
229 B
Makefile

.PHONY: run bench-select test
run:
go run ./cmd -o ./playground/db ./playground/schema.sql
bench-select:
go test ./example -bench BenchmarkSelect -memprofile memprofile.out -cpuprofile profile.out
test:
go test ./playground