2009-05-13 22:10:04 +00:00
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Shared library
|
|
|
|
#
|
|
|
|
|
2009-05-22 19:06:27 +00:00
|
|
|
LOCAL_MODULE:= libacc
|
|
|
|
LOCAL_SRC_FILES := acc.cpp
|
2009-05-13 22:10:04 +00:00
|
|
|
|
2009-05-22 19:06:27 +00:00
|
|
|
ifeq ($(TARGET_ARCH),arm)
|
|
|
|
LOCAL_SRC_FILES += disassem.cpp
|
|
|
|
endif
|
|
|
|
|
2009-06-08 21:34:26 +00:00
|
|
|
LOCAL_SHARED_LIBRARIES := libdl libcutils
|
2009-05-22 19:06:27 +00:00
|
|
|
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|