Added makefile for test.cpp

This commit is contained in:
Alexander Huddleston 2015-10-27 11:56:25 -05:00
parent 80386d4380
commit 9777a662f4

9
makefile Executable file
View file

@ -0,0 +1,9 @@
# makefile
all: test
test: test.o
g++ -std=c++11 -o test test.o Engine.o Piece.o Board.o
test.o: test.cpp Engine.cpp Board.cpp Piece.cpp
g++ -std=c++11 -c -g test.cpp Engine.cpp Board.cpp Piece.cpp