1 # Copyright 2008 The Android Open Source Project 2 # 3 # Android.mk for rgb2565 4 # 5 6 LOCAL_PATH:= $(call my-dir) 7 8 # rgb2565 host tool 9 # ========================================================= 10 include $(CLEAR_VARS) 11 12 LOCAL_SRC_FILES := to565.c 13 14 LOCAL_CFLAGS += -O2 -Wall -Wno-unused-parameter 15 LOCAL_MODULE := rgb2565 16 17 include $(BUILD_HOST_EXECUTABLE) 18