Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an Eclipse project I've been working on for some time now, and I'd like to open source it. But to do that I'd like to have a clean Makefile like the majority of other open source programs. I understand I could make my own, but it would be better if Eclipse could manage it for me. Getting Eclipse to generate a CMake file would be even better, but I can settle for a plain makefile if that is easiest. So, how can I get Eclipse to do this? There are a few posts on the internet that suggest selecting "Managed make" when creating a project, but they were from a few years ago and are outdated. When I try to create a C project, there is the option to create a "Makefile project", but it creates the makefile in a folder called "Linux GCC" and makes everything cluttered. Any suggestions?

share|improve this question
I've always used the autotools to generate Makefiles – LB . Aug 13 '09 at 20:09
Well after downgrading to Gandymede I was able to install autotools in Eclipse. But could you explain how to set everything up? Eclipse can get very confusing to me sometimes. I would put the explanation in an answer so I can mark it as right. – Cory Walker Aug 13 '09 at 23:48
2  
I am using CMake (no more automake hell for me ;-)) and I maintain my CMakeLists file myself. CMakeBuilder seems very outdated, as is the eclipse project generator from CMake itself. Maintaining CMakeLists is generally easy and CMake Editor plugin makes this even easier, but I would like to have a managed make for eclipse, so I am interested in answer too :-) – hirschhornsalz Aug 17 '09 at 9:44

3 Answers

I've been a *nix guy for 25+ years and am a big fan of make. However, making your Eclipse project dependent upon make is going to exclude the Mac and Windows community. Why don't you just export the Eclipse project and open source it as an Eclipse project? Then users can can have it ready to extend if they choose. You didn't specify the language your project is written in, if it's Java (pretty common for Eclipse) why not create an ant build file for the project?

Just a thought.

share|improve this answer
2  
Make works on Mac too. – AlBlue Aug 17 '09 at 7:03

Would a CMakeBuilder eclipse plugin, associated with this tutorial be a good fit for what you are trying to do?

The end result would be something like:

alt text

share|improve this answer
That plugin doesn't seem to be supported by Gandymede or Galileo. Gandymede spits out many typecast errors and Galileo can't even see it when add the update site. – Cory Walker Aug 13 '09 at 22:55
up vote 1 down vote accepted

I ended up just creating a CMake project by hand. CMake files are really not that hard to make, and it's a lot easier than trying to get Eclipse to do it for you. Plus, they're cross-platform.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.