From 9777a662f43300807e5f43021b3a680628ef6999 Mon Sep 17 00:00:00 2001 From: Alexander Huddleston Date: Tue, 27 Oct 2015 11:56:25 -0500 Subject: [PATCH] Added makefile for test.cpp --- makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 makefile diff --git a/makefile b/makefile new file mode 100755 index 0000000..fc3a027 --- /dev/null +++ b/makefile @@ -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 \ No newline at end of file