mirror of
https://github.com/go-home-admin/toolset.git
synced 2026-04-23 00:27:03 +08:00
18 lines
237 B
Makefile
18 lines
237 B
Makefile
GOBIN := $(shell go env GOBIN)
|
|
ATDIR := $(shell pwd)
|
|
|
|
# 只维护 protoc
|
|
protoc:
|
|
go run main.go make:protoc
|
|
|
|
make-route:
|
|
go run main.go make:route
|
|
|
|
make-bean:
|
|
go run main.go make:bean
|
|
|
|
# 调试启动
|
|
dev:protoc make-route make-bean
|
|
|
|
|