mirror of
https://github.com/mgerb/ServerStatus
synced 2026-01-10 19:22:49 +00:00
added role notification configuration
This commit is contained in:
16
makefile
16
makefile
@@ -1,8 +1,16 @@
|
||||
run:
|
||||
@go run ./src/main.go
|
||||
|
||||
build:
|
||||
@rm -rf ./dist
|
||||
@GOOS=windows GOARCH=386 go build -o ./dist/ServerStatus-windows.exe ./src/main.go
|
||||
linux:
|
||||
@go build -o ./dist/ServerStatus-linux ./src/main.go
|
||||
@cp config.template.json ./dist/config.json
|
||||
|
||||
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 windows copyfiles
|
||||
Reference in New Issue
Block a user