makectl 0.2.0

Generate and manage targets in your Makefiles
1
2
3
4
5
6
## makectl: description="Remove common build artifacts"
.PHONY: clean
clean: ## Remove build artifacts
	rm -rf build/ dist/ out/ tmp/
	find . -name '*.tmp' -delete
	find . -name '*~' -delete