blob: 136ccc993c86924b1e33e74810009ed2e2843af5 [file] [log] [blame]
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -08001#!/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 $* && \
David 'Digit' Turner46be4872009-06-04 16:07:01 +020011make clean && \
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080012make -j4 && \
13echo "Done. !!"