mirror of https://github.com/rocboss/paopao-ce
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.
27 lines
669 B
27 lines
669 B
3 years ago
|
.PHONY: all build clean fmt help
|
||
|
BUILD_VERSION := $(shell cat version)
|
||
|
BUILD_DATE := $(shell date +'%Y-%m-%d %H:%M:%S')
|
||
|
SHA_SHORT := $(shell git rev-parse --short HEAD)
|
||
|
all: fmt build
|
||
|
build:
|
||
|
@go mod download
|
||
|
@echo Build paopao-ce
|
||
|
bash build.sh paopao-ce
|
||
|
clean:
|
||
|
@go clean
|
||
|
@find ./dist -type f -exec rm -r {} +
|
||
|
@find ./tmp -type f -exec rm -r {} +
|
||
|
fmt:
|
||
|
@echo Formatting...
|
||
|
@go fmt ./global/...
|
||
|
@go fmt ./internal/...
|
||
|
@go fmt ./pkg/...
|
||
|
@go vet -composites=false ./global/...
|
||
|
@go vet -composites=false ./internal/...
|
||
|
@go vet -composites=false ./pkg/...
|
||
|
help:
|
||
|
@echo "make: make"
|
||
|
@echo "make build: build executables"
|
||
|
.EXPORT_ALL_VARIABLES:
|
||
|
GO111MODULE = on
|