1 # the following test is made to detect that we were called
2 # through the 'm' or 'mm' build commands. if not, we use the
3 # standard QEMU Makefile
4 #
5 ifeq ($(DEFAULT_GOAL),droid)
6 LOCAL_PATH:= $(call my-dir)
7 include $(LOCAL_PATH)/Makefile.android
8 else
9 include Makefile.qemu
10 endif
11