mirror of
https://github.com/mgerb/ServerStatus
synced 2026-03-05 00:45:24 +00:00
update dependencies - change imports
This commit is contained in:
8
makefile
8
makefile
@@ -2,13 +2,13 @@ run:
|
||||
go run ./src/main.go
|
||||
|
||||
linux:
|
||||
go build -o ./dist/ServerStatus-linux ./src/main.go
|
||||
go build -o ./dist/ServerStatus-linux ./main.go
|
||||
|
||||
mac:
|
||||
GOOS=darwin GOARCH=amd64 go build -o ./dist/ServerStatus-mac ./src/main.go
|
||||
GOOS=darwin GOARCH=amd64 go build -o ./dist/ServerStatus-mac ./main.go
|
||||
|
||||
windows:
|
||||
GOOS=windows GOARCH=386 go build -o ./dist/ServerStatus-windows.exe ./src/main.go
|
||||
GOOS=windows GOARCH=386 go build -o ./dist/ServerStatus-windows.exe ./main.go
|
||||
|
||||
clean:
|
||||
rm -rf ./dist
|
||||
@@ -16,4 +16,4 @@ clean:
|
||||
copyfiles:
|
||||
cp config.template.json ./dist/config.json
|
||||
|
||||
all: linux mac windows copyfiles
|
||||
all: linux mac windows copyfiles
|
||||
|
||||
Reference in New Issue
Block a user