fix build ....
This commit is contained in:
parent
cab2f7ed88
commit
ea2f206898
1 changed files with 3 additions and 3 deletions
|
@ -12,12 +12,12 @@ RAPPORT = $(RAPPORT_DIR)/rapport.pdf
|
|||
CP = rsync -r $(TAR_EXCLUDE)
|
||||
MV = mv
|
||||
|
||||
SOURCES_RAND = $(filter-out src/rand_player.cpp, $(wildcard src/*.cpp))
|
||||
SOURCES_RAND = $(filter-out src/mcts_player.cpp, $(wildcard src/*.cpp))
|
||||
OBJETS_RAND = $(patsubst %.cpp,%.cpp.o,$(notdir $(SOURCES_RAND)))
|
||||
EXE_RAND = rand_player
|
||||
|
||||
SOURCES_MCTS = $(filter-out src/mcts_player.cpp, $(wildcard src/*.cpp))
|
||||
OBJETS_MCTS = $(patsubst %.cpp,%.cpp.o,$(notdir $(SOURCES_RAND)))
|
||||
SOURCES_MCTS = $(filter-out src/rand_player.cpp, $(wildcard src/*.cpp))
|
||||
OBJETS_MCTS = $(patsubst %.cpp,%.cpp.o,$(notdir $(SOURCES_MCTS)))
|
||||
EXE_MCTS = mcts_player
|
||||
|
||||
STATS_DIR = new_stats
|
||||
|
|
Reference in a new issue