Files
ngzz-mc/Makefile

21 lines
304 B
Makefile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 年糕历险记 Makefile开发用Windows 安装包用 scripts/build.ps1
.PHONY: run-client run-server build vet test clean
run-client:
go run -tags dev ./cmd/client
run-server:
go run ./cmd/server
build:
go build ./...
vet:
go vet ./...
test:
go test -race ./...
clean:
rm -rf bin