Files
gf-lt/Makefile
2024-12-12 19:00:17 +03:00

11 lines
254 B
Makefile

.PHONY: setconfig run lint
run: setconfig
go build -o elefant && ./elefant
setconfig:
find config.toml &>/dev/null || cp config.example.toml config.toml
lint: ## Run linters. Use make install-linters first.
golangci-lint run -c .golangci.yml ./...