makectl 0.2.0

Generate and manage targets in your Makefiles
1
2
3
4
5
6
7
8
## makectl: description="Build Rust project with cargo"
.PHONY: build
build: ## Build the project
	cargo build

.PHONY: build-verbose
build-verbose: ## Build with verbose output
	cargo build --verbose