9 lines
200 B
Bash
Executable file
9 lines
200 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd `dirname $PWD/$0`
|
|
cd ../r2-bindings
|
|
make clean
|
|
./configure --enable-devel --prefix=/usr || exit 1
|
|
make || exit 1
|
|
make w32 CC=i486-mingw32-gcc CXX=i486-mingw32-g++ || exit 1
|
|
make w32dist
|