~siegfriedehret/brrr

d00f3c801b6fddb273e23112d55e11d8048b16f2 — Siegfried Ehret 2 years ago 15e5a7e
🔧 init makefile
1 files changed, 18 insertions(+), 0 deletions(-)

A Makefile
A Makefile => Makefile +18 -0
@@ 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