makectl 0.2.0

Generate and manage targets in your Makefiles
1
2
3
4
5
6
7
8
## makectl: description="Clean Go build artifacts"
BINARY_NAME ?= $(notdir $(CURDIR))

.PHONY: clean
clean: ## Clean build artifacts
	go clean
	rm -f $(BINARY_NAME) $(BINARY_NAME)-*
	rm -f coverage.out coverage.html