mirror of
https://github.com/genxium/DelayNoMore
synced 2024-12-26 11:48:56 +00:00
34 lines
848 B
Makefile
34 lines
848 B
Makefile
PROJECTNAME=server.exe
|
|
ROOT_DIR=.
|
|
GOPROXY=https://mirrors.aliyun.com/goproxy
|
|
all: help
|
|
|
|
gen-constants:
|
|
gojson -pkg common -name constants -input common/constants.json -o common/constants_struct.go
|
|
sed -i 's/int64/int/g' common/constants_struct.go
|
|
|
|
run-test: build
|
|
ServerEnv=TEST ./$(PROJECTNAME)
|
|
|
|
run-test-and-hotreload:
|
|
ServerEnv=TEST CompileDaemon -log-prefix=false -build="go build" -command="./$(PROJECTNAME)"
|
|
|
|
build:
|
|
GOPROXY=$(GOPROXY) go build -o $(ROOT_DIR)/$(PROJECTNAME)
|
|
|
|
run-prod: build-prod
|
|
./$(PROJECTNAME)
|
|
|
|
build-prod:
|
|
GOPROXY=$(GOPROXY) go build -ldflags "-s -w -X main.VERSION=$(shell git rev-parse --short HEAD)-$(shell date "+%Y%m%d-%H:%M:%S")" -o $(ROOT_DIR)/$(PROJECTNAME)
|
|
|
|
.PHONY: help
|
|
|
|
help: Makefile
|
|
@echo
|
|
@echo " Choose a command run:"
|
|
@echo
|
|
@sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /'
|
|
@echo
|
|
|