Reputation: 2436
I'm trying to install a benchmark in Linux. Running the make
command I have some errors. In the MakeFile it is written This Makefile requires GNU make.
what does it mean? How should I run GNU make?
Upvotes: 0
Views: 308
Reputation: 354
try
$>sudo apt-get install gmake
if you have it already installed run from the shell
$>gmake
Upvotes: 1