Adjusted mobility and isolated pawn penalty
[owl.git] / Makefile
blob24b43a94445d9d234d9babfcc44fa9c101a85e05
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 all: $(binary) .depend
34 $(binary): $(objects)
35 $(CC) $(objects) -o $(binary) -lpthread -lm
37 clean:
38 $(RM) $(binary) $(objects) .depend
40 .depend:
41 $(CC) -MM $(objects:.o=.c) > $@
43 include .depend
45 .PHONY: clean