mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-27 07:55:14 +00:00
26 lines
573 B
Bash
Executable File
26 lines
573 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SDKDIR=/tmp/r2-sdk
|
|
if [ -n "$1" ]; then
|
|
if [ -f "$1" ]; then
|
|
echo "Target directory exists. Cant build the SDK in there"
|
|
exit 1
|
|
fi
|
|
SDKDIR="$1"
|
|
fi
|
|
|
|
# Builds an SDK to build stuff for rbin
|
|
export CFLAGS="-Os"
|
|
make mrproper
|
|
cp -f plugins.bin.cfg plugins.cfg
|
|
#./configure-plugins
|
|
./configure --prefix="$PREFIX" --with-nonpic --without-pic || exit 1
|
|
#--disable-loadlibs || exit 1
|
|
make -j8 || exit 1
|
|
rm -rf "${SDKDIR}"
|
|
mkdir -p "${SDKDIR}"/lib
|
|
rm -f libr/libr.a
|
|
cp -rf libr/include "${SDKDIR}"
|
|
FILES=`find libr shlr -iname '*.a'`
|
|
cp -f ${FILES} "${SDKDIR}"/lib
|