From 3450ab2cb8373bfaae7f2d4acc1be2468918b943 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Mon, 1 Sep 2025 22:43:19 +0200 Subject: [PATCH] Format target --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index e99f2a0..39c8c74 100644 --- a/Makefile +++ b/Makefile @@ -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