This commit is contained in:
Sobottasgithub
2025-11-14 10:25:22 +01:00
commit cf4af5fc8d
22 changed files with 397 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
JAVA_FMT = google-java-format
JAVA_FILES = $(shell find . -name '*.java')
XML_FMT = xmlindent
XML_FILES = $(shell find . -name '*.xml')
.PHONY: fmt
fmt:
@echo "Formatting all Java files..."
@for f in $(JAVA_FILES); do \
echo " $$f"; \
$(JAVA_FMT) -i $$f; \
done