aboutsummaryrefslogtreecommitdiffstats
path: root/emulator/qemud/Android.mk
blob: 5666a74a1e1485f2fd7c864ebc4fbc067ba40f60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright 2008 The Android Open Source Project

# We're moving the emulator-specific platform libs to
# development.git/tools/emulator/. The following test is to ensure
# smooth builds even if the tree contains both versions.
#
ifndef BUILD_EMULATOR_QEMUD
BUILD_EMULATOR_QEMUD := true

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= \
	qemud.c


LOCAL_SHARED_LIBRARIES := \
	libcutils \

LOCAL_MODULE:= qemud
LOCAL_MODULE_TAGS := debug

include $(BUILD_EXECUTABLE)

endif # BUILD_EMULATOR_QEMUD