1 # Copyright 2008 The Android Open Source Project 2 3 # We're moving the emulator-specific platform libs to 4 # development.git/tools/emulator/. The following test is to ensure 5 # smooth builds even if the tree contains both versions. 6 # 7 ifndef BUILD_EMULATOR_QEMUD 8 BUILD_EMULATOR_QEMUD := true 9 10 LOCAL_PATH:= $(call my-dir) 11 include $(CLEAR_VARS) 12 13 LOCAL_SRC_FILES:= \ 14 qemud.c 15 16 17 LOCAL_SHARED_LIBRARIES := \ 18 libcutils \ 19 20 LOCAL_MODULE:= qemud 21 LOCAL_MODULE_TAGS := debug 22 23 include $(BUILD_EXECUTABLE) 24 25 endif # BUILD_EMULATOR_QEMUD