platform_hardware_libhardware/Android.mk
Jeff Brown 1cfa384b91 Remove the simulator target from all makefiles.
Bug: 5010576

Change-Id: I19222871077be62d2b6a4a215f251675389ffdb4
2011-07-11 22:12:23 -07:00

24 lines
527 B
Makefile

# Copyright 2006 The Android Open Source Project
# Setting LOCAL_PATH will mess up all-subdir-makefiles, so do it beforehand.
SUBDIR_MAKEFILES := $(call all-named-subdir-makefiles,modules tests)
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SHARED_LIBRARIES := libcutils
LOCAL_INCLUDES += $(LOCAL_PATH)
LOCAL_CFLAGS += -DQEMU_HARDWARE
QEMU_HARDWARE := true
LOCAL_SHARED_LIBRARIES += libdl
LOCAL_SRC_FILES += hardware.c
LOCAL_MODULE:= libhardware
include $(BUILD_SHARED_LIBRARY)
include $(SUBDIR_MAKEFILES)