Add build flag for custom graphics

This commit is contained in:
Dees_Troy
2013-01-15 16:54:59 +00:00
parent 16c2b31827
commit 86382ca223
+7 -1
View File
@@ -1,7 +1,13 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := events.c resources.c graphics.c
LOCAL_SRC_FILES := events.c resources.c
ifneq ($(TW_BOARD_CUSTOM_GRAPHICS),)
LOCAL_SRC_FILES += $(TW_BOARD_CUSTOM_GRAPHICS)
else
LOCAL_SRC_FILES += graphics.c
endif
LOCAL_C_INCLUDES +=\
external/libpng\