Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
41
rated 0 times [  41] [ 0]  / answers: 1 / hits: 395916  / 3 Years ago, fri, august 20, 2021, 12:15:05

In short while I run the make command it says:



nir@nir:~/Downloads/xf86-video-intel-2.17.0$ make
make: *** No targets specified and no makefile found. Stop.


I looked inside the folder-xf86-video-intel-2.17.0 and there is a file named "Makefile.in"
it supposed to be a in file, right?


More From » makefile

 Answers
0

That happens because there is no file named Makefile in that directory. To create that Makefile, you need to execute



$ ./configure


The configure script determines if your system has all the dependencies necessary to compile the application. If a dependency is not found, the configure will fail and the Makefile's will not be created. To solve that, you must install all the dependencies needed by the application.



The application xf86-video-intel seems to be provided by the xserver-xorg-video-intel package, and its dependencies may be easily installed by running



$ sudo apt-get build-dep xserver-xorg-video-intel


For more information, you might want to read the README or INSTALL files.


[#40440] Saturday, August 21, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
looweets

Total Points: 52
Total Questions: 114
Total Answers: 111

Location: Turkmenistan
Member since Sat, Apr 16, 2022
2 Years ago
;