Make Command not working after build-essential installed

The name of the pictureThe name of the pictureThe name of the pictureClash 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?







share|improve this question


















  • 2




    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














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?







share|improve this question


















  • 2




    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












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?







share|improve this question














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?









share|improve this question













share|improve this question




share|improve this question








edited May 15 at 6:48









muru

129k19271461




129k19271461










asked May 15 at 5:08









CMcGoo

42




42







  • 2




    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












  • 2




    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







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










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






share|improve this answer




















  • 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










Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);








 

draft saved


draft discarded


















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






























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






share|improve this answer




















  • 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














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






share|improve this answer




















  • 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












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






share|improve this answer













Is there something else I'm missing?




This is because there is no Makefile present in the directory where you are running make command







share|improve this answer












share|improve this answer



share|improve this answer










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
















  • 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












 

draft saved


draft discarded


























 


draft saved


draft discarded














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













































































Popular posts from this blog

Unable to execute new pre-installation script (/var/lib/dpkg/tmp.ci/preinst)

Running the scala interactive shell from the command line

Do not install recommended packages of dependencies