1
0
mirror of https://github.com/stryan/mumble-discord-bridge.git synced 2024-09-28 15:06:23 -04:00
mumble-discord-bridge/Makefile

13 lines
231 B
Makefile
Raw Normal View History

2020-10-29 02:21:07 -04:00
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