add nj target
This commit is contained in:
parent
0a3289084b
commit
41bd819c4d
1 changed files with 5 additions and 3 deletions
|
@ -29,9 +29,11 @@ STATS_DIR = new_stats
|
||||||
%.cpp.o: src/%.cpp
|
%.cpp.o: src/%.cpp
|
||||||
$(CXX) -c -o $@ $< $(CXXFLAGS) $(DEVFLAGS)
|
$(CXX) -c -o $@ $< $(CXXFLAGS) $(DEVFLAGS)
|
||||||
|
|
||||||
all:
|
all: default
|
||||||
$(MAKE) mcts_player
|
|
||||||
$(MAKE) rand_player
|
default: mcts_player rand_player
|
||||||
|
|
||||||
|
nj: mcts_player
|
||||||
|
|
||||||
rand_player: CXXFLAGS += -Wall -O2
|
rand_player: CXXFLAGS += -Wall -O2
|
||||||
rand_player: compilation_rand
|
rand_player: compilation_rand
|
||||||
|
|
Reference in a new issue