LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   'make' and 'make install' commands dont work on my system? (https://www.linuxquestions.org/questions/linux-newbie-8/make-and-make-install-commands-dont-work-on-my-system-168281/)

ginda 04-09-2004 04:22 PM

'make' and 'make install' commands dont work on my system?
 
I am running suse 8.2

try to install apps the way they want me to using these commands

./configure works

but

make and make install dont?

help someone plsssssssss

kooch 04-09-2004 04:24 PM

what do you mean by "don't work"?

do you have make installed?

ginda 04-09-2004 04:34 PM

im tryin to install guard dog firewall and some apps that install very similier..
it asks me to go to directory then type ./configure then asks me to type make this wat comes up after i press enter

make: *** No targets specified and no makefile found. Stop.


same thing for make install?

i dont kno wat make is?or where to get it from sorry im very new to linux

Komakino 04-09-2004 04:49 PM

well is there a file called Makefile in the program's directory?

jschiwal 04-09-2004 11:16 PM

There was an error during the ./configure stage. This program produces the file Makefile that the make program uses. You may be missing a needed library. Look at the config.log file to find out what went wrong.

ginda 04-11-2004 08:21 AM

there is a makefile

makefile.am
makefile.in

files like that?

make and make install just dose not work at all

Mahony 04-11-2004 08:50 AM

<_<

Like jschiwal said, check the config.log.

jschiwal 04-18-2004 10:39 AM

Those files are not the makefile. It will be called 'Makefile' after configure finishes.

shobhit 04-18-2004 10:46 AM

well to use the existing make file use
make -f <the file name>
since there is a problem with configure the correct make file generally
Makefile
has not been generated.

pH* 04-18-2004 11:17 AM

As said, the cause of your problem seems to be the fact that there was some sort of error during the ./configure process. You'll need to post the results of that (from the file config.log within the directory you're working in), so you can get help figuring out what exectly error'd out during configure...

Those things that look like they "might" be problems/errors during the configure stage usually are. I know when I first started using source, when I got an error -- and I really didn't know what to do if I 'did' get an error -- I just ignored it, crossed my fingers and prayed something would fall into place. Unfortunately it's not like that. It's not a problem either, though. The process generates errors, we examine the errors, take care of the problem, then reconfigure (and if you're nutty, hope for new errors to play with!).

At any rate, the first cause of your problem is the configure stage errors, not the 'make' or 'make install' stages.


All times are GMT -5. The time now is 03:41 PM.