summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: a0aa7a3bcd31caea67c0e5332cbe96991e4d49fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
build:
	@cd binapi_generator && go build -v

test:
	@go test -cover $(glide novendor)

install:
	@cd binapi_generator && go install -v

clean:
	@rm binapi_generator/binapi_generator

.PHONY: build test install clean