I was installing openssl library by hand using these commands:
wget http://openssl.org/source/openssl-1.0.0.tar.gz
tar -xvf openssl-1.0.0.tar.gz
cd openssl-1.0.0
./config --prefix=/home/<username>/.sys shared
make
make install
Now I need to install new version but I need to completely remove files from prefix folders
Can I just remove whole .sys folder or is there any special command?