Make Command not working after build-essential installed

Clash Royale CLAN TAG#URR8PPP up vote
0
down vote
favorite
I'm new to Ubuntu. When I run the make command, I get this error:
make: *** No targets specified and no make ile found. Stop.
I saw others recommended using
sudo apt-get install build-essential
I did this and still get the same message. Is there something else I'm missing?
compiling make
add a comment |Â
up vote
0
down vote
favorite
I'm new to Ubuntu. When I run the make command, I get this error:
make: *** No targets specified and no make ile found. Stop.
I saw others recommended using
sudo apt-get install build-essential
I did this and still get the same message. Is there something else I'm missing?
compiling make
2
What did you expectmaketo do?
â muru
May 15 at 6:49
Can you please explain what you are trying to do? Are you trying to compile software from source code? If yes, then what software? Usually with GNU software you'll have to do./configureand thenmakein the directory that contains the sources. See if there's a README with the software that explains how to compile it.
â Jesper
May 15 at 9:45
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm new to Ubuntu. When I run the make command, I get this error:
make: *** No targets specified and no make ile found. Stop.
I saw others recommended using
sudo apt-get install build-essential
I did this and still get the same message. Is there something else I'm missing?
compiling make
I'm new to Ubuntu. When I run the make command, I get this error:
make: *** No targets specified and no make ile found. Stop.
I saw others recommended using
sudo apt-get install build-essential
I did this and still get the same message. Is there something else I'm missing?
compiling make
edited May 15 at 6:48
muru
129k19271461
129k19271461
asked May 15 at 5:08
CMcGoo
42
42
2
What did you expectmaketo do?
â muru
May 15 at 6:49
Can you please explain what you are trying to do? Are you trying to compile software from source code? If yes, then what software? Usually with GNU software you'll have to do./configureand thenmakein the directory that contains the sources. See if there's a README with the software that explains how to compile it.
â Jesper
May 15 at 9:45
add a comment |Â
2
What did you expectmaketo do?
â muru
May 15 at 6:49
Can you please explain what you are trying to do? Are you trying to compile software from source code? If yes, then what software? Usually with GNU software you'll have to do./configureand thenmakein the directory that contains the sources. See if there's a README with the software that explains how to compile it.
â Jesper
May 15 at 9:45
2
2
What did you expect
make to do?â muru
May 15 at 6:49
What did you expect
make to do?â muru
May 15 at 6:49
Can you please explain what you are trying to do? Are you trying to compile software from source code? If yes, then what software? Usually with GNU software you'll have to do
./configure and then make in the directory that contains the sources. See if there's a README with the software that explains how to compile it.â Jesper
May 15 at 9:45
Can you please explain what you are trying to do? Are you trying to compile software from source code? If yes, then what software? Usually with GNU software you'll have to do
./configure and then make in the directory that contains the sources. See if there's a README with the software that explains how to compile it.â Jesper
May 15 at 9:45
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
4
down vote
Is there something else I'm missing?
This is because there is no Makefile present in the directory where you are running make command
If it helps at all, this was to download redshift. In the source package there were two files called "Makefile" one was a ".in"' and I don't remember what the other was. In the README file, it simply said to do the "./bootstrap" and then "./configure". I manged to do that and then is said to just run "make". Should those Makefiles be in some other format?
â CMcGoo
May 17 at 17:16
@CMcGoo You must be running make in some other directory .
â noone
May 17 at 18:44
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
Is there something else I'm missing?
This is because there is no Makefile present in the directory where you are running make command
If it helps at all, this was to download redshift. In the source package there were two files called "Makefile" one was a ".in"' and I don't remember what the other was. In the README file, it simply said to do the "./bootstrap" and then "./configure". I manged to do that and then is said to just run "make". Should those Makefiles be in some other format?
â CMcGoo
May 17 at 17:16
@CMcGoo You must be running make in some other directory .
â noone
May 17 at 18:44
add a comment |Â
up vote
4
down vote
Is there something else I'm missing?
This is because there is no Makefile present in the directory where you are running make command
If it helps at all, this was to download redshift. In the source package there were two files called "Makefile" one was a ".in"' and I don't remember what the other was. In the README file, it simply said to do the "./bootstrap" and then "./configure". I manged to do that and then is said to just run "make". Should those Makefiles be in some other format?
â CMcGoo
May 17 at 17:16
@CMcGoo You must be running make in some other directory .
â noone
May 17 at 18:44
add a comment |Â
up vote
4
down vote
up vote
4
down vote
Is there something else I'm missing?
This is because there is no Makefile present in the directory where you are running make command
Is there something else I'm missing?
This is because there is no Makefile present in the directory where you are running make command
answered May 15 at 6:29
noone
844420
844420
If it helps at all, this was to download redshift. In the source package there were two files called "Makefile" one was a ".in"' and I don't remember what the other was. In the README file, it simply said to do the "./bootstrap" and then "./configure". I manged to do that and then is said to just run "make". Should those Makefiles be in some other format?
â CMcGoo
May 17 at 17:16
@CMcGoo You must be running make in some other directory .
â noone
May 17 at 18:44
add a comment |Â
If it helps at all, this was to download redshift. In the source package there were two files called "Makefile" one was a ".in"' and I don't remember what the other was. In the README file, it simply said to do the "./bootstrap" and then "./configure". I manged to do that and then is said to just run "make". Should those Makefiles be in some other format?
â CMcGoo
May 17 at 17:16
@CMcGoo You must be running make in some other directory .
â noone
May 17 at 18:44
If it helps at all, this was to download redshift. In the source package there were two files called "Makefile" one was a ".in"' and I don't remember what the other was. In the README file, it simply said to do the "./bootstrap" and then "./configure". I manged to do that and then is said to just run "make". Should those Makefiles be in some other format?
â CMcGoo
May 17 at 17:16
If it helps at all, this was to download redshift. In the source package there were two files called "Makefile" one was a ".in"' and I don't remember what the other was. In the README file, it simply said to do the "./bootstrap" and then "./configure". I manged to do that and then is said to just run "make". Should those Makefiles be in some other format?
â CMcGoo
May 17 at 17:16
@CMcGoo You must be running make in some other directory .
â noone
May 17 at 18:44
@CMcGoo You must be running make in some other directory .
â noone
May 17 at 18:44
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1036373%2fmake-command-not-working-after-build-essential-installed%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
2
What did you expect
maketo do?â muru
May 15 at 6:49
Can you please explain what you are trying to do? Are you trying to compile software from source code? If yes, then what software? Usually with GNU software you'll have to do
./configureand thenmakein the directory that contains the sources. See if there's a README with the software that explains how to compile it.â Jesper
May 15 at 9:45