Re: make -j with recursive make problems

2002-11-24 Thread gmane
Hello, Paul! This happends every the time I run make -j to me. I also built and tried make 3.80 from ftp.gnu.org with the same result: parent make tries to build the object file before the child exited, thus before the prerequisite exists. All my systems are Linux BTW. Thanks, MST On Mon, 25 No

Re: make -j with recursive make problems

2002-11-24 Thread Paul D. Smith
Please try it with GNU make 3.80. If it only happens occasionally it might be a manifestation of a bug that was fixed in 3.80. -- --- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gn

Re: make -j with recursive make problems

2002-11-23 Thread mst
Hello! I have encountered a problem with make -j (parallel make) when I use recursive make rules. Sometimes make seems to start building a target before all the prerequisites have been built. I have something like this: in src/tc/Makefile ../boot2/%: always ${MAKE} -C ../boot2 $(notdir $@) .PHON