2012-08-15 20:56:16 +02:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
# name of the librairy
|
|
|
|
LOCAL_MODULE := ewol
|
|
|
|
|
2012-08-31 16:50:36 +02:00
|
|
|
LOCAL_CONFIG_FILES := Config.in
|
|
|
|
|
2012-08-15 20:56:16 +02:00
|
|
|
# get the tag of the current project :
|
2012-11-09 01:40:45 +01:00
|
|
|
LOCAL_VERSION=$(shell cat $(LOCAL_PATH)/tag)
|
|
|
|
$(info [TAG:$(LOCAL_MODULE)] $(LOCAL_VERSION))
|
2012-08-15 20:56:16 +02:00
|
|
|
|
|
|
|
# name of the dependency
|
2012-08-30 18:32:31 +02:00
|
|
|
LOCAL_LIBRARIES := etk freetype tinyxml libzip libpng parsersvg lua zlib glew
|
2012-08-15 20:56:16 +02:00
|
|
|
|
|
|
|
LOCAL_C_INCLUDES :=
|
|
|
|
|
|
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
|
2012-08-30 18:32:31 +02:00
|
|
|
LOCAL_EXPORT_LDLIBS :=
|
2012-08-15 20:56:16 +02:00
|
|
|
|
|
|
|
LOCAL_CFLAGS := -Wno-write-strings \
|
2012-11-09 01:40:45 +01:00
|
|
|
-DEWOL_VERSION_TAG_NAME="\"$(LOCAL_VERSION_TAG)-$(BUILD_DIRECTORY_MODE)\"" \
|
2012-08-15 20:56:16 +02:00
|
|
|
-Wall
|
|
|
|
|
|
|
|
# load the common sources file of the platform
|
|
|
|
include $(LOCAL_PATH)/file.mk
|
|
|
|
|
2012-11-26 21:53:04 +01:00
|
|
|
LOCAL_SRC_FILES := $(FILE_LIST) ewol/renderer/os/gui.Windows.cpp
|
2012-08-15 20:56:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|