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
700 B
Makefile
Raw Normal View History

2016-02-09 15:00:50 +00:00
all: clessy-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:
go install github.com/hamcha/clessy/tg
clessy-broker: install-tg
go build -o clessy-broker github.com/hamcha/clessy/broker
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:
2016-02-09 15:00:50 +00:00
rm -f clessy-broker clessy-mods clessy-stats