Files
Jonathan Miller b072140124 docs: add standard documentation and build infrastructure
- CHANGELOG.md, CONTRIBUTING.md, SECURITY.md, CODE_OF_CONDUCT.md
- docs/INSTALLATION.md with setup and troubleshooting guide
- LICENSE (GPL-3.0-or-later)
- Makefile with package target for ZIP builds

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-28 20:27:43 -05:00

13 lines
366 B
Makefile

.PHONY: package clean
EXTENSION = plg_webservices_mokodpcalendarapi
VERSION = $(shell grep -oP 'version>\K[^<]+' src/mokodpcalendarapi.xml 2>/dev/null || echo "0.0.0")
package:
@echo "Building $(EXTENSION)-$(VERSION).zip"
@cd src && zip -r ../$(EXTENSION)-$(VERSION).zip . -x ".*"
@echo "Package: $(EXTENSION)-$(VERSION).zip"
clean:
@rm -f $(EXTENSION)-*.zip