This commit is contained in:
Martin Slachta
2026-06-11 19:03:29 +02:00
commit 0d829845c4
150 changed files with 38582 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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