14 lines
343 B
Makefile
14 lines
343 B
Makefile
SHELL := /bin/bash
|
|
|
|
.PHONY: help build clean
|
|
|
|
help: ## Show available targets
|
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
|
|
| awk 'BEGIN{FS=":.*?## "}{printf " \033[36m%-12s\033[0m %s\n", $$1, $$2}'
|
|
|
|
build: ## Build the installable plugin ZIP into dist/
|
|
@./bin/build-zip.sh
|
|
|
|
clean: ## Remove build artifacts (dist/)
|
|
@rm -rf dist
|