3
makefile 모드에서 들여 쓰기를 사용자 정의 하시겠습니까?
내 makefile에서 연속 줄에 대해 다음 들여 쓰기를 선호합니다. FILES:= \ file1.cpp \ file2.cpp \ fileYetAnother.cpp LIBS:= \ libsth1.so \ libelsewhere.so 여전히 makefile 모드는 다음과 같은 방식으로 들여 쓰기합니다 (파일 또는 영역을 다시 들여 쓸 것인지 물을 때). FILES:= \ file1.cpp \ file2.cpp \ fileYetAnother.cpp LIBS:= \ libsth1.so \ libelsewhere.so …