diff --git a/OOP/FiveInARow/Makefile b/OOP/FiveInARow/Makefile new file mode 100644 index 0000000..314a763 --- /dev/null +++ b/OOP/FiveInARow/Makefile @@ -0,0 +1,19 @@ +main: main.cpp buildChessBoard buildChessPiece buildPlayer + g++ -std=c++11 main.cpp chessBoard.o chessPiece.o player.o -o main.out + +buildChessBoard: chessBoard.cpp + g++ -std=c++11 -c chessBoard.cpp + +buildChessPiece: chessPiece.cpp + g++ -std=c++11 -c chessPiece.cpp + +buildPlayer: player.cpp + g++ -std=c++11 -c player.cpp + +clean: + find . -name \"*.out\" | xargs rm -f + find . -name \"*.dSYM\" | xargs rm -rf + find . -name \"*.o\" | xargs rm -rf + +test: + @echo ${HOME} \ No newline at end of file