https://github.com/simongog/sdsl-lite
Raw File
Tip revision: d7eda41c30bc80d8219616327d081ba16e8d69c6 authored by Simon Gog on 13 October 2014, 11:59:01 UTC
Renaming hybrid_bitvector to hyb_bitvector.
Tip revision: d7eda41
uninstall.sh
#!/bin/bash
# This script removes all installed  sdsl files
# on a LINUX or Mac OS X system

CUR_DIR=`pwd`
SDSL_INSTALL_PREFIX=${HOME}
if [ $# -ge 1 ]; then
	SDSL_INSTALL_PREFIX=${1}
fi

echo "Library files will be removed from"
echo "'${SDSL_INSTALL_PREFIX}/lib' and"
echo "'${SDSL_INSTALL_PREFIX}/include'"


cd "${CUR_DIR}"
OLD_DIR="$( cd "$( dirname "$0" )" && pwd )" # gets the directory where the script is located in
cd "${OLD_DIR}"
OLD_DIR=`pwd`

cd build # change into the build directory
if [ $? != 0 ]; then
	exit 1
fi

make uninstall

if [ $? != 0 ]; then
    exit 1
fi

./clean.sh # clean-up build directory
if [ $? != 0 ]; then
	exit 1
fi

echo "Installed sdsl files were removed."
back to top