aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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 ./...