tags:

views:

1648

answers:

2

I have a project of multiple .c and .h files and i write my own Makefile. How to configure Eclipse to use my Makefile and my source files from their original locations?

+3  A: 

There is an option to create a project from existing makefiles: use the "Project Wizard" and select "Makefile project".

jldupont
@Stoiko: does my answer satisfy you?
jldupont
Does that let you edit your Makefile instead of having to do it Eclipse's way?
Peter Cordes
@Peter: you can edit your makefiles as you which and Eclipse doesn't touch it... at least that's how I have used it. Maybe there are esoteric options that I haven't touched yet :-)
jldupont
A: 

You can disable "Generate makefiles automatically" in eclipse project properties -> c/c++ build (builder settings.)

markovuksanovic