/* hello.c */
#include <stdio.h>
int main(void)
{
printf("Hello, world!\n");
return 0;
}
Compiling this code with armcc hello.c -M --depend_single_line produces:
__image.axf: hello.c_...\include\...\stdio.h
Compiling this code with armcc hello.c -M --no_depend_single_line produces:
__image.axf: hello.c
__image.axf: ...\include\...\stdio.h