This repository has been archived on 2023-07-05. You can view files and clone it, but cannot push or open issues or pull requests.
clessy/Makefile

27 lines
742 B
Makefile
Raw Normal View History

2018-04-03 10:07:06 +00:00
all: tg-broker clessy-mods clessy-stats
2016-02-08 13:47:10 +00:00
2016-02-10 14:31:53 +00:00
deps:
go get github.com/boltdb/bolt/...
2016-02-15 16:52:25 +00:00
go get github.com/golang/freetype
2016-02-19 16:35:43 +00:00
go get github.com/llgcode/draw2d
2016-02-19 18:25:28 +00:00
go get github.com/llgcode/draw2d/draw2dimg
2016-06-20 15:39:09 +00:00
go get github.com/disintegration/imaging
2018-06-18 17:26:22 +00:00
go get github.com/simon-weber/gomarkov
2016-02-10 14:31:53 +00:00
2016-02-09 15:00:50 +00:00
install-tg:
2018-11-02 13:20:17 +00:00
go get -u git.fromouter.space/hamcha/tg
2016-02-09 15:00:50 +00:00
2018-04-03 10:07:06 +00:00
tg-broker: install-tg
2018-11-02 13:20:17 +00:00
go get -u git.fromouter.space/hamcha/tg/cmd/tg-broker
2016-02-09 15:00:50 +00:00
clessy-mods: install-tg
2018-11-02 13:20:17 +00:00
go build -o clessy-mods git.fromouter.space/hamcha/clessy/mods
2016-02-09 15:00:50 +00:00
clessy-stats: install-tg
2018-11-02 13:20:17 +00:00
go build -o clessy-stats git.fromouter.space/hamcha/clessy/stats
2016-02-08 17:05:46 +00:00
2016-02-12 16:11:33 +00:00
clessy-stats-import: install-tg
2018-11-02 13:20:17 +00:00
go build -o clessy-stats-import git.fromouter.space/hamcha/clessy/stats-import
2016-02-12 16:11:33 +00:00
2016-02-08 17:05:46 +00:00
clean:
2018-04-03 10:07:06 +00:00
rm -f clessy-mods clessy-stats