In WDK, to build my driver if I do just "build", for some reason it
doesn't recompile one C source file even if one of the header files
that it includes gets renewed. I just found out that it does recompile
the file if I do "build -v". Then I found out doing "build -v" ALWAYS
recompile this file even if nothing is newer than the obj file. So I
wanted to know why it recompiles this particular C source file, thus I
did "build -v -why". Then it says:
Compiling myfile.c because (Case 5) *2
Can you tell me what it means?
Thanks.