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
2020-11-08 17:58:08 -05:00

13 lines
283 B
Makefile

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