1
0
ミラー元 https://github.com/beego/bee.git 前回の同期 2025-09-17 08:12:08 +00:00
ファイル
bee/Makefile
Faissal Elamraoui 7254acdb7f added Makefile
2016-07-26 21:05:32 +02:00

21 行
290 B
Makefile

.PHONY: all test clean build install
GOFLAGS ?= $(GOFLAGS:)
all: install test
build:
go build $(GOFLAGS) ./...
install:
go get $(GOFLAGS) ./...
test: install
go test $(GOFLAGS) ./...
bench: install
go test -run=NONE -bench=. $(GOFLAGS) ./...
clean:
go clean $(GOFLAGS) -i ./...