From 4d40ff6475c69b7b558fa8ba48b046336fb30632 Mon Sep 17 00:00:00 2001 From: Oleg Kovalov Date: Tue, 19 Apr 2022 10:33:37 +0200 Subject: [PATCH] Update jwt makefile --- jwt/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/jwt/Makefile b/jwt/Makefile index b2c56b7..c1aef4d 100644 --- a/jwt/Makefile +++ b/jwt/Makefile @@ -1,3 +1,7 @@ -run: +build: go test -c -o jwt-bench.exec + +bench: time ./jwt-bench.exec -test.v -test.benchmem -test.bench ^Benchmark -test.count 5 -test.run ^$ > bench.txt + +run: build bench