g++ -c -fPIC ./dev/core/anymap.cpp -o anymap.o -I./dev;
#g++ -c -fPIC  tests.cpp -o tests.o -I./dev;
# g++ -c -fPIC ./dev/iniparser/iniparser.cpp -o iniparser.o -I./dev;
#g++ tests.o anymap.o -shared -o libtest.so; rm tests.o anymap.o;
cd rls/;
if g++ $1 -o graph.out -I../dev ../dev/core/anymap.cpp -ldl; then
./graph.out;
else
 echo "Not Compiled!";
fi;