radare2/sys/uninstall.sh

12 lines
155 B
Bash
Raw Normal View History

#!/bin/sh
# find root
2015-06-17 10:39:19 +08:00
cd "$(dirname "$PWD/$0")" ; cd ..
MAKE=make
gmake --help >/dev/null 2>&1
[ $? = 0 ] && MAKE=gmake
${MAKE} purge
${MAKE} deinstall