LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Using the 'make' command (https://www.linuxquestions.org/questions/linux-software-2/using-the-make-command-500210/)

m3tal 11-09-2006 09:52 PM

Using the 'make' command
 
I'm trying to install a plugin for gtkpod for my ipod video... Everything works perfect until the point where I type in

Code:

make
after

Code:

./configure
It says
Code:

bash: make: command not found
Does this just mean I have to be root to do the install or is it just screwing up? THanks.

chakkerz 11-09-2006 09:57 PM

no, it means you have to check that you have make installed, and if not install it

Quote:

[chakkerz@tigerente ~]$ which make
/usr/bin/make
[chakkerz@tigerente ~]$ rpm -q --whatprovides make
make-3.81-1.1
if you are running something that has yum you would run
Quote:

sudo yum install make

m3tal 11-09-2006 10:09 PM

Thanks for the help man;)

matthewg42 11-10-2006 03:26 AM

By the way, if you've not got make installed, it's probable that you don't have a lot of other development tools which you may need. Make sure you have the C compiler, gcc installed, and possibly the C++ part, g++. Also check you have autoconf, automake, libtool and binutils.

In Ubuntu these basic software building tools can easily be installed by installing the package called build-essential.

When you read the README and/or INSTALL files for the thing you are trying to build, you may see a list of dependencies which need to exist on your machine before you can do the build. Be aware that you'll need the development versions of these packages. Most distros provide two versions of packages like libraries - the main package being suitable to run programs which use it, the other (usually with a -dev or -devel suffix on the package name) is needed to build programs which use the package.


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