X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2FMakefile;h=335c6d8c9000085177b468a091843f512a72a3c3;hp=ec143d60a2848ae888edf5381bbe7c3258d38cfc;hb=fb560fa5d77297f8deaa5c7375059e2ea9c36cd0;hpb=8097e99c699bdc8a62365a9841fc7cce1c3c15a0 diff --git a/src/Makefile b/src/Makefile index ec143d60..335c6d8c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -24,9 +24,9 @@ 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 @@ -37,7 +37,7 @@ OBJS = bitboard.o color.o pawns.o material.o endgame.o evaluate.o main.o \ all: $(EXE) .depend clean: - $(RM) *.o .depend glaurung + $(RM) *.o .depend stockfish ### @@ -94,7 +94,7 @@ CXXFLAGS += -wd383,869,981 # Profiler guided optimization with the Intel C++ compiler. To use it, first # create the directory ./profdata if it does not already exist, and delete its # contents if it does exist. Then compile with -prof_gen, and run the -# resulting binary for a while (for instance, do ./glaurung bench 128 1, and +# resulting binary for a while (for instance, do ./stockfish bench 128 1, and # wait 15 minutes for the benchmark to complete). Then do a 'make clean', and # recompile with -prof_use.