This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
breakthroughpine64backup/makefile
2015-10-27 11:56:25 -05:00

9 lines
No EOL
211 B
Makefile
Executable file

# 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