Building stuff is not finished yes, but anyway you can compile sources using these commands. ./configure make After this, you can manualy build shared library by calling particular building command. Note, that this will be part of standart libplaton building stuff in near future. objs=`find ./ -type f -name *.o`; ld -shared -o libplaton.so.0.1 $objs; ar r libplaton.a $objs; Nepto [9/10/2002]