run.sh 222 Bytes
Newer Older
Savva Golubitsky's avatar
Savva Golubitsky committed
1 2 3 4 5 6
g++ -c -fPIC  printers.cpp -o printers.o -I./dev ; g++ printers.o -shared -o libprinters.so; 
if g++ ./template.cpp -o template.out -I./dev ./dev/core/anymap.cpp  -ldl; then
./template.out;
else 
 echo "Not Compiled!";
fi;