mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-08 14:20:19 +00:00
04483ee801
* Use git clone -q for a quieter experience
14 lines
408 B
Bash
Executable File
14 lines
408 B
Bash
Executable File
#!/bin/sh
|
|
if [ ! -f config-user.mk ]; then
|
|
printf "[*] Configuring the build system ... "
|
|
./configure > /dev/null || exit 1
|
|
fi
|
|
printf "[*] Checking out capstone... "
|
|
rm -rf shlr/capstone
|
|
make -C shlr capstone > /dev/null 2>&1 || exit 1
|
|
echo OK
|
|
printf "[*] Checking out vector35... "
|
|
rm -rf libr/asm/arch/arm/v35arm64/arch-arm64
|
|
make -C libr/asm/arch/arm/v35arm64 arch-arm64 > /dev/null || exit 1
|
|
echo OK
|