You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
756 B

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
libLZF_SRC_FILES := \
lzf_c.c \
lzf_d.c
# Static library for host
# ========================================================
include $(CLEAR_VARS)
LOCAL_MODULE := liblzf
LOCAL_SRC_FILES := $(libLZF_SRC_FILES)
include $(BUILD_HOST_STATIC_LIBRARY)
# Static library for target
# ========================================================
include $(CLEAR_VARS)
LOCAL_MODULE := liblzf
LOCAL_SRC_FILES := $(libLZF_SRC_FILES)
include $(BUILD_STATIC_LIBRARY)
# JAR for host
# ========================================================
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_MODULE := liblzf
LOCAL_MODULE_TAGS := optional
include $(BUILD_HOST_JAVA_LIBRARY)