In my makefiles, I prefer the following indentation for continuation lines:
FILES:= \
file1.cpp \
file2.cpp \
fileYetAnother.cpp
LIBS:= \
libsth1.so \
libelsewhere.so
still, makefile mode indents it in the following way (when asked to reindent file or region):
FILES:= \
file1.cpp \
file2.cpp \
fileYetAnother.cpp
LIBS:= \
libsth1.so \
libelsewhere.so
Is it possible to configure it somehow to use the former variant (= indent continuation lines by 4 spaces or tab) ?