Files
Reservair/Makefile
T

14 lines
343 B
Makefile
Raw Normal View History

2026-06-11 19:03:29 +02:00
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