15 lines
291 B
Makefile
15 lines
291 B
Makefile
.PHONY: build
|
|
|
|
all: build
|
|
|
|
build: build/craft-bot
|
|
|
|
build/craft-bot: *.go
|
|
go build -o build/craft-bot *.go
|
|
|
|
install: build
|
|
mkdir -p /usr/local/craft-bot
|
|
install build/craft-bot /usr/local/craft-bot/
|
|
install craft-bot.service /etc/systemd/system/craft-bot.service
|
|
systemctl daemon-reload
|