11 行
77 B
Makefile
11 行
77 B
Makefile
default: test
|
|
|
|
.PHONY: pkgs test
|
|
|
|
fetch:
|
|
go get -t
|
|
|
|
test: *.go
|
|
go test -v
|
|
|