diff options
author | Rastislav Szabo <raszabo@cisco.com> | 2017-07-07 12:36:17 +0200 |
---|---|---|
committer | Rastislav Szabo <raszabo@cisco.com> | 2017-07-11 15:42:39 +0200 |
commit | 982b8703a757e5a91aa6451fd26593a065f8a452 (patch) | |
tree | d4f43a227ef789a04aa8bad9efa9ed71a417e646 /Makefile | |
parent | 2d07847237e754d9050f06f565baa430c70ed937 (diff) |
added performance benchmark example
Change-Id: Ia0fea0569be3da7fadac9ef32d5f12c0b6de0089
Signed-off-by: Rastislav Szabo <raszabo@cisco.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 ./... |