remove MOVE_NO_MOVE (use only MOVE_NONE)

This commit is contained in:
2024-06-28 11:43:52 +02:00
parent b4f008b223
commit b8f0f6a120
3 changed files with 19 additions and 60 deletions

View File

@@ -398,9 +398,9 @@ TEST += movedo-test perft-test tt-test
PIECE_OBJS := piece.o
FEN_OBJS := $(PIECE_OBJS) fen.o position.o bitboard.o board.o \
hyperbola-quintessence.o attack.o hash.o init.o misc.o
hyperbola-quintessence.o attack.o hash.o init.o misc.o move.o
BB_OBJS := $(FEN_OBJS)
MOVEGEN_OBJS := $(BB_OBJS) move.o move-gen.o
MOVEGEN_OBJS := $(BB_OBJS) move-gen.o
ATTACK_OBJS := $(MOVEGEN_OBJS)
MOVEDO_OBJS := $(ATTACK_OBJS) move-do.o
PERFT_OBJS := $(MOVEDO_OBJS) search.o