8d9df9e95b
remove toMumble gain
13 lines
231 B
Makefile
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 |