makefile tiene una relación muy estúpida con las pestañas, todas las acciones de cada regla se identifican por pestañas. Y no, 4 espacios no hacen una pestaña, solo una pestaña hace una pestaña.
para verificar uso el comando cat -e -t -v makefile_name
Muestra la presencia de pestañas con ^I
y las terminaciones de línea con $
ambas son vitales para garantizar que las dependencias terminen correctamente y las pestañas marcan la acción de las reglas para que sean fácilmente identificables por la utilidad make.
Ejemplo:
Kaizen ~/so_test $ cat -e -t -v mk.t
all:ll$ ## here the $ is end of line ...
$
ll:ll.c $
^Igcc -c -Wall -Werror -02 c.c ll.c -o ll $@ $<$
## the ^I above means a tab was there before the action part, so this line is ok .
$
clean :$
\rm -fr ll$
## see here there is no ^I which means , tab is not present ....
## in this case you need to open the file again and edit/ensure a tab
## starts the action part