diff --git a/src/Makefile b/src/Makefile index 2e5e263..f9d1d7f 100755 --- a/src/Makefile +++ b/src/Makefile @@ -1,15 +1,15 @@ #CC=g++-4.2 - -chess.out: functions.o - g++ chess.o functions.o -std=c++11 - -chess.o: chess.cpp - g++ -c -std=c++11 chess.cpp - -functions.o: functions.cpp functions.h - g++ -c -std=c++11 functions.cpp - +# +#chess.out: functions.o +# g++ chess.o functions.o -std=c++11 +# +#chess.o: chess.cpp +# g++ -c -std=c++11 chess.cpp +# +#functions.o: functions.cpp functions.h +# g++ -c -std=c++11 functions.cpp +# default: build -#build: -# g++ -o chess.out chess.cpp -std=c++11 +build: + g++ -o chess.out functions.cpp chess.cpp -std=c++11