Format target

This commit is contained in:
Imbus 2025-09-01 22:43:19 +02:00
parent 3a476fa195
commit 3450ab2cb8

View file

@ -53,6 +53,9 @@ clean:
rm -f *.o *.elf *.d lib/*.o lib/*.d
find . -type f -name '*.[od]' -exec rm -f {} +
format:
find . -type f -name '*.[ch]' -exec clang-format -i {} +
-include *.d
.PHONY: all