Skip to content
This repository was archived by the owner on Aug 2, 2019. It is now read-only.

Commit 44776f2

Browse files
committed
Add Android Makefile
1 parent 43af9e8 commit 44776f2

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/Android.mk

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
LOCAL_PATH := $(call my-dir)
2+
3+
include $(CLEAR_VARS)
4+
5+
LOCAL_MODULE := fruit-reloaded
6+
LOCAL_SRC_FILES := \
7+
attack.cpp board.cpp book.cpp egbb.cpp engine.cpp eval.cpp fen.cpp hash.cpp list.cpp main.cpp \
8+
material.cpp move.cpp move_check.cpp move_do.cpp move_evasion.cpp move_gen.cpp move_legal.cpp \
9+
option.cpp pawn.cpp piece.cpp posix.cpp protocol.cpp pst.cpp pv.cpp random.cpp recog.cpp search.cpp \
10+
search_full.cpp see.cpp sort.cpp square.cpp tb.cpp test.cpp thread.cpp trans.cpp util.cpp \
11+
value.cpp vector.cpp
12+
13+
LOCAL_CFLAGS := -pipe -fno-exceptions -fno-rtti -O2 -fstrict-aliasing
14+
15+
include $(BUILD_EXECUTABLE)

0 commit comments

Comments
 (0)