Remove a sad trick that was used to smoothly move the platform-specific emulator modules from sdk/emulator/ to development/tools/emulator/system without creating build conflicts. Now that the sdk/ modules have been removed, we can get rid of the guard variable. Change-Id: I0261fcd6cdf6af7564106c5ab8d2b3bda001d567
17 lines
251 B
Makefile
17 lines
251 B
Makefile
# Copyright 2008 The Android Open Source Project
|
|
|
|
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)
|