1
0
mirror of https://github.com/mgerb/ServerStatus synced 2026-01-09 18:52:50 +00:00
Files
ServerStatus/makefile
2017-01-16 06:42:28 +01:00

8 lines
234 B
Makefile

run:
@go run ./src/main.go
build:
@rm -rf ./dist
@GOOS=windows GOARCH=386 go build -o ./dist/ServerStatus-windows.exe ./src/main.go
@go build -o ./dist/ServerStatus-linux ./src/main.go
@cp config.template.json ./dist/config.json