summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 8c46793548c05dacb304afd70278f07f807dec8b (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