blob: 7467bf29d1daeb64607e9454b9fb5ab20be01520 [file] [log] [blame]
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -08001# Copyright 2006 The Android Open Source Project
2
3# Setting LOCAL_PATH will mess up all-subdir-makefiles, so do it beforehand.
Dima Zavin7e033162011-04-20 18:46:23 -07004SUBDIR_MAKEFILES := $(call all-named-subdir-makefiles,modules tests)
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -08005
6LOCAL_PATH:= $(call my-dir)
7include $(CLEAR_VARS)
8
9LOCAL_SHARED_LIBRARIES := libcutils
10
11LOCAL_INCLUDES += $(LOCAL_PATH)
12
Jeff Brown1cfa3842011-07-11 22:12:23 -070013LOCAL_CFLAGS += -DQEMU_HARDWARE
14QEMU_HARDWARE := true
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080015
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080016LOCAL_SHARED_LIBRARIES += libdl
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080017
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080018LOCAL_SRC_FILES += hardware.c
19
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080020LOCAL_MODULE:= libhardware
21
22include $(BUILD_SHARED_LIBRARY)
Mathias Agopiana8a75162009-04-10 14:24:31 -070023
Dima Zavin7e033162011-04-20 18:46:23 -070024include $(SUBDIR_MAKEFILES)