mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-23 04:22:27 +00:00
4597b03873
Opens in Android Studio but haven't even tried to build it yet (it won't.. I know that much!)
30 lines
981 B
Makefile
30 lines
981 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
# ------------------------------------------------------------------
|
|
# Static library for Cocos
|
|
# ------------------------------------------------------------------
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libjpeg
|
|
|
|
LOCAL_MODULE_FILENAME := libjpeg
|
|
|
|
LOCAL_SRC_FILES := \
|
|
jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c \
|
|
jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c \
|
|
jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c \
|
|
jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c \
|
|
jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c \
|
|
jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c jfdctfst.c \
|
|
jfdctint.c jidctflt.c jidctfst.c jidctint.c jquant1.c \
|
|
jquant2.c jutils.c jmemmgr.c jcarith.c jdarith.c jaricom.c
|
|
|
|
# Use the no backing store memory manager provided by
|
|
# libjpeg. See install.txt
|
|
LOCAL_SRC_FILES += \
|
|
jmemnobs.c
|
|
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|