aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 70f1f45..44a203b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
build:
@cd cmd/binapi-generator && go build -v
- @cd examples && go build -v
+ @cd examples/cmd/simple-client && go build -v
+ @cd examples/cmd/stats-client && go build -v
test:
@cd cmd/binapi-generator && go test -cover .
@@ -11,8 +12,9 @@ install:
@cd cmd/binapi-generator && go install -v
clean:
- @rm cmd/binapi-generator/binapi-generator
- @rm examples/examples
+ @rm -f cmd/binapi-generator/binapi-generator
+ @rm -f examples/cmd/simple-client/simple-client
+ @rm -f examples/cmd/stats-client/stats-client
generate:
@cd core && go generate ./...