Subj : Re: BC++ 5.01 (Tlink) - Undefined symbols in module To : borland.public.cpp.borlandcpp From : "Ed Mulroy [TeamB]" Date : Tue Apr 06 2004 11:56 am main.c does not depend upon funcs.c so funcs.c should not be indented. By making it indented then the project manager will read the time stamp of the main.obj file created from main.c. If that time stamp is newer than main.c then neither of main.c nor funcs.c are likely to be recompiled. Move funcs.c one step to the left so that it is indented with respect to the target but not with respect to main.c .. Ed > Erwan wrote in message > news:4072bbb4$1@newsgroups.borland.com... > > I have a project in the IDE organised like this : > ____________________ > . target.exe > | > . - main [.c] > | > . - funcs [.c] > ____________________ > ... .