9 lines
211 B
Makefile
9 lines
211 B
Makefile
![]() |
# 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
|