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

16 lines
399 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-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
clean:
2016-02-09 15:00:50 +00:00
rm -f clessy-broker clessy-mods clessy-stats