makectl 0.2.0

Generate and manage targets in your Makefiles
1
2
3
4
5
6
7
8
## makectl: description="Install Node.js dependencies"
.PHONY: install
install: ## Install dependencies
	npm install

.PHONY: install-ci
install-ci: ## Install dependencies (CI mode)
	npm ci