12 lines
200 B
Makefile
12 lines
200 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/
|