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 8LOCAL_PATH:= $(call my-dir) 9include $(CLEAR_VARS) 10 11LOCAL_SRC_FILES:= \ 12 qemud.c 13 14 15LOCAL_SHARED_LIBRARIES := \ 16 libcutils liblog 17 18LOCAL_MODULE:= qemud 19 20include $(BUILD_EXECUTABLE) 21