79821999

Date: 2025-11-17 07:44:52
Score: 1
Natty:
Report link

One example is when Makefile has newline (\).

OBJECTS = main.o \
        program_1.o \

CFLAGS += -Werror

The Makefile after program_1.o is expecting another target object file because of \n. Remove this and you are good to go.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ronald Rosete