This repository has been archived on 2024-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
helperbot/Makefile
2023-11-29 17:54:12 -06:00

22 lines
356 B
Makefile

helperbot:
go build -o build/helperbot cmd/helperbot/*.go
plugins:
./buildplugins.sh
package:
go build -o build/helperbot cmd/helperbot/*.go
./buildplugins.sh
cp cmd/helperbot/helperbot.service build/
cd build && tar -zcvf helperbot.tgz *
run:
cd build && ./helperbot
aoc-util:
go build -o build/aoc-util cmd/aoc-util/*.go
clean:
./clean.sh