aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 10e1b12dadf38a72bbcbc0cad5773de546cb8040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
build:
	@cd binapi_generator && go build -v

test:
	@cd binapi_generator && go test -cover .
	@cd api && go test -cover ./...
	@cd core && go test -cover .

install:
	@cd binapi_generator && go install -v

clean:
	@rm binapi_generator/binapi_generator

generate:
	@cd core && go generate ./...
	@cd examples && go generate ./...

.PHONY: build test install clean generate