X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2FMakefile;h=e9cbeda9bdedbb9be1547b92bb6475969d733ad9;hp=2b89bc12e23b86a65a04f35440b33fc5583958da;hb=2ea7449f2a328213b85e043f2de9697d4517d6f7;hpb=7dd0c39714cbb6829d7cbf9da36fa46995e7a61e;ds=sidebyside diff --git a/src/Makefile b/src/Makefile index 2b89bc12..e9cbeda9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,14 +1,15 @@ -# Glaurung, a UCI chess playing engine. +# Stockfish, a UCI chess playing engine derived from Glaurung 2.1 # Copyright (C) 2004-2007 Tord Romstad +# Copyright (C) 2008 Marco Costalba -# This file is part of Glaurung. +# This file is part of Stockfish. # -# Glaurung is free software: you can redistribute it and/or modify +# 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 # (at your option) any later version. # -# Glaurung is distributed in the hope that it will be useful, +# Stockfish is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. @@ -21,11 +22,11 @@ ### Files ### -EXE = glaurung +EXE = stockfish -OBJS = bitboard.o color.o pawns.o material.o endgame.o evaluate.o main.o \ +OBJS = bitboard.o pawns.o material.o endgame.o evaluate.o main.o \ misc.o move.o movegen.o history.o movepick.o search.o piece.o \ - position.o square.o direction.o tt.o value.o uci.o ucioption.o \ + position.o direction.o tt.o value.o uci.o ucioption.o \ mersenne.o book.o bitbase.o san.o benchmark.o @@ -78,7 +79,7 @@ CXXFLAGS += -Wall -g # General optimization flags. Note that -O2 might be faster than -O3 on some # systems; this requires testing. -CXXFLAGS += -O3 -fno-exceptions -fomit-frame-pointer -fno-rtti -fstrict-aliasing +CXXFLAGS += -O3 -fno-exceptions -fomit-frame-pointer -fno-rtti -fno-strict-aliasing # Disable most annoying warnings for the Intel C++ compiler