mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-02-24 21:17:51 +01:00
18 lines
331 B
Makefile
18 lines
331 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := stockfishjni
|
|
LOCAL_SRC_FILES := stockfishjni.cpp
|
|
|
|
LOCAL_CFLAGS := \
|
|
-mandroid \
|
|
-DTARGET_OS=android -D__ANDROID__ \
|
|
-isystem $(SYSROOT)/usr/include
|
|
|
|
LOCAL_STATIC_LIBRARIES := stockfish
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include jni/stockfish/Android.mk
|