Added makefile for test.cpp
This commit is contained in:
parent
80386d4380
commit
9777a662f4
1 changed files with 9 additions and 0 deletions
9
makefile
Executable file
9
makefile
Executable 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
|
Reference in a new issue