haddock2/Makefile
2025-09-27 08:57:27 +02:00

8 lines
282 B
Makefile

.PHONY: help
help: ## Show this help.
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: format
format:
find . -type f -name "*.hs" ! -path "./dist-newstyle/*" -exec fourmolu -i {} +