LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-25-2003, 08:22 PM   #1
acc_minion
LQ Newbie
 
Registered: Jul 2003
Distribution: SuSe 8.2 Professional
Posts: 21

Rep: Reputation: 15
Installation of any program not working, really pissin me off!


Hello, i have tried to install dozens of programs and i cannot install any of them, no matter what 'make' dosnt work, the only programs that i can install are the ones that came with SuSE 8.2, I dont really expect any help, unless you know of a program that will install the program for me or something

Thank You
 
Old 07-25-2003, 08:28 PM   #2
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Rep: Reputation: 65
If you put an example of how you doing and what program you need to install we might be able to help ya
 
Old 07-25-2003, 08:30 PM   #3
cowboy_ein
LQ Newbie
 
Registered: Jan 2003
Location: Fort Worth, TX
Distribution: OS X 10.4.7, Xubuntu 6.06
Posts: 19

Rep: Reputation: 0
Give some specifics. Are there any error messages when you type "make". Give a blow by blow account of how you are trying to install whatever it is you are trying to install, and then you will be able to be helped
 
Old 07-25-2003, 09:34 PM   #4
Corin
Member
 
Registered: Jul 2003
Location: Jette, Brussels Hoofstedelijk Gewest
Distribution: Debian sid, RedHat 9, Suse 8.2
Posts: 446

Rep: Reputation: 31
It's just a guess of course, but I fear that this user has not unpacked the tar archive before he has tried to do a make, or that he has not changed directory to the unpacked source before issuing the make command, or that he has not run the configure script before issuing the make command.
 
Old 07-25-2003, 10:31 PM   #5
acc_minion
LQ Newbie
 
Registered: Jul 2003
Distribution: SuSe 8.2 Professional
Posts: 21

Original Poster
Rep: Reputation: 15
Corin, i have successfully unpacked the tars into a diectroy, and changed the directory, before doing the make command.

What I did:
Opened the Terminal (the package already unpacked)
Entered cd /directory name/ (already at base dir)
Entered the configure command, no errors
Entered the make command and the error:
"make: *** No targets specified and no makefile found. Stop."

NOTE: I am in the directory where there is a 'Makefile'
 
Old 07-26-2003, 05:02 AM   #6
Proud
Senior Member
 
Registered: Dec 2002
Location: England
Distribution: Used to use Mandrake/Mandriva
Posts: 2,794

Rep: Reputation: 116Reputation: 116
Is there any reference to ./autoconf ? Check the README and INSTALL files.
 
Old 07-26-2003, 05:29 AM   #7
lfur
Member
 
Registered: Jul 2003
Location: Slovenia
Distribution: Slackware & FreeBSD
Posts: 209

Rep: Reputation: 30
sorry
 
Old 07-26-2003, 10:24 AM   #8
acc_minion
LQ Newbie
 
Registered: Jul 2003
Distribution: SuSe 8.2 Professional
Posts: 21

Original Poster
Rep: Reputation: 15
Proud, no there is not any mention of ./autoconf , and it would not let me do the command in the terminal
 
Old 07-26-2003, 10:44 AM   #9
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
# Guides to software and installation and uninstallation
LNAG - How do I install a program I downloaded from the Internet?
Rute Guide's software explanation
You might want to check out CheckInstall to manage source code installations/uninstallation
 
Old 07-26-2003, 05:35 PM   #10
Corin
Member
 
Registered: Jul 2003
Location: Jette, Brussels Hoofstedelijk Gewest
Distribution: Debian sid, RedHat 9, Suse 8.2
Posts: 446

Rep: Reputation: 31
Quote:
Originally posted by acc_minion
What I did:
Opened the Terminal (the package already unpacked)
Entered cd /directory name/ (already at base dir)
Entered the configure command, no errors
Entered the make command and the error:
"make: *** No targets specified and no makefile found. Stop."

NOTE: I am in the directory where there is a 'Makefile' [/B]
Okay, now we know where you are at.

I think what is happening is that the Makefile that you have found is indeed being processed by make. However what is usually the case with software packages is that there are numerous sub directories with code to be processed. So the top level Makefile itself issues a make command to run the Makefile in the eg src directory to compile the code there. BUT because you have not run the configure script first, to generate all of the Makefiles in the sub-directories, then the process stops with the error you mentioned.

So in general, what you have to do is to run a script configure in the top level directory to set everything up before you run make.

Now there is however another possibility! If you are trying to install some old software packages from before the era of the
./configure, make era, and they are X11 programs and have a file called Imakefile in the top level directory, then you need to do

xmkmf -a

followed by

make

Of course the simplest thing to do would have been to tell us all the name of the software package which you were trying to install and that would have cut out all the needless speculation and saved a lot of time.

And just to make matters worse, there are some packages like exim which do not have a configure script, or a Imakefile and one has to manually edit the Makefile for the appropriate system before running make.

Installing software packages from source is not necessarily always the simplest of tasks.

Last edited by Corin; 07-26-2003 at 05:36 PM.
 
Old 07-27-2003, 03:08 PM   #11
acc_minion
LQ Newbie
 
Registered: Jul 2003
Distribution: SuSe 8.2 Professional
Posts: 21

Original Poster
Rep: Reputation: 15
Here are some of the programs i am trying to install, they include:
GAIM, AMSN, Mozzila, Xine, OpenOffice amoung many others, including IRC applications and FTP applications, now none of these installs work, at all, this is whay i did not tell you what the programs were, because there were too many, I tried rpms and they did not work either
 
Old 07-27-2003, 03:18 PM   #12
Corin
Member
 
Registered: Jul 2003
Location: Jette, Brussels Hoofstedelijk Gewest
Distribution: Debian sid, RedHat 9, Suse 8.2
Posts: 446

Rep: Reputation: 31
Are not most of these applications included as RPMs with SuSE professional 8.2?

You should have no problem installing at least Mozilla and OpenOffice from the Yast2 interface after inserting your DVD in your DVD drive (or doing the CD-ROM shuffle in the CD-ROM drive).

You need to limit yourself to dealing with one installation problem at a time as you are just going to get very frustrated (as you have done) if you just keep going on without thinking about what you are doing and why things are failing.

Did you actually install SuSE professional 8.2 on your machine yourself?
 
Old 07-27-2003, 06:32 PM   #13
Thymox
Senior Member
 
Registered: Apr 2001
Location: Plymouth, England.
Distribution: Mostly Debian based systems
Posts: 4,368

Rep: Reputation: 64
Quote:
Originally posted by acc_minion
Corin, i have successfully unpacked the tars into a diectroy, and changed the directory, before doing the make command.

What I did:
Opened the Terminal (the package already unpacked)
Entered cd /directory name/ (already at base dir)
Entered the configure command, no errors
Entered the make command and the error:
"make: *** No targets specified and no makefile found. Stop."

NOTE: I am in the directory where there is a 'Makefile'
The Makefile is often created as a result of what happens during the configure stage... which brings me to ask: did you type ./configure (yes, dot forwardslash configure)? If not, then from here stem your problems. configure is a 'program' (actually a script, but that's splittin hairs) in the directory you just created by unpacking the files. To run programs in the current directory in Linux, you need to put a ./ in front of the filename. Try it.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
SuSE installation (program installation, not os) jasonmantey Linux - Newbie 4 04-15-2004 02:22 PM
A program not working in one login Sharko Red Hat 2 03-19-2004 09:26 AM
Mandrake 9.2 installation program crashes in the final step of the installation iqbala Mandriva 0 12-03-2003 01:59 PM
vsftpd is pissin me off - any help plz cyph3r7 Linux - Software 3 10-20-2003 09:45 AM
aterm pissin me off... acid_kewpie Linux - Software 9 11-29-2002 12:13 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 08:10 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration