radare2/sys/build.sh
pancake b60af6d878 * Initial implementation of sys/farm
- add missing sys/gtk.sh
* Define TODO for 0.8.6
* Add URL attribute in dot graphs for 'ag' command
  - as requested by @hteso for bokken
* Empty graphs are now printing nothing to stdout
  - same as above
2011-09-23 00:16:29 +02:00

19 lines
262 B
Bash
Executable File

#!/bin/sh
# find root
cd `dirname $PWD/$0` ; cd ..
ccache --help > /dev/null 2>&1
if [ $? = 0 ]; then
[ -z "${CC}" ] && CC=gcc
CC="ccache ${CC}"
export CC
fi
# build
if [ -f config-user.mk ]; then
make mrproper
fi
./configure --prefix=/usr && \
make -j 4