Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

make: no targets specified and no makefile found

Status
Not open for further replies.

cadbilbao

Programmer
Apr 9, 2001
233
0
0
ES
Hi!

I am trying to install mySQL, but after uncompressing my tarball file, and executing 'make', I get the error:

make: no targets specified and no makefile found

I would be extremely obliged if anybody could explain wich libraries I need, how can I find the C library version I'm using, or whatever...

Regards.
 
you must do
$ ./configure && make

try first to do a :
$ ./configure --help

to see if some options are good for you.

to check your current library version, try:
$ ls -al /lib/libc.* /usr/libc.*

and check the names of the files (libc.so.1.2.3 for example)

cya

--
pkiller

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top