Subj : Re: Re-compile To : borland.public.cpp.borlandcpp From : Bob Gonder Date : Fri Sep 05 2003 07:49 am Dieter wrote: >What should I look for in my system date. All I see is that the file dates >is older than my system date which is what I expect it to be. Any other >comments? Make doesn't care about the system date. It compares the date of the source against the date of the object. If the source is "newer" then it compiles. Point that I had was the IDE would write a source with a future time, and make/compiler would write an obj with the current time so it would still be "old". The make option -B builds reguardless of date. You could also turn off autodependancy which tracks changes to header files. .