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

26 lines
657 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
2016-02-10 14:31:53 +00:00
2016-02-09 15:00:50 +00:00
install-tg:
2018-04-03 10:07:06 +00:00
go get -u github.com/hamcha/tg
2016-02-09 15:00:50 +00:00
2018-04-03 10:07:06 +00:00
tg-broker: install-tg
go get -u github.com/hamcha/tg/cmd/tg-broker
2016-02-09 15:00:50 +00:00
clessy-mods: install-tg
go build -o clessy-mods github.com/hamcha/clessy/mods
clessy-stats: install-tg
go build -o clessy-stats github.com/hamcha/clessy/stats
2016-02-08 17:05:46 +00:00
2016-02-12 16:11:33 +00:00
clessy-stats-import: install-tg
go build -o clessy-stats-import github.com/hamcha/clessy/stats-import
2016-02-08 17:05:46 +00:00
clean:
2018-04-03 10:07:06 +00:00
rm -f clessy-mods clessy-stats