I have no idea what linux distribution "ubuntu centOS" is. Ubuntu and CentOS are two different distributions.
To answer the question in the header: To install make in ubuntu you have to install build-essentials
sudo apt-get install build-essential
Answer from steffenhk on Stack OverflowMake and build utilities on CentOS/RHEL? - Stack Overflow
software installation - How do you install Make from source? - Unix & Linux Stack Exchange
makefile - How to use make to install an application on Cent-OS? - Stack Overflow
linux - What are makefiles, 'make install', etc.? - Stack Overflow
Videos
Run the command:
sudo apt-get install build-essential
Chances are you will need things like gcc to actually do the building so you might as well install those as well. The build-essential package will install other tools used along with make.
sudo apt-get update
sudo apt-get -y install make
(-y = answer 'yes' to any prompts)
Check the installed version:
make -v
Well, exactly what it says: there is no file named configure. Are you in the right directory? Did you read the README or INSTALL file that comes with the package?
I wonder if this is what you want though. No offense, but if you can't understand the error message, compiling a videodriver might not be the right approach. What is it what you want to accomplish? Intel drivers are builtin, so you should have a good reason for this.
You need to CD to the directory that contains the configure file. For example if the file is in /home/your-username/Documents/folder-containing-configure, you would open the Terminal with Ctrl-Alt-T, then type the path to the directory or paste it like so:
cd /home/your-username/Documents/folder-containing-configure
Then use ./configure.
./configure is a program that looks at your system configuration and builds some of the system dependencies for your program.
make is a program that looks at your Makefile (which was probably built by configure) and uses the rules in there to build your program. The Makefile can have multiple "targets" which are rule sets to do different things - the default is usually just to compile and link your program. When you say make with no arguments, it runs the default target. When you say make install you're running the install target, which usually installs the binaries or libraries built by the default target in their final locations. clean is another common Makefile target that deletes all the generated files like intermediate object files.
make is part of the build system commonly used in Unix-type systems - binutils.
It looks at make files which hold configuration information and build targets.
Specifically -
- ./configure - this is a script that sets up the environment for the build
- make - calls
makewith the default build target. Normally builds the application. - make install - calls
makewith theinstallbuild target. Normally installs the application.