1 #Makefile for C++ agent
2 CXX = g++ -std=gnu++0x -Wall -Werror -pedantic -g
3 OBJ = qchess.o agent.o main.o
14 $(CXX) -o $(BIN) $(LINKOBJ)
25 $(RM) $(BIN) $(OBJ) $(LINKOBJ)
27 clean_full: #cleans up all backup files
28 $(RM) $(BIN) $(OBJ) $(LINKOBJ)