wheat-cache/makefile

38 lines
675 B
Makefile
Raw Normal View History

BASE_PATH = $(shell pwd)
STORAGE_PATH = $(BASE_PATH)/storage
BASE_OUT = $(BASE_PATH)/bin
dcgen:
2021-09-23 10:11:18 +08:00
@python3 ./shell/gen_protobuf.py
2021-09-05 17:07:34 +08:00
@python3 ./shell/proto.py
2021-09-23 10:11:18 +08:00
@python3 ./shell/make-struct.py
.PHONY : build
build:
2021-09-05 17:07:34 +08:00
@cd storage && go build -o $(BASE_OUT)/storage
.PHONY: install
install:
2021-09-29 21:18:00 +08:00
@make gen-middleware
2021-09-05 21:27:08 +08:00
@make build
.PHONY: dev
dev:
@./bin/storage storage
2021-09-21 10:44:27 +08:00
.PHONY: gen-struct
gen-struct:
@python3 ./shell/make-struct.py
2021-09-19 10:37:30 +08:00
.PHONY: gen-protobuf
gen-protobuf:
2021-09-20 16:36:47 +08:00
@python3 ./shell/gen_protobuf.py
2021-09-29 21:18:00 +08:00
.PHONY: gen-middleware
gen-middleware:
@python3 ./shell/gen_middleware.py
.PHONY: init-conf
init-conf:
2021-10-04 20:32:55 +08:00
@python3 ./shell/init_conf.py