mirror of
https://github.com/beego/bee.git
synced 2025-07-04 11:40:17 +00:00
testdata
vendor
.gitignore
.goxc.json
.travis.yml
Beefile
LICENSE
Makefile
README.md
apiapp.go
autorouter.go
autorouter_test.go
bale.go
banner.go
bee.go
bee.json
code.go
color.go
colorwriter.go
colorwriter_windows.go
conf.go
fix.go
g.go
g_appcode.go
g_controllers.go
g_docs.go
g_hproseappcode.go
g_migration.go
g_model.go
g_scaffold.go
g_views.go
hproseapp.go
logger.go
migrate.go
new.go
pack.go
run.go
rundocs.go
test.go
util.go
version.go
watch.go
21 lines
290 B
Makefile
21 lines
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 ./...
|