@@ 0,0 1,18 @@
+all: build
+
+build: format ## Build brrr
+ nimble -d:ssl build
+
+build-debug: ## Build brrr with hints and verbose logs
+ nimble -d:ssl --hints:on --verbose build
+
+format: ## Format files using nimpretty
+ nimpretty src/**/*.nim
+
+run: build ## Run brrr
+ ./brrr install exa
+
+help: ## Print this message
+ @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
+
+.PHONY: build build-debug format help run