humble-bot/Makefile

10 lines
121 B
Makefile
Raw Normal View History

2023-07-06 07:00:58 +02:00
BINARY_NAME=humble-bot
default: build
build:
go build -o ${BINARY_NAME} main.go
clean:
go clean
rm ${BINARY_NAME}