radare2/sys/update.sh

24 lines
315 B
Bash
Raw Normal View History

#!/bin/sh
# find root
cd `dirname $PWD/$0` ; cd ..
# update
if [ -d .hg ]; then
hg pull -u
elif [ -d .git ]; then
git pull
fi
ccache --help 2>&1 > /dev/null
if [ $? = 0 ]; then
[ -z "${CC}" ] && CC=gcc
CC="ccache ${CC}"
export CC
fi
# build
./configure --prefix=/usr && \
make -j 4 && \
sudo make symstall