be3e6f13b8
Add "RECOVERY_24_BIT := true" to the device's BoardConfig.mk to use 24-bit framebuffers in the recovery ui. Change-Id: Iaede138bf7870becf237f12f1c0e49c9ff82d007
16 lines
294 B
Makefile
16 lines
294 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := graphics.c events.c resources.c
|
|
|
|
LOCAL_C_INCLUDES +=\
|
|
external/libpng\
|
|
external/zlib
|
|
|
|
LOCAL_MODULE := libminui
|
|
|
|
ifneq ($(RECOVERY_24_BIT),)
|
|
LOCAL_CFLAGS += -DRECOVERY_24_BIT
|
|
endif
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|