LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 01-08-2011, 03:30 AM   #1
SkyerSK
Member
 
Registered: Oct 2010
Location: Europe
Distribution: Gentoo
Posts: 206

Rep: Reputation: 10
make[1]: Nothing to be done for `all-am' problem while using make


Hello,
I've been trying to install several different programs in time, but in some of them, while running make (or sudo make), I get errors similar to: (this one was while installing chmlib)
Code:
Making all in src
make[1]: Entering directory `/home/user/Desktop/chmlib-0.40/src'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/user/Desktop/chmlib-0.40/src'
make[1]: Entering directory `/home/user/Desktop/chmlib-0.40'
make[1]: Nothing to be done for `all-am'.
make[1]: Leaving directory `/home/user/Desktop/chmlib-0.40'
Could you please tell me how can I solve this, or where is the problem? Thanks.
 
Old 01-08-2011, 03:52 AM   #2
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
Hello,

this are no errormessages. Didn't the programs compile/install correctly?

Markus
 
Old 01-08-2011, 05:32 AM   #3
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
'chmlib-0.40' : When you run 'make', everything is compiled in two seconds.

? May be you didn't notice, what happened, and did 'make' another time.
Which is the only way, you will get the "information / message" :
"" make[1]: Nothing to be done for `all-am'.""

Please try : 'make clean', and then watch 'make' again.


In some other applications there are really nothing to do, when you run make.
They will also reply : 'Nothing to be done for all..' or similar.

..
 
Old 01-08-2011, 07:48 AM   #4
SkyerSK
Member
 
Registered: Oct 2010
Location: Europe
Distribution: Gentoo
Posts: 206

Original Poster
Rep: Reputation: 10
Markush: I am not sure, that's the thing. It first happened to me when I was installing alsa-oss, and these audio things are kinda buggy for me, because I am using older motherboard now. So I am not sure....
Knudfl: Ok, did it. It looks like it compiler everything right, except the "default" (where is my current path) directory, which again, gives me "Nothing to do" error. I guess it's done correct then, or not?

Thanks for your answers.
 
Old 01-08-2011, 01:02 PM   #5
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Quote:
except the "default"
Please explain, what it means.


Quote:
(where is my current path) directory
I also do not understand, what you mean with this.

..
 
Old 01-08-2011, 02:44 PM   #6
SkyerSK
Member
 
Registered: Oct 2010
Location: Europe
Distribution: Gentoo
Posts: 206

Original Poster
Rep: Reputation: 10
Knudfl: I am sorry for my English, I am not nationally speaking it. So, by "default" directory or current path I mean current working (active) directory, the one, which is the result of using pwd command. hope it's better

Last edited by SkyerSK; 01-08-2011 at 02:53 PM.
 
Old 01-08-2011, 03:20 PM   #7
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
If the right files are present : Nothing to worry about.

'ls chmlib-0.40/src/.libs/' should reply ""chm_lib.o libchm.a libchm.la@
libchm.lai libchm.so@ libchm.so.0@ libchm.so.0.0.0* lzx.o""


There is no default location for building applications / libraries.
The most used is /home/<name>/tmp/<app>/ or similar.
Directories outside /home/<name> : Not meant for building.

A directory does not turn into "active" or "working", when you use it.
A directory is just a placeholder for some files.
( EDIT : The currently used directory ( $(pwd) ) is named "working directory".)

..

Last edited by knudfl; 01-09-2011 at 07:05 AM.
 
Old 01-09-2011, 03:14 AM   #8
SkyerSK
Member
 
Registered: Oct 2010
Location: Europe
Distribution: Gentoo
Posts: 206

Original Poster
Rep: Reputation: 10
eh, thanks for explanation. Also, installation seems to be successful, so problem is solved. Thanks everyone who participated.

About the directories - well, I was always told that current working directory of shell is really called current working directory. Please, take a look
on these documents (found them by google): http://www.comptechdoc.org/os/linux/..._ugbasics.html, http://tldp.org/LDP/abs/html/internal.html, search
for "current working directory.
 
1 members found this post helpful.
Old 01-09-2011, 04:53 AM   #9
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
Hello SykerSK,

I'm happy to read that you've found an answer to your question, please don't forget to use the "Thread Tools" and mark this thread as "SOLVED".

Markus
 
Old 01-10-2011, 09:03 AM   #10
SkyerSK
Member
 
Registered: Oct 2010
Location: Europe
Distribution: Gentoo
Posts: 206

Original Poster
Rep: Reputation: 10
Oh, ok, thanks, I forgot to do so. (It's done now).
 
  


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
Help needed for make file problem : make: *** No rule to make target `flash', needed rameshsatyavaram Linux - Newbie 3 09-11-2008 02:13 AM
Make Trouble linking some fortran code Make file problem? any ideas? TheBrick Linux - General 0 05-17-2006 11:21 AM
Problem with Configure, Make, Make Install n8tgc Linux - Newbie 2 07-13-2004 03:16 PM
make clean, make dep problem carscht Linux - Newbie 2 02-21-2004 10:32 AM
make dep,make clean,make bzImage problem Babba Linux - Newbie 2 01-08-2003 03:49 AM

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

All times are GMT -5. The time now is 09:03 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