radare2/sys/dist-all.sh

20 lines
333 B
Bash
Raw Normal View History

#!/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