CountDigits/GNUmakefile
Sobottasgithub cf4af5fc8d Init
2025-11-14 10:25:22 +01:00

13 lines
273 B
Makefile

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