tags:

views:

60

answers:

2

Hi there, can anyone point me in the direction of a good tutorial on how makefiles work and also how to start a basic program from scratch using eclipse? I am using eclipse version 3.4.1 for fedora and C++. Thanks in advance.

+3  A: 

CDT is the plugin used in eclipse for C++ development. Follow the link for a quick project creation tutorial. The same link has some information on how Eclipse uses makefiles.

nathan
Thank you this is exactly what I was looking for.
aHunter
A: 

I really liked this makefile tutorial, it's quick and useful: http://sites.google.com/site/michaelsafyan/coding/resources/how-to-guides/how-to-write-a-makefile

Patilune