diff options
author | Anton Kling <anton@kling.gg> | 2024-12-12 16:03:08 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-12-12 16:03:08 +0100 |
commit | b033314bf1901d436dc71d41d5e1f37dda47e511 (patch) | |
tree | 120bd137888a7f96904a47af7d20422608ffe225 /userland/minibox/Makefile | |
parent | dcbcdbdc5bcfb86eca05fb655e3bf009d89e39e0 (diff) |
formatting: Use clang-format on all projects
This commit also add braces to all `if` statements.
Diffstat (limited to 'userland/minibox/Makefile')
-rw-r--r-- | userland/minibox/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/minibox/Makefile b/userland/minibox/Makefile index a9e7234..f0332f3 100644 --- a/userland/minibox/Makefile +++ b/userland/minibox/Makefile @@ -3,6 +3,7 @@ CFLAGS=-Wall -Wextra -pedantic -Wimplicit-fallthrough -g -O0 OBJ=minibox.o utilities/cat.o utilities/echo.o utilities/yes.o utilities/minibox.o utilities/ascii.o utilities/wc.o utilities/init.o utilities/ls.o utilities/touch.o utilities/ed.o utilities/sh/sh.o utilities/sh/lexer.o utilities/sh/ast.o utilities/kill.o utilities/sha1sum.o utilities/rdate.o utilities/true.o utilities/false.o utilities/lock.o %.o: %.c + clang-format -i $< $(CC) $(CFLAGS) $(INCLUDE) $(LIBS) -c $< -o $@ minibox: $(OBJ) |