1
0
mirror of https://github.com/mgerb/ServerStatus synced 2026-01-09 18:52:50 +00:00
Files
ServerStatus/makefile
2017-01-18 21:23:55 +00:00

19 lines
376 B
Makefile

run:
go run ./src/main.go
linux:
go build -o ./dist/ServerStatus-linux ./src/main.go
mac:
GOOS=darwin GOARCH=amd64 go build -o ./dist/ServerStatus-mac ./src/main.go
windows:
GOOS=windows GOARCH=386 go build -o ./dist/ServerStatus-windows.exe ./src/main.go
clean:
rm -rf ./dist
copyfiles:
cp config.template.json ./dist/config.json
all: linux mac windows copyfiles