added performance benchmark example
[govpp.git] / Makefile
index 44a203b..93cd052 100644 (file)
--- 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 ./...