mumble-discord-bridge/Makefile

13 lines
283 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 -t stieneee/mumble-discord-bridge:latest .
2020-11-08 17:58:08 -05:00
docker push stieneee/mumble-discord-bridge:latest
clean:
2020-11-08 17:58:08 -05:00
rm -f mumble-discord-bridge
.PHONY: all push clean