1
0
mirror of https://github.com/stryan/mumble-discord-bridge.git synced 2024-06-26 09:00:15 -04:00
mumble-discord-bridge/Makefile
Tyler Stiene 8d9df9e95b fix discord mixing
remove toMumble gain
2020-10-30 01:38:01 -04:00

13 lines
231 B
Makefile

GOFILES=main.go mumble.go discord.go
mumble-discord-bridge: $(GOFILES)
go build -o $@ $(GOFILES)
docker-latest:
docker build .
docker push stieneee/mumble-bridge-latest
clean:
rm mumble-discord-bridge
.PHONY: all push clean