29 lines
447 B
Makefile
29 lines
447 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := etk
|
|
LOCAL_LIBRARIES := libzip
|
|
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
|
|
|
|
ifeq ($(DEBUG),1)
|
|
LOCAL_CFLAGS := -Wno-write-strings \
|
|
-Wall
|
|
else
|
|
LOCAL_CFLAGS := -Wno-write-strings \
|
|
-DMODE_RELEASE
|
|
endif
|
|
|
|
|
|
# load the common sources file of the platform
|
|
include $(LOCAL_PATH)/file.mk
|
|
|
|
LOCAL_SRC_FILES := $(FILE_LIST)
|
|
|
|
|
|
|
|
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|