style 💎: Update indentation with tabs instead of spaces
Some checks failed
CC2530 Zigbee Firmware Build / build (push) Failing after 1m11s

This commit is contained in:
2025-02-22 11:31:07 +01:00
parent 9a3ec2410c
commit 4b867da973

View File

@@ -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
# flash: main.elf
# ./flash_tool main.elf # This is just a placeholder if needed