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.
17 lines
264 B
17 lines
264 B
BINARY := dist/popiartserver
|
|
GOFILES := $(shell find cmd internal -name '*.go' | sort)
|
|
|
|
.PHONY: fmt build run test
|
|
|
|
fmt:
|
|
gofmt -w $(GOFILES)
|
|
|
|
build:
|
|
mkdir -p dist
|
|
go build -o $(BINARY) ./cmd/popiartserver
|
|
|
|
run:
|
|
go run ./cmd/popiartserver
|
|
|
|
test:
|
|
go test ./...
|
|
|