mirror of
https://github.com/astaxie/beego.git
synced 2024-11-04 21:20:54 +00: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 .
|