summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 8d3a4ec5ea71de8c2ba67a12da889a9922186057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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

.PHONY: build test install clean