platform_bootable_recovery/minui/Android.mk
Doug Zongker be3e6f13b8 option to allow recovery to use 24-bit graphics in UI
Add "RECOVERY_24_BIT := true" to the device's BoardConfig.mk to use
24-bit framebuffers in the recovery ui.

Change-Id: Iaede138bf7870becf237f12f1c0e49c9ff82d007
2011-01-13 16:43:44 -08:00

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)