Sara
Sara

Reputation: 2436

Makefile in linux

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

Answers (1)

sanjay
sanjay

Reputation: 354

try

$>sudo apt-get install gmake

if you have it already installed run from the shell

$>gmake

Upvotes: 1

Related Questions