Files
max-telegram-bridge-bot/Makefile
T
2026-05-27 09:55:11 +09:00

22 lines
228 B
Makefile

-include .env
export
.PHONY: build run test vet clean
BINARY = max-telegram-bridge-bot
build:
CGO_ENABLED=1 go build -o $(BINARY) .
run: build
./$(BINARY)
test:
go test ./...
vet:
go vet ./...
clean:
rm -f $(BINARY)