You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
356 B
26 lines
356 B
1 year ago
|
.PHONY: all build run gotool install clean help
|
||
|
|
||
|
BINARY_NAME=open_im_cms_api
|
||
|
BIN_DIR=../../bin/
|
||
|
|
||
|
|
||
|
all: gotool build
|
||
|
|
||
|
build:
|
||
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s"
|
||
|
|
||
|
run:
|
||
|
@go run ./
|
||
|
|
||
|
gotool:
|
||
|
go fmt ./
|
||
|
go vet ./
|
||
|
|
||
|
install:
|
||
|
make build
|
||
|
mv ${BINARY_NAME} ${BIN_DIR}
|
||
|
|
||
|
clean:
|
||
|
@if [ -f ${BINARY_NAME} ] ; then rm ${BINARY_NAME} ; fi
|
||
|
|