26 lines
No EOL
657 B
Makefile
26 lines
No EOL
657 B
Makefile
all: tg-broker clessy-mods clessy-stats
|
|
|
|
deps:
|
|
go get github.com/boltdb/bolt/...
|
|
go get github.com/golang/freetype
|
|
go get github.com/llgcode/draw2d
|
|
go get github.com/llgcode/draw2d/draw2dimg
|
|
go get github.com/disintegration/imaging
|
|
|
|
install-tg:
|
|
go get -u github.com/hamcha/tg
|
|
|
|
tg-broker: install-tg
|
|
go get -u github.com/hamcha/tg/cmd/tg-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
|
|
|
|
clessy-stats-import: install-tg
|
|
go build -o clessy-stats-import github.com/hamcha/clessy/stats-import
|
|
|
|
clean:
|
|
rm -f clessy-mods clessy-stats
|