According to GNU's documentation
If there are many included files then the rule is split into several lines using
\-newline.
After running the following command, why is the output from gcc -M not as expected?
How do I ensure that each dependency appears on a separate line? Thanks for your help in advance.
gcc -Iinc/ -Isrc/ -M -MM src/BitSet.c
BitSet.o: src/BitSet.c \
inc/BitSet.h inc/StdDefs.h
I am using GCC 4.5.2 (MinGW) on Windows.
makehandles dependencies that way. As I said, the output is consistent with the documentation. I don't see why they would add an option to put one header per line whenmakehandles the current format. – Mat Nov 22 '11 at 8:08Ccode, so I'd go with that if I were you. – Mat Nov 22 '11 at 8:16