Merge branch 'alex' into beccadev

This commit is contained in:
Rebecca Schofield 2015-10-27 12:56:39 -05:00
commit 47bee14cbb

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