1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-09 16:42:48 +00:00

more sounds - added mac binary

This commit is contained in:
2017-01-20 13:42:53 +00:00
parent d465435d81
commit 0262bdf7eb
4 changed files with 13 additions and 11 deletions

BIN
dist/GoBot-mac vendored Executable file

Binary file not shown.

BIN
dist/sounds/arf.dca vendored Normal file

Binary file not shown.

View File

@@ -1,18 +1,20 @@
run: clean linux copyconfig
@./dist/GoBot-linux
run:
go run ./src/main.go
linux:
go build -o ./dist/GoBot-linux ./src/main.go
mac:
GOOS=darwin GOARCH=amd64 go build -o ./dist/GoBot-mac ./src/main.go
windows:
@GOOS=windows GOARCH=386 go build -o ./dist/GoBot-windows.exe ./src/main.go
linux:
@go build -o ./dist/GoBot-linux ./src/main.go
GOOS=windows GOARCH=386 go build -o ./dist/GoBot-windows.exe ./src/main.go
clean:
@rm -rf ./dist
rm -rf ./dist
copyconfig:
@cp config.template.json ./dist/config.json
@cp -r ./sounds ./dist/
cp config.template.json ./dist/config.json
cp -r ./sounds ./dist/
all: windows linux copyconfig
all: linux mac windows copyconfig

BIN
sounds/arf.dca Normal file

Binary file not shown.