mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-12-04 01:11:01 +01:00
4b6418cb02
The minimum required android version had to be changed to 4.0.1.
17 lines
330 B
Makefile
17 lines
330 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
LOCAL_MODULE := rtb
|
|
LOCAL_SRC_FILES := \
|
|
bitBoard.cpp material.cpp moveGen.cpp position.cpp rtb-probe.cpp tbprobe.cpp \
|
|
RtbProbe.cpp
|
|
|
|
LOCAL_CFLAGS := --std=c++11 \
|
|
-I $(LOCAL_PATH)/sysport/ -I -DNDEBUG -Wall
|
|
|
|
LOCAL_LDLIBS += -latomic
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|