mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-25 06:09:50 +00:00
a832ca0555
- Results pushed to http://radare.org/farm
13 lines
258 B
Bash
Executable File
13 lines
258 B
Bash
Executable File
#!/bin/sh
|
|
mad list >/dev/null 2>&1
|
|
if [ $? = 0 ]; then
|
|
make clean
|
|
echo './configure --without-ssl --prefix=/usr --with-little-endian' | mad sh
|
|
echo make | mad sh
|
|
cd maemo
|
|
make
|
|
else
|
|
echo "Cannot find 'mad'. Please install QtSDK or QtCreator"
|
|
exit 1
|
|
fi
|