• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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#
7ifndef BUILD_EMULATOR_QEMUD
8BUILD_EMULATOR_QEMUD := true
9
10LOCAL_PATH:= $(call my-dir)
11include $(CLEAR_VARS)
12
13LOCAL_SRC_FILES:= \
14	qemud.c
15
16
17LOCAL_SHARED_LIBRARIES := \
18	libcutils \
19
20LOCAL_MODULE:= qemud
21LOCAL_MODULE_TAGS := debug
22
23include $(BUILD_EXECUTABLE)
24
25endif # BUILD_EMULATOR_QEMUD