esvg/Generic.mk

29 lines
566 B
Makefile
Raw Normal View History

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
# name of the librairy
LOCAL_MODULE := parsersvg
2012-08-13 09:49:07 +02:00
# get the tag of the current project :
2012-11-09 00:58:09 +01:00
LOCAL_VERSION_TAG=$(shell cd $(LOCAL_PATH) ; cat tag)
2012-08-13 09:49:07 +02:00
# name of the dependency
LOCAL_LIBRARIES := etk agg tinyxml
2012-08-08 18:18:51 +02:00
LOCAL_C_INCLUDES :=
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
2012-11-09 00:58:09 +01:00
LOCAL_CFLAGS := -DPARSER_SVG_VERSION_TAG_NAME="\"$(LOCAL_VERSION_TAG)-$(BUILD_DIRECTORY_MODE)\""
2012-08-10 12:14:33 +02:00
# load the common sources file of the platform
include $(LOCAL_PATH)/file.mk
LOCAL_SRC_FILES := $(FILE_LIST)
include $(BUILD_STATIC_LIBRARY)