I have CEDET 1.0pre7 set up with emacs 23.1, and I want to use it to manage irrlicht programs. I am pretty new at writing non-academic C++ code, and makefiles. I got the following makefile to work for me:
game.exe: game.o
g++ game.o -o game.exe -L "D:/irrlicht/irrlicht-1.7.1/lib/Win32-gcc/" -l Irrlicht
game.o: game.cpp
g++ -c game.cpp -o game.o -I"D:/irrlicht/irrlicht-1.7.1/include"
How do I set up CEDET so that it will make this for me? I do not know how to add in libraries, and adding the irrlicht include path to system-include has done nothing.