I try to build a project with SFML 2.0
g++ src/*.cpp -o test -L./SFML-2.0/lib/ -lsfml-graphics -lsfml-window
And I got undefined references on everything coming from SFML.
Thanks
EDIT: I tried to first compile my sources with -c option, it compiles, but when I launch it, g++ tells me he doesnt find libsfml-window.so.1.6 - The problem is that I'm not using 1.6 at all...
EDIT2: By the way, SFML-2.0 has no Makefile in it