mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-21 00:24:07 +08:00
15 lines
228 B
Makefile
15 lines
228 B
Makefile
GCFLAGS :=
|
|
LDFLAGS :=
|
|
|
|
.PHONY: install
|
|
install:
|
|
@go install -v .
|
|
|
|
.PHONY: test
|
|
test:
|
|
@go test -gcflags='$(GCFLAGS)' -ldflags='$(LDFLAGS)' .
|
|
|
|
.PHONY: bench
|
|
bench:
|
|
@go test -gcflags='$(GCFLAGS)' -ldflags='$(LDFLAGS)' -bench .
|