From 4b867da973868cbf300250d57b719e2c9f00e0a7 Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 22 Feb 2025 11:31:07 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Update=20indentation=20?= =?UTF-8?q?with=20tabs=20instead=20of=20spaces?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index a3b36c8..6defd1a 100644 --- a/Makefile +++ b/Makefile @@ -11,14 +11,14 @@ OBJS = $(SRCS:.c=.o) # create a list of object files from the source files all: main.elf main.elf: $(OBJS) - $(CC) $(LDFLAGS) $(OBJS) $(LIBS) -o $@ + $(CC) $(LDFLAGS) $(OBJS) $(LIBS) -o $@ %.o: %.c $(HEADERS) - $(CC) $(CFLAGS) -c $< -o $@ + $(CC) $(CFLAGS) -c $< -o $@ clean: - rm -f main.elf $(OBJS) + rm -f main.elf $(OBJS) # Optionally add a rule to flash your device (if applicable) -# flash: $(EXEC) -# ./flash_tool $(EXEC) # This is just a placeholder if needed \ No newline at end of file +# flash: main.elf +# ./flash_tool main.elf # This is just a placeholder if needed \ No newline at end of file