radare2/sys/dist-all.sh
pancake c8e42425ab * Added sys/dist-all script
* Add make mrproper and version to r2-bindings
2011-10-24 11:38:33 +02:00

20 lines
333 B
Bash
Executable File

#!/bin/sh
cd `dirname $PWD/$0`/..
./configure --prefix=/usr
make dist
cd r2-bindings
./configure --prefix=/usr
make mrproper
cd python
make
cd ..
make dist
DD=/tmp/r2
rm -rf $DD
mkdir -p $DD
cp ../r2-bindings-`make version`.tar.gz $DD
cd ..
cp ../radare2-`make version`.tar.gz $DD
echo distribution tarballs have been copied to $DD