17 lines
280 B
Makefile
17 lines
280 B
Makefile
|
# Copyright 2005 Google Inc. All Rights Reserved.
|
||
|
#
|
||
|
# Android.mk for apriori
|
||
|
#
|
||
|
|
||
|
LOCAL_PATH:= $(call my-dir)
|
||
|
|
||
|
ifeq ($(TARGET_ARCH),arm)
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_SRC_FILES := yuv420sp2rgb.c cmdline.c debug.c
|
||
|
|
||
|
LOCAL_MODULE := yuv420sp2rgb
|
||
|
|
||
|
include $(BUILD_HOST_EXECUTABLE)
|
||
|
endif
|