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

19 lines
441 B
Makefile

all: clessy-broker clessy-mods clessy-stats
deps:
go get github.com/boltdb/bolt/...
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
clean:
rm -f clessy-broker clessy-mods clessy-stats