]> git.sesse.net Git - stockfish/blobdiff - src/Makefile
Move sending of PV line to id_loop()
[stockfish] / src / Makefile
index 25bb0f0b0e280833693aa211c56e4bc428630f38..549b7867cbd8d53ab15f31f0400ce65198d2b8fd 100644 (file)
@@ -2,8 +2,6 @@
 # Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
 # Copyright (C) 2008-2010 Marco Costalba, Joona Kiiski, Tord Romstad
 #
-# This file is part of Stockfish.
-#
 # Stockfish is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation, either version 3 of the License, or
@@ -33,9 +31,9 @@ BINDIR = $(PREFIX)/bin
 PGOBENCH = ./$(EXE) bench 32 1 10 default depth
 
 ### Object files
-OBJS = application.o bitboard.o pawns.o material.o endgame.o evaluate.o main.o \
-       misc.o move.o movegen.o history.o movepick.o search.o position.o \
-       direction.o tt.o uci.o ucioption.o book.o bitbase.o san.o benchmark.o timeman.o
+OBJS = bitboard.o pawns.o material.o endgame.o evaluate.o main.o \
+       misc.o move.o movegen.o movepick.o search.o position.o \
+       tt.o uci.o ucioption.o book.o bitbase.o benchmark.o timeman.o
 
 
 ### ==========================================================================
@@ -238,7 +236,7 @@ ifeq ($(comp),mingw)
 endif
 
 ifeq ($(comp),icc)
-       CXXFLAGS += -wd383,981,10187,10188,11505,11503 -Wcheck -Wabi -Wdeprecated -strict-ansi
+       CXXFLAGS += -wd383,981,1418,1419,10187,10188,11505,11503 -Wcheck -Wabi -Wdeprecated -strict-ansi
 endif
 
 ifeq ($(os),osx)
@@ -278,10 +276,10 @@ ifeq ($(optimize),yes)
        endif
 
        ifeq ($(comp),icc)
-               CXXFLAGS += -fast
-
                ifeq ($(os),osx)
-                       CXXFLAGS += -mdynamic-no-pic
+                       CXXFLAGS += -fast -mdynamic-no-pic
+               else
+                       CXXFLAGS += -O3
                endif
        endif
 endif