ewol/Sources/libetk/Generic.mk

29 lines
447 B
Makefile
Raw Normal View History

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := etk
LOCAL_LIBRARIES := libzip
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
2012-03-08 18:08:25 +01:00
ifeq ($(DEBUG),1)
2012-08-10 12:18:24 +02:00
LOCAL_CFLAGS := -Wno-write-strings \
2012-03-23 17:57:27 +01:00
-Wall
2012-03-08 18:08:25 +01:00
else
2012-08-10 12:18:24 +02:00
LOCAL_CFLAGS := -Wno-write-strings \
-DMODE_RELEASE
2012-03-08 18:08:25 +01:00
endif
# load the common sources file of the platform
include $(LOCAL_PATH)/file.mk
LOCAL_SRC_FILES := $(FILE_LIST)
include $(BUILD_STATIC_LIBRARY)