Questo è il mio makefile:
all:ll
ll:ll.c
gcc -c -Wall -Werror -02 c.c ll.c -o ll $@ $<
clean :
\rm -fr ll
Quando cerco di make clean
o make make
, ottengo questo errore:
:makefile:4: *** missing separator. Stop.
Come posso ripararlo?