modified test make target
[govpp.git] / Makefile
1 build:
2         @cd binapi_generator && go build -v
3
4 test:
5         @cd binapi_generator && go test -cover .
6         @cd api && go test -cover ./...
7         @cd core && go test -cover .
8
9 install:
10         @cd binapi_generator && go install -v
11
12 clean:
13         @rm binapi_generator/binapi_generator
14
15 .PHONY: build test install clean