1#!/bin/bash 2# 3# this script is used to rebuild all QEMU binaries for the host 4# platforms. 5# 6# assume that the device tree is in TOP 7# 8 9cd `dirname $0` 10./android-configure.sh $* && \ 11make clean && \ 12make -j4 && \ 13echo "Done. !!" 14