Fixed wrong bonus for passed pawn on the 6th rank
[owl.git] / Makefile
blob51aa7ca96c0d5b779e65cb9971079e3a15749f91
2 # This program is free software; you can redistribute it and/or modify
3 # it under the terms of the GNU General Public License as published by
4 # the Free Software Foundation; either version 2 of the License, or
5 # (at your option) any later version.
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
12 # You should have received a copy of the GNU General Public License
13 # along with this program; if not, write to the Free Software
14 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16 CC = gcc
18 DEFINES += -DNDEBUG -DSTATISTIC_COUNTERS -DCONSOLE_DEBUG
19 CFLAGS += $(DEFINES) -O2 -fomit-frame-pointer -Wall -Wno-format -Wstrict-aliasing
21 binary = owl
22 sources = bitutils.c board.c book.c cmd.c engine.c \
23 epd.c evaluate.c extensions.c init_attacks.c \
24 init.c iterate.c main.c move.c movegen.c quiesce.c \
25 rand.c san.c search.c search_root.c see.c sort.c \
26 trans.c zobrist.c zwsearch.c
28 objects = bitutils.o board.o book.o cmd.o engine.o epd.o evaluate.o extensions.o \
29 init_attacks.o init.o iterate.o main.o move.o movegen.o quiesce.o rand.o \
30 san.o search.o search_root.o see.o sort.o trans.o zobrist.o zwsearch.o
32 $(binary): $(objects)
33 $(CC) $(objects) -o $(binary) -lpthread -lm
35 clean:
36 $(RM) $(binary) $(objects)
38 .PHONY: clean