diff --git a/Makefile b/Makefile index 254adca..2507193 100644 --- a/Makefile +++ b/Makefile @@ -11,4 +11,7 @@ compile: g++ $(INC) $(STD) -c -o build/SnakeFood.o src/SnakeFood.cpp link: - g++ build/*.o -o bin/SnakePlusPlus.out $(SFML) \ No newline at end of file + g++ build/*.o -o bin/SnakePlusPlus $(SFML) + +clean: + rm bin/*.o build/*.out \ No newline at end of file