On Fri, Sep 02, 2005 at 11:35:26AM +0100, Dave Korn wrote: >Ok, 18+17 == 33 .o files built from .c files, and 104 pretty much >accounts for the remaining .o files, so I think I see the pattern: we >only have auto-dependencies for C source files, not C++. Well, you >learn something new every day.
.d files are supposed to be created for every .o by the Makefile in winsup/cygwin, with the exception of sigfe.o. I just verified that this is the case by cd'ing to 'winsup/cygwin' and doing a 'make clean all' and then, in zsh: for f in *.o; do ls $f:r.d >& /dev/null || echo $f done I haven't tried this from outside of the winsup/cygwin directory so maybe your problem is due to building from a higher level directory. cgf -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/