From mark.piffer at chello.at Wed May 6 04:12:46 2009 From: mark.piffer at chello.at (Mark Piffer) Date: Wed, 06 May 2009 10:12:46 +0200 Subject: [Rant-cafe] Dependency generation for C files Message-ID: <4A01467E.9050900@chello.at> Hello, in case this project is still being maintained and used by some, can you tell me how rant generates the dependency for C files? I'm referring to the medium to pathological cases like #if ((defined __STDC_VERSION__) || (defined __GNUC__)) && (( __STDC_VERSION__ >= 199901L ) || ( __GNUC__ >= 3 )) # include # include #else # include "my_c99_defs.h" #endif or /* #include "non_existing_headerfile.h" */ or even: char s[] = "\ #include \"non_existing_headerfile.h\"" Will rant trip over these cases? regards, Mark