Re: make problems

2007-03-02 Thread Jon Grant
Hi, Turbo-parts elucidated on 01/03/07 22:03: Hello, allways no targets specified and no makefile found. stop. how can i change ? Sounds like you have a problem with your project + build, check if there is a "Makefile" in the directory; or explain the problem to the person who provided yo

Re: make problems

2007-03-02 Thread Eli Zaretskii
> From: "Turbo-parts" <[EMAIL PROTECTED]> > Date: Thu, 1 Mar 2007 23:03:56 +0100 > > Hello, allways no targets specified and no makefile found. stop. This usually means that you don't have a file called Makefile in the current directory. ___ Bug-make

make problems

2007-03-02 Thread Turbo-parts
Hello, allways no targets specified and no makefile found. stop. how can i change ? br___ Bug-make mailing list Bug-make@gnu.org http://lists.gnu.org/mailman/listinfo/bug-make

Re: make problems

2003-06-04 Thread Paul D. Smith
%% "Edwards, Rudolph" <[EMAIL PROTECTED]> writes: er> While trying to compile the RHL 7.2 kernel, issuing the 'make er> menuconfig' or any other 'make options' the response is as follows: er> Make: "No rules to make target 'option" . Stop er> Option can be anything such as "config, menuc

make problems

2003-06-04 Thread Edwards, Rudolph
Hello, While trying to compile the RHL 7.2 kernel, issuing the 'make menuconfig' or any other 'make options' the response is as follows: Make: "No rules to make target 'option" . Stop Option can be anything such as "config, menuconfig, clean, mrptoper, etc..."   Do you have any suggest

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