Setting up an emacs EDE-project with libraries
I already searched the emacs documentation, the cedet website and here on SO in vain. If my question is already been answered, fell free to (point out to an existing answer and) close it. I'm trying to familiarize myself with EDE-projects in emacs. So far I can set up a simple project with one or more files. Now I'd like to separate a part of my code and pack it into a library. Basically I'm trying to achieve the same thing I get with the following hand-written naive Makefile: matrix: g++ -c -o lib/libmatrix.o lib/matrix.cpp -std=c++0x ar crf lib/libmatrix.a lib/libmatrix.o num: g++ num.cpp