1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-17 04:53:31 +00:00
Beego/vendor/github.com/cloudflare/golz4/Makefile

15 lines
228 B
Makefile
Raw Normal View History

2018-11-09 04:37:28 +00:00
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 .