Hi
I've updated the SFML makefiles to be able to generate static builds.
However, I'm not an expert in makefiles nor static builds on Linux, so I need your opinion :
1. Is it safe to include external libraries directly into SFML ones, as I do on Windows ? Or libraries can be too different from a Linux to another ?
2. If it's not safe, what would be the best solution to prevent users from having to link to every external lib used by SFML ? In other words, I'd like to avoid that :
g++ app.cpp -o app -lpthread -lX11 -lGL -lXrandr -lfreetype -lsfml-graphics -lsfml-window -lsfml-system
Thanks