aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRastislav Szabo <raszabo@cisco.com>2017-07-07 12:36:17 +0200
committerRastislav Szabo <raszabo@cisco.com>2017-07-11 15:42:39 +0200
commit982b8703a757e5a91aa6451fd26593a065f8a452 (patch)
treed4f43a227ef789a04aa8bad9efa9ed71a417e646 /Makefile
parent2d07847237e754d9050f06f565baa430c70ed937 (diff)
added performance benchmark example
Change-Id: Ia0fea0569be3da7fadac9ef32d5f12c0b6de0089 Signed-off-by: Rastislav Szabo <raszabo@cisco.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 44a203b..93cd052 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,7 @@ build:
@cd cmd/binapi-generator && go build -v
@cd examples/cmd/simple-client && go build -v
@cd examples/cmd/stats-client && go build -v
+ @cd examples/cmd/perf-bench && go build -v
test:
@cd cmd/binapi-generator && go test -cover .
@@ -15,6 +16,7 @@ clean:
@rm -f cmd/binapi-generator/binapi-generator
@rm -f examples/cmd/simple-client/simple-client
@rm -f examples/cmd/stats-client/stats-client
+ @rm -f examples/cmd/perf-bench/perf-bench
generate:
@cd core && go generate ./...