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

15 lines
477 B
Makefile
Raw Normal View History

2015-10-28 15:08:07 -05:00
# makefile
all: test server
server: Server.o
2015-10-29 08:58:32 -05:00
g++ -std=c++11 -o server Server.o Engine.o Piece.o Board.o MNode.o
2015-10-28 15:08:07 -05:00
2015-10-29 08:58:32 -05:00
Server.o: Server.cpp Engine.cpp Board.cpp Piece.cpp MNode.cpp
g++ -std=c++11 -c -g Server.cpp Engine.cpp Board.cpp Piece.cpp MNode.cpp
2015-10-28 15:08:07 -05:00
test: test.o
2015-10-29 08:58:32 -05:00
g++ -std=c++11 -o test test.o Engine.o Piece.o Board.o MNode.o
2015-10-28 15:08:07 -05:00
2015-10-29 08:58:32 -05:00
test.o: test.cpp Engine.cpp Board.cpp Piece.cpp MNode.cpp
g++ -std=c++11 -c -g test.cpp Engine.cpp Board.cpp Piece.cpp MNode.cpp