max-telegram-bridge-bot/Makefile
Andrey Lugovskoy cd45bc9d84 Load .env in Makefile
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 13:03:09 +03:00

21 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)