radare2/sys/uninstall.sh
2015-06-16 22:39:19 -04:00

12 lines
155 B
Bash
Executable File

#!/bin/sh
# find root
cd "$(dirname "$PWD/$0")" ; cd ..
MAKE=make
gmake --help >/dev/null 2>&1
[ $? = 0 ] && MAKE=gmake
${MAKE} purge
${MAKE} deinstall