aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 859ed1ebf3a4d0d3c24e4977f81c2dcd5bea29b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ./...

lint:
	@golint ./... | grep -v vendor | grep -v bin_api

.PHONY: build test install clean generate