Hmm never used Eclipse. I use emacs, GNU "autotools" and then makefiles...
I don't know the package you are working on, but usually, if you download a major Linux application source package, it is already "autotooled" (if I can call it that) and you then use the autotools to generate the makefile. You then call the makefile to compile the application.
E. g. something like this:
1. You download the source package for an application.
2. You untargz / untarbzip2 it to a directory.
3. In that directory, you do
./configure
make
to build the application. ./configure "calls" the autotools script 'configure.sh" that creates the makefile for you. "make" runs the make binary on the "Makefile" that the ./configure step produced, which calls the cc / cxx to compile the package.
4. You run the application executable - depending on the package, it might go to different locations - /bin of the source directory, or simply directly in the source directory, it depends.
E. g. to develop on that package, your sequence will then continue:
4. Edit the source file you want to edit, save it.
5. Run make to compile the "new" binary
6. Run the binary that is the product of your edited code
Hope this helps. Post again if you need more detailed info.
|