Prev: USB cable - why ?
Next: Graphics cards for Linux
From: Jed on 24 Jan 2010 21:34 On 23 Jan, 15:29, Jed <hard...(a)thearton.biz> wrote: > On Jan 23, 1:59 am, Nico Kadel-Garcia <nka...(a)gmail.com> wrote: > > > On Jan 21, 9:33 pm, Jed <hard...(a)thearton.biz> wrote: > > > > most commands that I need are available but the "make" command cannot > > > be found. Would there be any normal reason for that to happen? > > > Which Linux distribution are you using? And what does "which make" and > > "echo $PATH" say? > > ditto yes, make was not installed. I have a more recent version of debian installed now and it has make in with it. I still get command not found though. I ran whereis make and got: /usr/bin/make /usr/X11R6/bin/ make /usr/bin/X11/make /usr/share/man/man1/make.1.gz . I ran which make and got: /usr/bin/make and I ran echo $PATH and got: /usr/local/sbin:/usr/local/bin:/usr/ sbin:/usr/bin:/sbin:/bin:/usr/bin/X11 so now I am wondering if it is the makefile that needs to know where make is to be found? thanks for your help with this basic question.
From: John Hasler on 25 Jan 2010 00:28 Jed writes: > yes, make was not installed. I have a more recent version of debian > installed now and it has make in with it. I still get command not > found though. _Exactly_ what is the result of typing "make" in the build directory? Copy and paste. -- John Hasler jhasler(a)newsguy.com Dancing Horse Hill Elmwood, WI USA
From: Jed on 26 Jan 2010 21:17 On Jan 25, 4:28 pm, John Hasler <jhas...(a)newsguy.com> wrote: > Jed writes: > > yes, make was not installed. I have a more recent version of debian > > installed now and it has make in with it. I still get command not > > found though. > > _Exactly_ what is the result of typing "make" in the build directory? > Copy and paste. > -- > John Hasler > jhas...(a)newsguy.com > Dancing Horse Hill > Elmwood, WI USA /.ro/usr/lib/esets/webi/php/lib/php/build> make make: *** No targets specified and no makefile found. Stop.
From: John Hasler on 26 Jan 2010 22:05 Jed writes: > /.ro/usr/lib/esets/webi/php/lib/php/build> make > make: *** No targets specified and no makefile found. Stop. "make" is installed and working properly. It looks in the current directory for a file named "makefile" or "Makefile" and does what that file tells it to do. You have no such file in that directory and you haven't told make what else to do so it gives up. Show us the contents of that directory. What, exactly, are you trying to do? -- John Hasler jhasler(a)newsguy.com Dancing Horse Hill Elmwood, WI USA
From: watnne on 27 Jan 2010 03:27
Did you do ./configure before make? On Tue, 26 Jan 2010 21:05:30 -0600, John Hasler <jhasler(a)newsguy.com> wrote: >Jed writes: >> /.ro/usr/lib/esets/webi/php/lib/php/build> make >> make: *** No targets specified and no makefile found. Stop. > >"make" is installed and working properly. It looks in the current >directory for a file named "makefile" or "Makefile" and does what that >file tells it to do. You have no such file in that directory and you >haven't told make what else to do so it gives up. Show us the contents >of that directory. > >What, exactly, are you trying to do? >-- >John Hasler >jhasler(a)newsguy.com >Dancing Horse Hill >Elmwood, WI USA |