1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-11 09:32:50 +00:00

working on audio clip sound bot

This commit is contained in:
2017-01-17 07:17:44 +01:00
parent 9a720a6261
commit 0673524c31
13 changed files with 205 additions and 62 deletions

17
makefile Normal file
View File

@@ -0,0 +1,17 @@
run: clean linux copyconfig
@./dist/GoBot-linux
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
clean:
@rm -rf ./dist
copyconfig:
@cp config.template.json ./dist/config.json
build: clean windows linux copyconfig