9003b113d1
Bug: 8580410 Change-Id: I24645233148f70c57d2f2b3a46952cb2a1aea9ba
24 lines
534 B
Makefile
24 lines
534 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 liblog
|
|
|
|
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)
|