• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Error with the makefile in eclipse

 
Ranch Hand
Posts: 189
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear experts,

i am actually running my program with my makefile, i created this project with new->project->makefile->empty project

my source file is abc.c


makefile for the same is



when i build this project i get the following error



what is this error indicates i am not getting please help me. how to solve this.
 
Saloon Keeper
Posts: 27808
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
From the looks of it, the "Make" variable isn't set, so instead of generating the command:


it's generating:


And, since you don't have a program named "abc" in the path, the attempt fails. Which is as well, since that wasn't what you wanted anyway.

You'll need to find out how to set "Make" to point to your "make" program. In linux, that's often /usr/bin/make or /usr/bin/gmake. In Windows, I have no idea.
 
vin Hari
Ranch Hand
Posts: 189
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you for the reply Tim,

i got that problem solved my new question is even though now it complies fine and runs with output
it gives me following error at the end.



when it is successfully creating the exe why it is showing following error


and for some applications it is



please tell me what is the significance of it.
thanks in advance.


 
reply
    Bookmark Topic Watch Topic
  • New Topic