aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 1ba7d94e9d25ecb3459f89253503ae29bd0e9baf (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